/* === Variables === */
:root {
    --navy: #1e3a5f;
    --navy-dark: #142a45;
    --navy-light: #2a4f7a;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b8923f;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f1f3;
    --gray-200: #e0e2e6;
    --gray-400: #9aa0a8;
    --gray-600: #5a6270;
    --gray-800: #2d3239;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    padding: 16px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-200);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-200);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    font-size: 1.05rem;
    padding: 16px 40px;
}

/* === Sections === */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: var(--gray-50);
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 60px;
}

/* === Features === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* === Plans === */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid var(--gray-100);
    transition: all var(--transition);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-featured {
    border-color: var(--gold);
    transform: scale(1.03);
}

.plan-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 20px;
}

.plan-name {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.plan-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.plan-benefits {
    text-align: left;
    margin-bottom: 30px;
}

.plan-benefits li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    padding-left: 20px;
    position: relative;
}

.plan-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.plan-card .btn {
    width: 100%;
}

/* === Steps === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.93rem;
}

/* === Reviews === */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.review-author strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}

.review-author span {
    color: var(--gray-400);
    font-size: 0.82rem;
}

/* === CTA Banner === */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    color: var(--gray-200);
    font-size: 1.1rem;
    margin-bottom: 32px;
    font-weight: 300;
}

/* === FAQ === */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--gray-600);
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--gold);
}

/* === Contact Form === */
.contact-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    transition: border-color var(--transition);
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 16px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid var(--gold);
    border-radius: 8px;
    text-align: center;
}

.form-success.visible {
    display: block;
}

.form-success p {
    color: var(--navy);
    font-weight: 500;
}

.contact-disclaimer {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.contact-disclaimer p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* === Footer === */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 30px;
    color: var(--gray-200);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-nav h4,
.footer-legal h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-nav a,
.footer-legal a {
    display: block;
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-legal-text {
    margin-top: 16px;
    font-size: 0.75rem !important;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: var(--gray-200);
    font-size: 0.88rem;
    flex: 1;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-accept {
    flex-shrink: 0;
    padding: 10px 24px;
}

/* === Legal Pages === */
.legal-page {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.legal-page .legal-date {
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-bottom: 40px;
}

.legal-page .back-link {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.legal-page .back-link:hover {
    color: var(--gold);
}

.legal-page h2 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 16px;
    text-align: left;
}

.legal-page h3 {
    font-size: 1.1rem;
    color: var(--navy-light);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    color: var(--gray-600);
    font-size: 0.93rem;
    margin-bottom: 14px;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 14px;
    padding-left: 24px;
    list-style: disc;
}

.legal-page ul li {
    color: var(--gray-600);
    font-size: 0.93rem;
    margin-bottom: 6px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--gold-dark);
}

.legal-page a:hover {
    color: var(--gold);
}

/* === Contact Cards === */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.contact-card h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.contact-card a {
    color: var(--gold-dark);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--gold);
}

/* === Responsive === */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-4px);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}