:root {
    /* Primary: Deep Navy Blues (Trust & Professionalism) */
    --emerald: #1e3a8a;       /* Rich Royal Blue */
    --emerald-light: #2563eb; /* Vibrant Blue */
    --emerald-dark: #0f172a;  /* Midnight Navy */
    
    /* Accent: Warm Ambers (Action & Energy) */
    --gold: #f59e0b;          /* Rich Amber */
    --gold-light: #fbbf24;    /* Bright Amber */
    --gold-dark: #d97706;     /* Burnt Amber */
    
    /* Backgrounds: Crisp, Clean Slates */
    --cream: #f8fafc;         /* Crisp Slate White */
    --cream-dark: #f1f5f9;    /* Soft Slate Gray */
    --white: #ffffff;
    
    /* Typography: Deep, Readable Grays */
    --ink: #0f172a;           /* Deep Navy Black */
    --ink-light: #334155;     /* Slate Gray */
    --gray: #64748b;          /* Medium Slate */
    --gray-light: #94a3b8;    /* Light Slate */
    
    /* Highlights */
    --coral: #ef4444;         /* Vibrant Red for urgency/pulse dots */
    
    /* Shadows: Tinted with the new primary navy */
    --shadow-soft: 0 2px 8px rgba(30, 58, 138, 0.08);
    --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.12);
    --shadow-lg: 0 20px 50px rgba(30, 58, 138, 0.15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.25);
    
    /* Radii & Fonts (Unchanged) */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

img { max-width: 100%; display: block; }

a {
    text-decoration: none;
    color: var(--emerald);
    transition: var(--transition);
    font-weight: 500;
}

a:hover { color: var(--emerald-light); }

h1, h2, h3 {
    font-family: var(--font-serif);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
    color: var(--gold-dark);
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--emerald-dark);
    color: var(--cream);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.announcement-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224, 120, 86, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(224, 120, 86, 0); }
}

/* ===== Header ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid rgba(15, 81, 50, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.brand-mark {
    width: 44px;
    height: 44px;
    background: var(--emerald);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    transition: var(--transition);
}

.brand:hover .brand-mark {
    transform: rotate(-8deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.main-nav {
    display: flex;
    gap: 36px;
}

.main-nav a {
    color: var(--ink-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--emerald); }

.phone-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald);
    color: var(--cream) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.phone-cta:hover {
    background: var(--emerald-dark);
    color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.phone-icon {
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}

.btn-gold {
    background: var(--gold);
    color: var(--emerald-dark) !important;
    box-shadow: var(--shadow-soft);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.4);
    color: var(--emerald-dark) !important;
}

.btn-gold.large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-ghost {
    background: transparent;
    color: var(--cream) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold) !important;
}

/* ===== Hero Section ===== */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--emerald-dark);
    color: var(--cream);
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(224, 120, 86, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    padding: 100px 28px 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 28px;
}

.hero-eyebrow .line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 28px;
    color: var(--cream);
    font-weight: 800;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
    position: relative;
}

.hero-text {
    color: rgba(250, 247, 242, 0.8);
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-visual {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.visual-card {
    background: var(--cream);
    color: var(--ink);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    width: 100%;
    max-width: 420px;
    transform: rotate(-2deg);
    transition: var(--transition);
}

.visual-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.visual-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--coral);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 1rem;
}

.visual-quote p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
}

.visual-quote p::before {
    content: '"';
    color: var(--gold);
    font-size: 3rem;
    font-family: var(--font-serif);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.quote-author {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 32px;
    font-style: normal;
    font-family: var(--font-sans);
    font-weight: 500;
}

.visual-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-chip {
    background: var(--cream-dark);
    color: var(--ink-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(15, 81, 50, 0.1);
}

/* ===== Section Base ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
}

.section-label.dark {
    color: var(--gold);
}

.label-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--emerald);
}

.section-label.dark .label-num {
    color: var(--gold);
}

.label-text {
    position: relative;
    padding-left: 28px;
}

.label-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-head .section-label {
    justify-content: center;
}

.display-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--ink);
    font-weight: 700;
}

.display-heading.light {
    color: var(--cream);
}

.display-heading em {
    color: var(--gold-dark);
    font-style: italic;
}

.display-heading.light em {
    color: var(--gold);
}

.section-lead {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-note {
    text-align: center;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 40px auto 0;
    color: var(--gray);
}

/* ===== Intro Section ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: flex-start;
}

.intro-label {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 120px;
}

.intro-label .label-num {
    font-size: 4rem;
    font-family: var(--font-serif);
    font-weight: 800;
    line-height: 1;
    color: var(--emerald);
}

.intro-label .label-text {
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    font-weight: 600;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===== Bento Grid ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-item {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 81, 50, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.bento-item:hover::before {
    transform: scaleX(1);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.bento-kitchen {
    grid-column: span 2;
    grid-row: span 2;
    padding: 50px 40px;
    background: var(--emerald-dark);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.bento-kitchen h3 { color: var(--cream); }
.bento-kitchen p { color: rgba(250, 247, 242, 0.8); }

.bento-kitchen::before { display: none; }

.bento-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--cream-dark);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: var(--radius);
}

.bento-kitchen .bento-icon {
    background: var(--gold);
    color: var(--emerald-dark);
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--ink);
}

.bento-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.bento-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.bento-list span {
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--emerald);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
    background: var(--gold);
    color: var(--emerald-dark);
    transform: scale(1.08);
}

.timeline-body {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    flex: 1;
    border: 1px solid rgba(15, 81, 50, 0.08);
    transition: var(--transition);
}

.timeline-item:hover .timeline-body {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.timeline-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--emerald-dark);
}

.timeline-body p {
    color: var(--gray);
    margin: 0;
    font-size: 0.98rem;
}

/* ===== Benefits Section ===== */
.section-benefits {
    background: var(--emerald-dark);
    color: var(--cream);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.benefits-intro {
    color: rgba(250, 247, 242, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 32px 0 40px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
    margin-bottom: 16px;
}

.benefit-item:hover {
    background: rgba(250, 247, 242, 0.05);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateX(8px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--emerald-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: rotate(-8deg);
}

.benefit-text h3 {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.benefit-text p {
    color: rgba(250, 247, 242, 0.75);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Safety Section ===== */
.safety-card {
    background: var(--cream-dark);
    padding: 80px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 81, 50, 0.08);
}

.safety-decor {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 18rem;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.safety-text .lead {
    font-size: 1.2rem;
    color: var(--ink-light);
    font-weight: 500;
}

.safety-text p {
    color: var(--gray);
}

/* ===== Cost Section ===== */
.cost-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: flex-start;
}

.cost-highlight-box {
    background: var(--emerald);
    color: var(--cream);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-top: 32px;
    border-left: 4px solid var(--gold);
}

.cost-highlight-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.cost-highlight-box h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.cost-highlight-box p {
    color: rgba(250, 247, 242, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.cost-right p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* ===== About Section ===== */
.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-wrapper .section-label {
    justify-content: center;
}

.about-text {
    text-align: left;
    margin: 40px 0;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.85;
}

.about-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.about-badge {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 81, 50, 0.08);
    transition: var(--transition);
}

.about-badge:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.badge-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 12px;
}

.badge-text {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 81, 50, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}

.faq-item.active {
    border-color: var(--emerald);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-num {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
    background: rgba(201, 169, 97, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-num {
    background: var(--emerald);
    color: var(--gold);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--ink);
    flex: 1;
    font-family: var(--font-sans);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--emerald);
    transition: var(--transition);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--gold-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 24px 88px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== Final Section ===== */
.section-final {
    padding: 80px 0 120px;
}

.final-card {
    background: var(--emerald-dark);
    color: var(--cream);
    padding: 80px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(224, 120, 86, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-card > * {
    position: relative;
    z-index: 2;
}

.final-card .section-label {
    justify-content: center;
}

.final-text {
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.final-text p {
    color: rgba(250, 247, 242, 0.85);
    font-size: 1.1rem;
    line-height: 1.85;
}

.final-cta {
    margin-top: 40px;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--cream-dark);
    padding: 120px 0;
    position: relative;
}

.contact-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-head .section-label {
    justify-content: center;
}

.contact-intro {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 580px;
    margin: 20px auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(15, 81, 50, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--emerald);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    font-family: var(--font-serif);
    font-weight: 700;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--gold);
    color: var(--emerald-dark);
    transform: rotate(8deg);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.contact-card a, .contact-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 8px;
}

.contact-card a:hover {
    color: var(--gold-dark);
}

.contact-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
}

.contact-cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ===== Footer ===== */
.footer {
    background: var(--emerald-dark);
    color: var(--cream);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
}

.footer-brand .brand-name {
    color: var(--cream);
    font-size: 1.4rem;
}

.footer-brand .brand-tagline {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    gap: 30px;
}

.footer-contact a {
    color: var(--cream);
    font-weight: 600;
    font-size: 1rem;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(250, 247, 242, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 80px 28px;
    }
    
    .hero-visual {
        padding: 20px 28px 80px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-label {
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    
    .intro-label .label-num {
        font-size: 2.5rem;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .cost-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-kitchen {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .announcement-bar .container {
        font-size: 0.8rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 28px;
        gap: 18px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(15, 81, 50, 0.08);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .phone-cta {
        display: none;
    }
    
    .header-inner {
        padding: 14px 20px;
    }
    
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-num {
        font-size: 1.8rem;
    }
    
    .visual-card {
        padding: 30px;
        transform: rotate(0);
    }
    
    .container {
        padding: 0 20px;
    }
    
    .display-heading {
        font-size: 2rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-kitchen {
        grid-column: span 1;
        min-height: auto;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-body {
        padding: 24px;
    }
    
    .safety-card {
        padding: 40px 28px;
    }
    
    .safety-decor {
        font-size: 10rem;
        top: -20px;
        right: -20px;
    }
    
    .about-badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .final-card {
        padding: 50px 28px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
        gap: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 70px;
    }
    
    .faq-num {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}