@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1c1c1c;
    background-color: #f8f6f1;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================
   CONTAINER
============================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   NAVBAR
============================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #f8f6f1;
    border-bottom: 1px solid #d8d3c7;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e4d35;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555555;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1e4d35;
}

.nav-cta {
    background-color: #c07420;
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.nav-cta:hover {
    background-color: #a06218;
    color: #ffffff;
}

/* Hamburger */
.hamburger-checkbox {
    display: none;
}

.hamburger-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.hamburger-label span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1c1c1c;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    background-color: #f8f6f1;
    border-top: 1px solid #d8d3c7;
    padding: 16px 20px;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #1c1c1c;
    border-bottom: 1px solid #e8e4db;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav .mobile-cta {
    display: block;
    margin-top: 12px;
    background-color: #c07420;
    color: #ffffff;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: none;
}

.hamburger-checkbox:checked ~ .mobile-nav {
    display: block;
}

.hamburger-checkbox:checked + .hamburger-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-checkbox:checked + .hamburger-label span:nth-child(2) {
    opacity: 0;
}

.hamburger-checkbox:checked + .hamburger-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   BUTTONS
============================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: #1e4d35;
    color: #f0ede5;
    border-color: #1e4d35;
}

.btn-primary:hover {
    background-color: #163826;
    border-color: #16382a;
    color: #f0ede5;
}

.btn-accent {
    background-color: #c07420;
    color: #ffffff;
    border-color: #c07420;
}

.btn-accent:hover {
    background-color: #a06218;
    border-color: #a06218;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #1e4d35;
    border-color: #1e4d35;
}

.btn-outline:hover {
    background-color: #1e4d35;
    color: #f0ede5;
}

.btn-outline-light {
    background-color: transparent;
    color: #f0ede5;
    border-color: #f0ede5;
}

.btn-outline-light:hover {
    background-color: #f0ede5;
    color: #1e4d35;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}

.btn-full {
    display: block;
    width: 100%;
}

/* ============================
   HERO SECTION
============================= */
.hero {
    background-color: #1e4d35;
    color: #f0ede5;
    padding: 80px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #f0ede5;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 420px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.hero-card-header span:first-child {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-card-header span:last-child {
    font-weight: 700;
    color: #c07420;
}

.hero-card-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-card-bar {
    height: 8px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.bar-75 { width: 75%; }
.bar-50 { width: 50%; }
.bar-85 { width: 85%; }

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.hero-card-footer span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.hero-tv-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(192, 116, 32, 0.3);
    color: #c07420;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

/* ============================
   PAGE HEADER BANNERS
============================= */
.page-banner {
    background-color: #1e4d35;
    color: #f0ede5;
    padding: 64px 20px;
    text-align: center;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: #f0ede5;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 620px;
    margin: 0 auto;
}

.page-banner-light {
    background-color: #edf2ef;
    color: #1c1c1c;
    padding: 64px 20px;
    text-align: center;
    border-bottom: 1px solid #d8d3c7;
}

.page-banner-light h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: #1e4d35;
}

.page-banner-light p {
    font-size: 1.1rem;
    color: #555555;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================
   SECTIONS
============================= */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #edf2ef;
}

.section-muted {
    background-color: #f0ede5;
    border-top: 1px solid #d8d3c7;
    border-bottom: 1px solid #d8d3c7;
}

.section-dark {
    background-color: #1e4d35;
    color: #f0ede5;
}

.section-accent {
    background-color: #c07420;
    color: #ffffff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #1c1c1c;
}

.section-title-center {
    text-align: center;
}

.section-subtitle {
    color: #666666;
    max-width: 640px;
    margin-bottom: 48px;
}

.section-subtitle-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   WHY CHOOSE US GRID
============================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #d8d3c7;
    border-radius: 12px;
    padding: 32px;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}

.feature-num {
    width: 48px;
    height: 48px;
    background-color: rgba(30,77,53,0.1);
    color: #1e4d35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1c1c;
}

.feature-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================
   SERVICES SPLIT
============================= */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1c1c1c;
}

.split-text p {
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.75;
}

.split-text .check-list {
    margin: 20px 0 28px;
}

.split-text .check-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.split-text .check-list li .check {
    color: #c07420;
    font-weight: 700;
    margin-top: 2px;
    font-size: 1.1rem;
}

.split-text .check-list li strong {
    display: block;
    color: #1c1c1c;
}

.split-text .check-list li span {
    font-size: 0.9rem;
    color: #666666;
}

.split-visual {
    flex: 1;
}

.visual-placeholder {
    background-color: #f0ede5;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0.3;
}

.services-icon-grid {
    background-color: #ffffff;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.icon-tile {
    border-radius: 12px;
    padding: 20px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2.2rem;
}

.icon-tile-muted {
    background-color: #f0ede5;
}

.icon-tile-dark {
    background-color: #1e4d35;
    color: #f0ede5;
}

.icon-tile-accent {
    background-color: #c07420;
    color: #ffffff;
}

.icon-tile span.label {
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 8px;
    display: block;
}

/* ============================
   PLANS PREVIEW (HOME)
============================= */
.plans-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.plan-preview-card {
    background-color: #ffffff;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.plan-preview-card.featured {
    border: 2px solid #1e4d35;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e4d35;
    color: #f0ede5;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-preview-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1c1c1c;
}

.plan-preview-card > p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-price .amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1c1c1c;
}

.plan-price .period {
    color: #888888;
    font-size: 0.95rem;
}

.plan-features {
    flex: 1;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: #444444;
    border-bottom: 1px solid #f0ede5;
}

.plan-features li .check-icon {
    color: #1e4d35;
    font-weight: 700;
}

.more-plans-link {
    text-align: center;
    margin-top: 36px;
}

.more-plans-link a {
    color: #1e4d35;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================
   HOW IT WORKS
============================= */
.steps-row {
    display: flex;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-row::before {
    content: '';
    display: block;
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #d8d3c7;
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #1e4d35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e4d35;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step.active .step-circle {
    background-color: #1e4d35;
    color: #f0ede5;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1c1c1c;
}

.step p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.65;
}

/* ============================
   COVERAGE SECTION
============================= */
.coverage-box {
    background-color: #1e4d35;
    color: #f0ede5;
    border-radius: 24px;
    padding: 64px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.coverage-text {
    flex: 1;
}

.coverage-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 16px;
    color: #f0ede5;
}

.coverage-text p {
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

.coverage-note {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.coverage-note-icon {
    font-size: 1.8rem;
}

.coverage-note strong {
    display: block;
    margin-bottom: 4px;
}

.coverage-note small {
    opacity: 0.8;
    font-size: 0.875rem;
}

.coverage-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-box.wide {
    grid-column: span 2;
    background-color: rgba(255,255,255,0.05);
}

.stat-box .stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c07420;
    display: block;
    margin-bottom: 4px;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================
   TESTIMONIALS
============================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stars {
    color: #c07420;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    color: #555555;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 700;
    color: #1c1c1c;
    font-size: 0.9rem;
}

/* ============================
   CTA BANNER
============================= */
.cta-banner {
    text-align: center;
    padding: 88px 20px;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 36px;
}

.cta-banner .btn-light {
    background-color: #f8f6f1;
    color: #1c1c1c;
    border-color: #f8f6f1;
    font-size: 1.1rem;
    padding: 16px 48px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-banner .btn-light:hover {
    background-color: #edf2ef;
    border-color: #edf2ef;
    color: #1e4d35;
}

.cta-banner small {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================
   FULL PLANS PAGE
============================= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.plan-card.popular {
    border: 2px solid #1e4d35;
    transform: translateY(-16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: relative;
}

.plan-card-badge {
    background-color: #1e4d35;
    color: #f0ede5;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px;
    letter-spacing: 0.5px;
}

.plan-card-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #d8d3c7;
}

.plan-card-header.popular-header {
    background-color: rgba(30,77,53,0.04);
}

.plan-card-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1c1c1c;
}

.plan-card-header.popular-header h2 {
    color: #1e4d35;
}

.plan-card-header p {
    font-size: 0.875rem;
    color: #888888;
    min-height: 38px;
    margin-bottom: 20px;
}

.plan-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c1c1c;
}

.plan-period {
    color: #888888;
    font-size: 0.95rem;
}

.plan-note {
    font-size: 0.75rem;
    color: #999999;
    margin-top: 4px;
}

.plan-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-list {
    flex: 1;
    margin-bottom: 24px;
}

.plan-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #444444;
    border-bottom: 1px solid #f0ede5;
}

.plan-list li:last-child {
    border-bottom: none;
}

.plan-list li .ci {
    color: #1e4d35;
    font-weight: 700;
    margin-top: 1px;
}

.plan-list li .cx {
    color: #999999;
}

.plans-note {
    max-width: 860px;
    margin: 60px auto 0;
    background-color: #f0ede5;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
}

.plans-note h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1c1c;
}

.plans-note p {
    color: #666666;
    margin-bottom: 16px;
}

.plans-note small {
    font-size: 0.82rem;
    color: #888888;
    font-style: italic;
}

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

details {
    background-color: #ffffff;
    border: 1px solid #d8d3c7;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

details summary {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    color: #1c1c1c;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #1e4d35;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
}

details[open] summary::after {
    content: '\2212';
}

details[open] summary {
    color: #1e4d35;
    border-bottom: 1px solid #d8d3c7;
}

.faq-answer {
    padding: 20px 24px;
    color: #555555;
    line-height: 1.75;
    font-size: 0.95rem;
}

.faq-cta-box {
    max-width: 780px;
    margin: 48px auto 0;
    background-color: #edf2ef;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.faq-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1c1c;
}

.faq-cta-box p {
    color: #666666;
    margin-bottom: 24px;
}

/* ============================
   ABOUT PAGE
============================= */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.about-story-text p {
    color: #555555;
    margin-bottom: 14px;
    line-height: 1.8;
}

.years-box {
    background-color: #f0ede5;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    background-image: linear-gradient(135deg, rgba(30,77,53,0.06) 0%, rgba(30,77,53,0.01) 100%);
}

.years-box .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1e4d35;
    display: block;
}

.years-box strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1c1c1c;
}

.years-box small {
    color: #666666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 28px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f0ede5;
}

.value-card p {
    opacity: 0.88;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0ddd5;
}

/* ============================
   CONTACT PAGE
============================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #1c1c1c;
}

.contact-info > p {
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(30,77,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #1e4d35;
    font-weight: 700;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1c1c1c;
}

.contact-item a {
    color: #c07420;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: underline;
}

.contact-item address {
    font-style: normal;
    color: #555555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-item small {
    color: #888888;
    font-size: 0.85rem;
}

.map-placeholder {
    margin-top: 24px;
    height: 180px;
    background-color: #edf2ef;
    border: 1px solid #d8d3c7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #888888;
}

.map-placeholder .map-pin {
    font-size: 2rem;
}

.map-placeholder span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555555;
}

/* Contact Form */
.contact-form-box {
    background-color: #ffffff;
    border: 1px solid #d8d3c7;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-form-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #1c1c1c;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #333333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #d8d3c7;
    border-radius: 7px;
    background-color: #f8f6f1;
    color: #1c1c1c;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e4d35;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ============================
   LEGAL PAGES
============================= */
.legal-page {
    background-color: #f8f6f1;
    padding: 64px 0;
}

.legal-content {
    max-width: 840px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: #1c1c1c;
}

.last-updated {
    font-size: 0.875rem;
    color: #888888;
    margin-bottom: 40px;
    display: block;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e4d35;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #edf2ef;
}

.legal-section p {
    color: #444444;
    line-height: 1.85;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

.legal-section ul li {
    color: #444444;
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-address {
    background-color: #f0ede5;
    border: 1px solid #d8d3c7;
    border-radius: 8px;
    padding: 16px 20px;
    font-style: normal;
    color: #333333;
    line-height: 1.75;
    font-size: 0.9rem;
    margin-top: 8px;
}

.disclaimer-box {
    background-color: rgba(30,77,53,0.06);
    border-left: 4px solid #1e4d35;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 36px;
}

.disclaimer-box p {
    color: #333333;
    line-height: 1.85;
    font-size: 0.95rem;
}

/* ============================
   FOOTER
============================= */
.site-footer {
    background-color: #1e4d35;
    color: #f0ede5;
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #f0ede5;
}

.footer-brand p {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.75;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0ede5;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-col address {
    font-style: normal;
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.85;
}

.footer-col address a {
    opacity: 1;
}

.footer-col address a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 28px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.65;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.55;
}

/* ============================
   SERVICE PAGE SECTIONS
============================= */
.service-cta {
    text-align: center;
    padding: 64px 20px;
}

.service-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 14px;
    color: #f0ede5;
}

.service-cta p {
    opacity: 0.9;
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 28px;
}

.bundle-highlight {
    background-color: rgba(30,77,53,0.08);
    border: 1px solid rgba(30,77,53,0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 16px;
}

.bundle-highlight h3 {
    font-weight: 700;
    color: #1e4d35;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.bundle-highlight p {
    font-size: 0.875rem;
    color: #555555;
}

/* ============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .plan-card.popular {
        transform: none;
    }

    .coverage-box {
        flex-direction: column;
        padding: 40px;
        gap: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-label {
        display: flex;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-inner {
        flex-direction: column;
        gap: 36px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .plans-preview-grid {
        grid-template-columns: 1fr;
    }

    .steps-row {
        flex-direction: column;
        gap: 32px;
    }

    .steps-row::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
    }

    .coverage-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .page-banner h1,
    .page-banner-light h1 {
        font-size: 2rem;
    }

    .section {
        padding: 56px 0;
    }

    .coverage-box {
        padding: 32px 24px;
    }

    .services-icon-grid {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

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

    .legal-content h1 {
        font-size: 1.9rem;
    }

    .contact-form-box {
        padding: 24px 20px;
    }
}
