:root {
    --primary: #4a4a4a;
    --primary-dark: #2d2d2d;
    --primary-light: #6b6b6b;
    --text: #4a4a4a;
    --text-light: #9a9a9a;
    --text-muted: #b8b8b8;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-gray: #f0f0f0;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 50px;
    --transition: all 0.3s ease;
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #e8eaed;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 32px; height: 32px; }

/* HEADER */
header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    z-index: 1000; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--primary-dark); letter-spacing: -0.5px; }
.logo-placeholder {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 24px; font-weight: bold; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.logo-text { line-height: 1.2; }
.logo-subtitle { font-size: 11px; color: var(--text-light); font-weight: 400; letter-spacing: 0.5px; font-family: 'Inter', sans-serif; }
.nav { display: flex; gap: 40px; }
.nav a { font-weight: 400; font-size: 15px; color: var(--primary); position: relative; padding: 5px 0; }
.nav a:hover, .nav a.active { color: var(--primary-dark); }
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--primary-dark); transition: var(--transition); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-contacts { display: flex; align-items: center; gap: 20px; }
.phone { font-weight: 500; color: var(--primary); font-size: 15px; }
.header-btn { padding: 12px 28px; font-size: 14px; }
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--primary); }

/* PAGE HERO */
.page-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f5f8 100%);
    text-align: center;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 18px;
    color: var(--text-light);
}
.date-badge {
    display: inline-block;
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

/* PRICING SECTIONS */
.pricing-section { padding: 60px 0; }
.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-gray);
}
.section-header .icon-lg { color: var(--primary); }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-dark);
}

/* PRICING GRID - 2 COLUMNS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header { margin-bottom: 20px; }
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.card-desc { font-size: 14px; color: var(--text-light); }

.price-list { flex-grow: 1; margin-bottom: 20px; }
.price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--bg-gray);
    font-size: 14px;
}
.price-item:last-child { border-bottom: none; }
.item-name { color: var(--text); }
.item-cost { font-weight: 500; color: var(--primary); white-space: nowrap; margin-left: 10px; }

.card-footer {
    padding-top: 20px;
    border-top: 2px solid var(--bg-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-label { font-weight: 600; font-size: 16px; color: var(--text); }
.total-price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--primary-dark); }

/* COMPARISON TABLE (CROWNS) */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.comparison-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
}
.comp-header {
    background: var(--bg-light);
    padding: 24px 30px;
    border-bottom: 1px solid var(--bg-gray);
}
.comp-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.comp-body { padding: 0; }
.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--bg-gray);
}
.comp-row:last-child { border-bottom: none; }
.comp-col { padding: 30px; text-align: center; }
.comp-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comp-total {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 15px;
    display: block;
}

/* FOOTER */
footer { background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%); color: rgba(255,255,255,0.7); padding: 60px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-brand .logo { color: white; margin-bottom: 20px; display: inline-block; }
.footer-brand p { color: rgba(255,255,255,0.7); margin-bottom: 25px; max-width: 350px; line-height: 1.7; }
.footer-links h4 { color: white; font-weight: 600; margin-bottom: 20px; font-size: 16px; font-family: 'Playfair Display', serif; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-text { text-align: center; }
    .hero-text h1, .hero-text p { text-align: center; }
    .hero-buttons, .hero-badges { justify-content: center; }
    .hero-logo { order: -1; }
    .hero-logo-box { max-width: 300px; }
}
@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 25px; box-shadow: var(--shadow); gap: 15px; }
    .nav.active { display: flex; }
    .mobile-toggle { display: block; }
    .header-contacts .btn { display: none; }
    .section { padding: 70px 0; }
    .page-hero h1 { font-size: 36px; }

    /* 1 COLUMN ON MOBILE */
    .pricing-grid { grid-template-columns: 1fr; }

    .comparison-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 480px) {
    .phone { display: none}
}