:root {
    --bg-main: #07111f;
    --bg-secondary: #0b1930;
    --bg-card: rgba(10, 24, 44, 0.82);
    --gold: #d6b25e;
    --gold-soft: #f0d58a;
    --gold-dark: #9f7a2f;
    --text-main: #f5f7fb;
    --text-soft: #c9d3e2;
    --text-muted: #97a7be;
    --line: rgba(214, 178, 94, 0.18);
    --line-strong: rgba(214, 178, 94, 0.35);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 20px 80px rgba(214, 178, 94, 0.14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --container: 1240px;
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 15% 20%, rgba(214, 178, 94, 0.15), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(214, 178, 94, 0.10), transparent 22%),
        radial-gradient(circle at 50% 80%, rgba(33, 74, 140, 0.22), transparent 30%),
        linear-gradient(135deg, #040b16 0%, #081120 35%, #0a1a31 65%, #081728 100%);
    min-height: 100vh;
    line-height: 1.75;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.02), transparent 40%),
        radial-gradient(circle at 20% 10%, rgba(214,178,94,0.06), transparent 20%),
        radial-gradient(circle at 80% 20%, rgba(214,178,94,0.04), transparent 18%);
    z-index: 0;
}

a {
    text-decoration: none;
}

.hero-section,
.main-container,
.footer {
    position: relative;
    z-index: 1;
}

.hero-section {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    border-bottom: 1px solid rgba(214, 178, 94, 0.16);
    background:
        radial-gradient(circle at top center, rgba(214, 178, 94, 0.16), transparent 24%),
        linear-gradient(to bottom, rgba(3, 8, 18, 0.88), rgba(6, 15, 28, 0.96));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(2, 7, 16, 0.35), rgba(5, 12, 22, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--gold-soft);
    background: rgba(214, 178, 94, 0.08);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    color: #f8f4ea;
    margin-bottom: 24px;
    text-shadow: 0 8px 40px rgba(0,0,0,0.45);
}

.hero-title::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    margin: 24px auto 0;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-subtitle {
    max-width: 760px;
    margin: 0 auto 34px;
    color: var(--text-soft);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.main-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 20px;
}

.intro-section,
.pricing-section,
.services-section,
.process-section,
.faq-section,
.contact-section {
    background: linear-gradient(180deg, rgba(12, 25, 46, 0.86), rgba(7, 17, 31, 0.94));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft), var(--shadow-gold);
    padding: 48px 34px;
    margin-bottom: 34px;
    backdrop-filter: blur(12px);
}

.section-header {
    margin-bottom: 28px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 14px;
}

.gold-text {
    color: var(--gold-soft);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 760px;
}

.text-block p,
.feature-card p,
.faq-item p,
.process-item p,
.contact-text,
.info-note {
    color: var(--text-soft);
    font-size: 1.03rem;
}

.text-block p + p,
.feature-card p + p {
    margin-top: 18px;
}

.pricing-table-container {
    overflow-x: auto;
    margin-top: 24px;
    border-radius: 24px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table thead th {
    background: linear-gradient(135deg, rgba(214,178,94,0.25), rgba(214,178,94,0.10));
    color: #fff4d8;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 20px 16px;
    border-bottom: 1px solid var(--line-strong);
}

.pricing-table tbody td {
    padding: 18px 16px;
    text-align: center;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-table tbody tr:hover {
    background: rgba(214, 178, 94, 0.06);
}

.pricing-table tbody td:last-child {
    color: var(--gold-soft);
    font-weight: 700;
}

.info-note {
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(214, 178, 94, 0.05);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.feature-card,
.process-item,
.faq-item {
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(214, 178, 94, 0.12);
    transition: var(--transition);
}

.feature-card:hover,
.process-item:hover,
.faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 178, 94, 0.25);
}

.feature-card h3,
.faq-item h4,
.process-item h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #fff1c7;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #07111f;
    font-weight: 800;
    font-size: 1.2rem;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.contact-section {
    text-align: center;
}

.contact-text a {
    color: var(--gold-soft);
    font-weight: 700;
}

.btn-luxury,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-luxury {
    color: #07111f;
    background: linear-gradient(135deg, #e2c372, #b88b34);
    box-shadow: 0 14px 35px rgba(214, 178, 94, 0.28);
}

.btn-secondary {
    color: var(--text-main);
    background: rgba(255,255,255,0.03);
    border-color: rgba(214, 178, 94, 0.18);
}

.footer {
    padding: 30px 20px 50px;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(214, 178, 94, 0.10);
}

@media (max-width: 991px) {
    .cards-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .intro-section,
    .pricing-section,
    .services-section,
    .process-section,
    .faq-section,
    .contact-section {
        padding: 34px 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-luxury,
    .btn-secondary {
        width: 100%;
    }

    .main-container {
        padding: 56px 16px;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 14px 10px;
        font-size: 0.92rem;
    }
}