/* ============================================
   507climate - Main Stylesheet v2.0
   Colors: #153d2f (forest green), #fea06a (coral orange)
   ============================================ */

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

:root {
    --green-dark: #153d2f;
    --green-medium: #1e5240;
    --green-light: #e8f2ed;
    --green-pale: #f0f7f4;
    --orange: #fea06a;
    --orange-hover: #ff8a4a;
    --orange-light: #fff4ec;
    --white: #ffffff;
    --gray-light: #f7f9f8;
    --gray-medium: #6b7c74;
    --gray-border: #e0e8e4;
    --text-dark: #1a1a1a;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --max-width: 1400px;
    --max-width-wide: 1600px;
    --section-padding: 120px 5%;
    --section-padding-mobile: 70px 5%;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--green-dark);
}

h1 {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p { margin-bottom: 1rem; }

.subhead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-medium);
    font-weight: 300;
    line-height: 1.6;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.hero .eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-medium);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: var(--green-dark);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--orange-hover);
    color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(254, 160, 106, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
}

.btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
}

.btn-white:hover {
    background: var(--green-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--green-dark);
}

.text-link {
    color: var(--orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.text-link:hover { gap: 14px; }
.text-link::after { content: '\2192'; }

/* Header CTA Button - small, rounded pill style */
.nav-desktop .btn.btn-primary,
.header .btn.btn-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-width: auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(21, 61, 47, 0.06);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    margin-right: 60px;
}
.logo img { height: 100%; width: auto; }

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--green-dark);
    transition: color var(--transition);
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--orange);
}

.nav-item { position: relative; }

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform var(--transition);
}

.nav-item:hover > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.dropdown a:hover {
    background: var(--green-light);
    padding-left: 28px;
}

/* ── Lateral sub-dropdown (flyout) ───────────────────────────────────────── */
.dropdown-parent {
    position: relative;
}
.dropdown-parent > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
.dropdown-parent > a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 8px;
    flex-shrink: 0;
}
.dropdown-sub {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: translateX(4px);
}
.dropdown-parent:hover > .dropdown-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.dropdown-sub a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    transition: all 0.2s;
}
.dropdown-sub a:hover {
    background: var(--green-light);
    padding-left: 24px;
}

/* ── Mega-menu (Solutions 4-column dropdown) ─────────────────────────────── */
.dropdown.dropdown-mega {
    display: flex;
    gap: 0;
    min-width: 800px;
    padding: 16px 8px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
}
.nav-item:hover .dropdown.dropdown-mega {
    transform: translateX(-50%) translateY(0);
}
.mega-col {
    flex: 1;
    padding: 0;
}
.mega-col:not(:last-child) {
    border-right: 1px solid var(--gray-border);
}

/* Vertical header pills — styled to match hero sector bubbles */
a.mega-col-header {
    display: inline-block;
    margin: 8px 12px 14px;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}
a.mega-col-header:hover {
    opacity: 0.82;
    transform: translateY(-1px);
    background: inherit !important;
    padding-left: 18px !important;
    color: inherit !important;
}

/* Colour variants — match homepage hero bubbles */
.mega-col-header--carbon       { background: var(--green-light); color: var(--green-dark); }
.mega-col-header--construction { background: #dbeafe;            color: #1e40af; }
.mega-col-header--finance      { background: #d1fae5;            color: #065f46; }
.mega-col-header--b2c          { background: #ffe4cc;            color: #92400e; }

.mega-col a {
    display: block;
    padding: 10px 18px;
    font-size: 0.875rem;
    color: var(--green-dark);
    line-height: 1.35;
    transition: all 0.2s ease;
    white-space: normal;
}
.mega-col a:hover {
    background: var(--green-light);
    padding-left: 24px;
    color: var(--green-dark);
}

/* Nav desktop overrides */
.nav-desktop { gap: 4vw; }
.nav-desktop > .nav-item > a,
.nav-desktop > a:not(.btn) {
    font-weight: 600;
    font-size: 1rem;
}
.nav-desktop .btn.btn-primary,
.nav-desktop .btn.btn-primary:hover {
    color: var(--green-dark);
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin-right: -10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 30px 5%;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
}

.nav-mobile.active { transform: translateX(0); }

.nav-mobile a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--green-light);
}

.nav-mobile .dropdown-mobile { padding-left: 20px; }
.nav-mobile .dropdown-mobile a { font-size: 1rem; color: var(--gray-medium); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    padding: 150px 5% 90px;
    background: var(--green-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Hero with background image and green overlay */
.hero-with-bg {
    background-image: url('hero-forest-canopy.jpg');
    background-size: cover;
    background-position: center;
}

.hero.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 61, 47, 0.88) 0%, rgba(30, 82, 64, 0.85) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure hero content is above overlay */
.hero-with-bg .hero-inner {
    position: relative;
    z-index: 1;
}

.hero-with-bg .breadcrumb,
.hero-with-bg .eyebrow,
.hero-with-bg h1,
.hero-with-bg .subhead {
    position: relative;
    z-index: 1;
}

/* Animated gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(254, 160, 106, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(254, 160, 106, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(30, 82, 64, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* Geometric line pattern */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background-image:
        linear-gradient(135deg, var(--orange) 1px, transparent 1px),
        linear-gradient(225deg, var(--orange) 1px, transparent 1px),
        linear-gradient(315deg, var(--orange) 1px, transparent 1px),
        linear-gradient(45deg, var(--orange) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.08;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(2deg); }
    66% { transform: translate(-10px, 10px) rotate(-1deg); }
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 30px;
    max-width: 950px;
}

.hero .subhead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin-bottom: 36px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.hero-buttons .btn {
    padding: 20px 42px;
    font-size: 1.05rem;
}

/* Inner page hero */
.hero-inner-page {
    padding: 130px 5% 80px;
    background-position: center center;
    background-size: cover;
}

.hero-inner-page h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255, 255, 255, 0.3); }

/* ============================================
   SECTIONS - General
   ============================================ */
.section {
    padding: var(--section-padding);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    max-width: 750px;
    margin-bottom: 60px;
}

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

.section-header h2 { margin-bottom: 16px; }

.section-header p {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

/* Backgrounds */
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-light); }
.bg-green-light { background: var(--green-light); }

.bg-green {
    background: var(--green-dark);
    color: var(--white);
}

.bg-green h2, .bg-green h3, .bg-green h4 { color: var(--white); }
.bg-green p { color: rgba(255, 255, 255, 0.8); }
.bg-green .eyebrow { color: var(--orange); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--green-dark);
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 160, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PROBLEM / PAIN POINT SECTION
   ============================================ */
.problem-section {
    background: var(--gray-light);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 { margin-bottom: 30px; }
.problem-content p { font-size: 1.15rem; color: var(--gray-medium); }

/* Callout box */
.callout {
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    padding: 30px 35px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}

.callout p {
    margin-bottom: 0;
    color: var(--green-dark);
    font-size: 1.1rem;
    font-weight: 400;
}

.callout strong { color: var(--green-dark); }

/* ============================================
   SERVICE CARDS / GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 45px 40px;
    transition: all 0.4s ease;
    border: 1px solid rgba(21, 61, 47, 0.06);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

/* Per-product-group bar colours */
.service-card--green::before { background: #153d2f; }
.service-card--blue::before { background: #1f40af; }
.service-card--navy::before { background: #065f46; }
.service-card--orange::before { background: #92400d; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(21, 61, 47, 0.1);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-pale) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green-dark);
    font-size: 24px;
}

.service-card h3 { margin-bottom: 14px; font-size: 1.4rem; }
.service-card p { color: var(--gray-medium); margin-bottom: 24px; font-size: 0.95rem; }
.service-card .text-link { font-size: 0.9rem; }

/* Service list (hub pages) */
.service-list {
    display: grid;
    gap: 20px;
}

.service-list-item {
    display: flex;
    gap: 24px;
    padding: 35px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(21, 61, 47, 0.06);
    transition: all 0.4s ease;
    text-decoration: none;
    align-items: flex-start;
}

.service-list-item:hover {
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(21, 61, 47, 0.08);
    transform: translateX(8px);
}

.service-list-item .icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.service-list-item h4 { margin-bottom: 8px; }
.service-list-item p { color: var(--gray-medium); margin-bottom: 0; font-size: 0.95rem; }

/* ============================================
   WHY US / SPLIT SECTION
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.split-content h2 { margin-bottom: 24px; }

.split-content p {
    color: var(--gray-medium);
    font-size: 1.05rem;
}

.split-image {
    position: relative;
}

.split-image img {
    border-radius: 16px;
    width: 100%;
}

.split-image::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--orange);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 40px 30px 30px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(21, 61, 47, 0.06);
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--orange);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.process-step h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.process-step p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   SOLUTION / FEATURE BLOCKS
   ============================================ */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.solution-item {
    padding: 35px;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--orange);
    transition: all 0.4s ease;
}

.solution-item:hover {
    box-shadow: 0 15px 40px rgba(21, 61, 47, 0.08);
    transform: translateY(-4px);
}

.solution-item h4 {
    margin-bottom: 12px;
    color: var(--green-dark);
}

.solution-item p {
    margin-bottom: 0;
    color: var(--gray-medium);
}

/* Detail blocks (for extended landing pages) */
.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.detail-block:last-child { margin-bottom: 0; }

.detail-block.reverse .detail-text { order: 2; }
.detail-block.reverse .detail-visual { order: 1; }

.detail-text h3 { margin-bottom: 16px; }
.detail-text p { color: var(--gray-medium); font-size: 1.05rem; }

.detail-text ul {
    margin-top: 16px;
}

.detail-text ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--gray-medium);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-border);
}

.detail-text ul li:last-child { border-bottom: none; }

.detail-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.6;
}

.detail-visual {
    background: var(--green-light);
    border-radius: 20px;
    padding: 50px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.detail-visual img {
    border-radius: 12px;
    width: 100%;
}

.detail-visual .big-number {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 200;
    color: var(--green-dark);
    opacity: 0.15;
    line-height: 1;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--green-dark);
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(254, 160, 106, 0.3);
}

.benefit-item h4 { margin-bottom: 12px; }
.benefit-item p { color: var(--gray-medium); font-size: 0.95rem; margin-bottom: 0; }

/* Horizontal benefits */
.benefits-list {
    display: grid;
    gap: 30px;
}

.benefits-list .benefit-item {
    display: flex;
    gap: 24px;
    text-align: left;
    padding: 0;
}

.benefits-list .benefit-icon {
    margin: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--green-dark);
    transition: color var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

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

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1.2rem;
    color: var(--green-dark);
}

.faq-item.active .faq-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding-bottom: 24px;
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.related-card {
    display: block;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    transition: all 0.4s ease;
    text-decoration: none;
}

.related-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(21, 61, 47, 0.08);
}

.related-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.related-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
    background: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

/* CTA with background image and green overlay */
.cta-section.cta-with-bg {
    background-image: url('cta-mountains.jpg');
    background-size: cover;
    background-position: center;
}

.cta-section.cta-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 61, 47, 0.88) 0%, rgba(30, 82, 64, 0.85) 100%);
    pointer-events: none;
    z-index: 0;
}

.cta-section.cta-with-bg .section-inner {
    position: relative;
    z-index: 1;
}

.cta-section.cta-with-bg h2,
.cta-section.cta-with-bg p {
    position: relative;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, var(--orange) 1px, transparent 1px),
        linear-gradient(-45deg, var(--orange) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.04;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(254, 160, 106, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Section divider - visual separator between CTA and footer */
.section-divider {
    height: 80px;
    background: linear-gradient(180deg, var(--green-medium) 0%, var(--green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-image: url('aerial-forest.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.cta-section .section-inner { position: relative; z-index: 1; }

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
}

/* Mid-page CTA */
.cta-mid {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
    border-radius: 20px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-mid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(254, 160, 106, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-mid h3 { color: var(--white); margin-bottom: 12px; font-size: 1.8rem; }
.cta-mid p { color: rgba(255, 255, 255, 0.7); margin-bottom: 30px; }

/* ============================================
   ABOUT PAGE - FOUNDERS
   ============================================ */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 60px;
}

.founder-card { display: flex; flex-direction: column; }

.founder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--green-light);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.founder-image img { width: 100%; height: 100%; object-fit: cover; }

.founder-card h3 { margin-bottom: 4px; }
.founder-card .role { color: var(--orange); font-weight: 500; margin-bottom: 16px; }
.founder-card p { color: var(--gray-medium); }

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

.contact-info h3 { margin-bottom: 30px; }
.contact-details { margin-bottom: 40px; }

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

.contact-item .icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}

.contact-item p { margin-bottom: 0; }
.contact-item a { color: var(--green-dark); transition: color var(--transition); }
.contact-item a:hover { color: var(--orange); }

.contact-form {
    background: var(--gray-light);
    padding: 50px;
    border-radius: 20px;
}

.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--gray-medium); margin-bottom: 30px; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.95rem; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(21, 61, 47, 0.15);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(254, 160, 106, 0.12);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   ASSESSMENT PAGE
   ============================================ */
.assessment-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(21, 61, 47, 0.08);
    overflow: hidden;
}

.progress-container {
    background: var(--green-light);
    height: 6px;
    width: 100%;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-hover) 100%);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 3px;
}

.step-content {
    padding: 50px;
    display: none;
    animation: fadeSlide 0.5s ease;
}

.step-content.active { display: block; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-content h2 { font-size: 1.8rem; margin-bottom: 12px; }
.step-content .subtitle { color: var(--gray-medium); margin-bottom: 30px; font-size: 1.05rem; }

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-card {
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    padding: 22px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.radio-card:hover { border-color: var(--gray-medium); background: var(--gray-light); }
.radio-card.selected { border-color: var(--orange); background: var(--orange-light); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card-title { font-weight: 600; display: block; margin-bottom: 6px; color: var(--green-dark); }
.radio-card-desc { font-size: 0.85rem; color: var(--gray-medium); }

.btn-container {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--gray-border);
    padding-top: 24px;
}

.btn-back {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--gray-border);
    background: var(--white);
    font-family: var(--font-main);
    color: var(--gray-medium);
    transition: all var(--transition);
}

.btn-back:hover { background: var(--gray-light); }

.btn-next {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: var(--orange);
    color: var(--green-dark);
    font-family: var(--font-main);
    transition: all var(--transition);
}

.btn-next:hover { background: var(--orange-hover); }

.score-banner {
    background: var(--green-dark);
    color: var(--white);
    padding: 45px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.score-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--orange);
    line-height: 1;
}

.score-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

.score-desc { margin-top: 12px; font-size: 1.15rem; }

.gap-grid { display: grid; gap: 20px; }

.gap-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-left: 4px solid var(--orange);
    padding: 24px;
    border-radius: 0 12px 12px 0;
}

.gap-item.good { border-left-color: #10b981; }
.gap-item.critical { border-left-color: #ef4444; }

.gap-title { font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; color: var(--green-dark); }
.gap-fix { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--gray-border); font-size: 0.9rem; color: var(--gray-medium); }
.gap-fix strong { color: var(--orange); }

.cta-box {
    background: var(--orange-light);
    border: 1px solid rgba(254, 160, 106, 0.3);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}

.cta-box h3 { margin-bottom: 10px; }

.hidden { display: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 100px 5% 40px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.footer-brand { max-width: 300px; }

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; }

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p { color: rgba(255, 255, 255, 0.4); font-size: 0.9rem; margin-bottom: 0; }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--green-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .split-section, .detail-block { grid-template-columns: 1fr; gap: 50px; }
    .split-image, .detail-block.reverse .detail-visual { order: -1; }
    .detail-block.reverse .detail-text { order: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    :root { --section-padding: var(--section-padding-mobile); }

    .nav-desktop { display: none; }
    .nav-toggle { display: flex; }
    .nav-mobile { display: block; }

    .hero { padding: 120px 5% 70px; }
    .hero-inner-page { padding: 110px 5% 65px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }

    .services-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 30px 25px; }
    .service-list-item { flex-direction: column; gap: 16px; }
    .options-grid { grid-template-columns: 1fr; }
    .step-content { padding: 30px; }
    .cta-mid { padding: 50px 30px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .btn { width: 100%; justify-content: center; }
    .header-inner { height: 70px; }
    .logo { height: 32px; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* ============================================
   VIDEO EMBED
   ============================================ */
.video-feature {
    background: var(--white);
    padding: 100px 5% 120px;
}

.video-feature .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.video-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.video-content .eyebrow {
    color: var(--orange);
    margin-bottom: 20px;
}

.video-content h2 {
    margin-bottom: 24px;
}

.video-content p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(21, 61, 47, 0.2);
    width: 100%;
    max-width: 900px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .video-feature {
        padding: 80px 5% 100px;
    }
    .video-content {
        margin-bottom: 40px;
    }
}

/* ============================================
   IMAGE GALLERY
   ============================================ */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(21, 61, 47, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(21, 61, 47, 0.12);
    border-color: var(--orange);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid var(--orange);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--orange);
    line-height: 0;
    vertical-align: middle;
    margin-right: 4px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.testimonial-company {
    color: var(--gray-medium);
    font-size: 0.85rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   CASE STUDY
   ============================================ */
.case-study-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(21, 61, 47, 0.1);
    border: 1px solid var(--gray-border);
}

.case-study-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    border-bottom: 1px solid var(--gray-border);
    background: var(--gray-light);
}

.case-study-logo {
    height: 40px;
    width: auto;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

.case-study-text {
    padding: 50px;
}

.case-study-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
}

.case-study-text p {
    color: var(--gray-medium);
    font-size: 1.05rem;
}

.case-study-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}

.case-stat {
    text-align: center;
}

.case-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.case-stat-label {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.case-study-quote {
    background: var(--green-light);
    padding: 30px;
    border-radius: 16px;
    margin: 0;
    border-left: 4px solid var(--orange);
}

.case-study-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.case-study-quote cite {
    display: flex;
    align-items: center;
    gap: 16px;
    font-style: normal;
}

.case-study-quote cite img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange);
}

.case-study-quote cite span {
    display: flex;
    flex-direction: column;
}

.case-study-quote cite strong {
    color: var(--green-dark);
    font-size: 0.95rem;
}

.case-study-quote cite span {
    color: var(--gray-medium);
    font-size: 0.85rem;
}

.case-study-image {
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

@media (max-width: 1024px) {
    .case-study-content {
        grid-template-columns: 1fr;
    }
    .case-study-image {
        order: -1;
    }
    .case-study-image img {
        min-height: 300px;
        max-height: 400px;
    }
    .case-study-header {
        padding: 20px 30px;
    }
    .case-study-text {
        padding: 30px;
    }
    .case-study-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .case-stat {
        flex: 1 1 100px;
    }
}

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.booking-info h2 {
    margin-bottom: 16px;
}

.booking-benefits {
    margin-top: 30px;
}

.booking-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-benefits li:last-child {
    border-bottom: none;
}

.booking-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange);
}

.booking-calendar {
    display: flex;
    justify-content: center;
}

.booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.booking-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-border);
}

.booking-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}

.booking-profile-info h4 {
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.booking-profile-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.booking-detail svg {
    color: var(--orange);
}

.booking-note {
    margin-top: 16px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .booking-widget {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .booking-info {
        text-align: center;
    }
    .booking-benefits li {
        text-align: left;
    }
}

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

.resource-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid var(--gray-border);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(21, 61, 47, 0.12);
    border-color: var(--orange);
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green-dark);
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   RESOURCE DOWNLOAD PAGE
   ============================================ */
.resource-download-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.resource-details h2 {
    margin-bottom: 16px;
}

.resource-details > p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.resource-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.resource-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--gray-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.resource-feature:hover {
    background: var(--green-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.resource-feature h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.resource-feature p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.resource-download-card {
    position: sticky;
    top: 120px;
}

.download-card-inner {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(21, 61, 47, 0.1);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--green-dark);
}

.download-card-inner h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.download-card-inner > p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.download-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

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

.related-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(21, 61, 47, 0.1);
    border-color: var(--orange);
}

.related-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.related-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .resource-download-section {
        grid-template-columns: 1fr;
    }
    .resource-download-card {
        position: static;
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   PDF BROCHURE SECTION
   ============================================ */
.brochure-section {
    padding: var(--section-padding);
}

.brochure-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.brochure-info h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.brochure-info p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.brochure-download {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.brochure-highlights {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 16px;
}

.brochure-highlights h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.brochure-highlights ul {
    list-style: none;
}

.brochure-highlights li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--gray-medium);
    border-bottom: 1px solid var(--gray-border);
}

.brochure-highlights li:last-child {
    border-bottom: none;
}

.brochure-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
}

.brochure-embed {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(21, 61, 47, 0.1);
}

.brochure-embed iframe,
.brochure-embed embed,
.brochure-embed object {
    width: 100%;
    height: 800px;
    border: none;
}

@media (max-width: 1024px) {
    .brochure-container {
        grid-template-columns: 1fr;
    }
    .brochure-embed iframe,
    .brochure-embed embed,
    .brochure-embed object {
        height: 600px;
    }
}

@media print {
    .header, .footer, .cta-section { display: none; }
    .hero { background: none; color: var(--text-dark); padding: 20px 0; }
    .hero h1 { color: var(--text-dark); }
}

/* ============================================
   BLOG / GUIDES PAGES
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(21, 61, 47, 0.12);
    border-color: var(--orange);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: var(--green-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

/* Blog post single page */
.blog-hero {
    padding: 160px 5% 80px;
}

.blog-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero .blog-category {
    display: inline-block;
    background: var(--orange);
    color: var(--green-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.blog-hero .blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.blog-hero .blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-featured-image {
    max-width: 1000px;
    margin: -40px auto 0;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.blog-featured-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(21, 61, 47, 0.2);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 5%;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-top: 36px;
    margin-bottom: 16px;
}

.blog-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.85;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-medium);
}

.blog-content blockquote {
    background: var(--green-light);
    border-left: 4px solid var(--orange);
    padding: 30px 35px;
    border-radius: 0 16px 16px 0;
    margin: 40px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--green-dark);
}

.blog-content .highlight-box {
    background: var(--orange-light);
    border: 1px solid rgba(254, 160, 106, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.blog-content .highlight-box h4 {
    color: var(--green-dark);
    margin-bottom: 16px;
}

.blog-content .highlight-box ul {
    margin-bottom: 0;
}

/* Author box */
.author-box {
    display: flex;
    gap: 24px;
    align-items: center;
    background: var(--gray-light);
    padding: 30px;
    border-radius: 16px;
    margin-top: 60px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}

.author-box-content h4 {
    margin-bottom: 4px;
}

.author-box-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Table of contents */
.toc-box {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.toc-box h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.toc-box ol {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 0;
}

.toc-box li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.toc-box a {
    color: var(--green-dark);
    transition: color var(--transition);
}

.toc-box a:hover {
    color: var(--orange);
}

/* Featured post card - larger format */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    margin-bottom: 60px;
    transition: all 0.4s ease;
}

.blog-featured:hover {
    box-shadow: 0 30px 80px rgba(21, 61, 47, 0.12);
    border-color: var(--orange);
}

.blog-featured-img {
    height: 400px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-featured:hover .blog-featured-img img {
    transform: scale(1.03);
}

.blog-featured-content {
    padding: 40px 40px 40px 0;
}

.blog-featured-content .eyebrow {
    margin-bottom: 12px;
}

.blog-featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.blog-featured-content p {
    color: var(--gray-medium);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .blog-featured-img {
        height: 280px;
    }
    .blog-featured-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   ALTERNATIVE SECTION LAYOUTS
   ============================================ */
/* Zigzag content blocks */
.content-zigzag {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.zigzag-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zigzag-block:nth-child(even) .zigzag-content {
    order: 2;
}

.zigzag-block:nth-child(even) .zigzag-image {
    order: 1;
}

.zigzag-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.zigzag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.zigzag-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--orange);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
}

.zigzag-block:nth-child(even) .zigzag-image::after {
    right: auto;
    left: -20px;
}

.zigzag-content h3 {
    margin-bottom: 16px;
}

.zigzag-content p {
    color: var(--gray-medium);
    font-size: 1.05rem;
}

.zigzag-content .feature-list {
    margin-top: 24px;
}

.zigzag-content .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-border);
    color: var(--gray-medium);
}

.zigzag-content .feature-list li:last-child {
    border-bottom: none;
}

.zigzag-content .feature-list li svg {
    flex-shrink: 0;
    color: var(--orange);
    margin-top: 3px;
}

@media (max-width: 1024px) {
    .zigzag-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .zigzag-block:nth-child(even) .zigzag-content,
    .zigzag-block:nth-child(even) .zigzag-image {
        order: unset;
    }
    .zigzag-image::after,
    .zigzag-block:nth-child(even) .zigzag-image::after {
        display: none;
    }
}

/* Full-width image section with overlay text */
.full-width-image-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.full-width-image-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-width-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 61, 47, 0.92) 0%, rgba(30, 82, 64, 0.9) 100%);
    z-index: 1;
}

.full-width-image-section .content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 60px 5%;
}

.full-width-image-section .content-overlay h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.full-width-image-section .content-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

/* Stats inline banner */
.stats-inline {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: var(--green-light);
    border-radius: 20px;
}

.stats-inline .stat-item {
    text-align: center;
}

.stats-inline .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-inline .stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Card with image top */
.image-top-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    transition: all 0.4s ease;
}

.image-top-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(21, 61, 47, 0.12);
    border-color: var(--orange);
}

.image-top-card .card-image {
    height: 200px;
    overflow: hidden;
}

.image-top-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-top-card:hover .card-image img {
    transform: scale(1.05);
}

.image-top-card .card-body {
    padding: 30px;
}

.image-top-card h4 {
    margin-bottom: 12px;
}

.image-top-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Wide section inner */
.section-inner-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}
