*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    color: #1c2b38;
    line-height: 1.65;
    background: #f3ede3;
}

:root {
    --estate:     #1b6b3e;
    --estate-dk:  #154d2d;
    --estate-lt:  #22863c;
    --estate-glow: rgba(27,107,62,0.22);
    --canvas:     #f3ede3;
    --canvas-alt: #ede6d9;
    --card:       #1c2b38;
    --card-alt:   #243444;
    --card-edge:  #2e4158;
    --ink:        #1c2b38;
    --ink-mid:    #3d4f5e;
    --ink-muted:  #687888;
    --cream:      #f9f5ee;
    --white:      #ffffff;
    --shadow-card: 0 8px 32px rgba(28,43,56,0.18), 0 2px 8px rgba(28,43,56,0.10);
    --shadow-lift: 0 20px 60px rgba(28,43,56,0.24);
    --r:          14px;
}

.hub { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* -- LORA HEADINGS -- */
h1, h2, h3, .lora { font-family: 'Lora', serif; }

/* -- BUTTONS -- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.btn-primary {
    background: var(--estate);
    color: var(--white);
    box-shadow: 0 4px 18px var(--estate-glow);
}
.btn-primary:hover {
    background: var(--estate-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,107,62,0.35);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.85);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-canvas {
    background: var(--estate);
    color: var(--white);
    box-shadow: 0 4px 16px var(--estate-glow);
}
.btn-canvas:hover {
    background: var(--estate-dk);
    transform: translateY(-2px);
    color: var(--white);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* -- SECTION LABELS -- */
.sect-label {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--estate);
    background: rgba(27,107,62,0.10);
    border: 1px solid rgba(27,107,62,0.22);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
}
.sect-label--light {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
}

/* -- TOPBAR -- */
.topbar {
    background: var(--card);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 200;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.topbar-brand-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.topbar-brand-name {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.topbar-brand-name em {
    font-style: normal;
    color: #5ecf8a;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar-phone-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.topbar-phone {
    font-family: 'Lora', serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.2s;
}
.topbar-phone:hover { color: #5ecf8a; }
.pulse-ring {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--estate);
}
.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--estate);
    animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
    0%   { transform: scale(0.8); opacity: 0.9; }
    80%  { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(2.2); opacity: 0; }
}
.topbar-social {
    display: flex;
    gap: 7px;
    align-items: center;
}
.topbar-si {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.topbar-si svg { width: 14px; height: 14px; display: block; }
.topbar-si:hover { background: var(--estate); border-color: var(--estate); color: var(--white); transform: translateY(-2px); }
.topbar-cta {
    background: var(--estate);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.topbar-cta:hover { background: var(--estate-lt); transform: translateY(-2px); color: var(--white); }

/* -- NAVIGATION -- */
.site-nav {
    background: var(--card-alt);
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 24px rgba(28,43,56,0.3);
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 12px;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-icon { width: 26px; height: 26px; }
.nav-logo-name {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.nav-logo-name em { font-style: normal; color: #5ecf8a; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-links > li { position: relative; }
.nav-link {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 9px 14px;
    display: block;
    font-weight: 600;
    font-size: 0.87rem;
    border-radius: 5px;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
}
.nav-link:hover, .nav-link:focus { color: var(--white); background: rgba(255,255,255,0.08); outline: none; }

/* Nav dropdown */
.has-drop { position: relative; }
.drop-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r);
    min-width: 220px;
    padding: 8px 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
    transform: translateY(-6px);
    z-index: 501;
    box-shadow: var(--shadow-lift);
}
.has-drop.is-open .drop-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.drop-panel a {
    display: block;
    padding: 8px 18px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.drop-panel a:hover { background: rgba(27,107,62,0.2); color: var(--white); }
.nav-cta-link {
    background: var(--estate);
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: 7px;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta-link:hover { background: var(--estate-lt) !important; transform: translateY(-2px) !important; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
    display: none;
    background: var(--card);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile.open { display: block; }
.mob-list {
    list-style: none;
    padding: 10px 22px 18px;
    max-height: 72vh;
    overflow-y: auto;
}
.mob-list li a {
    display: block;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.18s;
}
.mob-list li a:hover { color: #5ecf8a; }
.mob-phone { padding: 14px 0 4px; }
.mob-phone a { color: #5ecf8a !important; font-weight: 800 !important; font-size: 1.1rem !important; border-bottom: none !important; }

/* -- HERO -- */
.hero-section {
    background: var(--canvas);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(27,107,62,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-copy { padding-top: 8px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--estate);
    background: rgba(27,107,62,0.08);
    border: 1px solid rgba(27,107,62,0.2);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 20px;
}
.hero-h1 {
    font-family: 'Lora', serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-h1 em {
    font-style: normal;
    color: var(--estate);
}
.hero-lead {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--ink-mid);
    margin-bottom: 30px;
    line-height: 1.72;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(28,43,56,0.15);
    border-radius: 50px;
    padding: 7px 16px;
    box-shadow: 0 2px 8px rgba(28,43,56,0.08);
}
.hero-pill svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--estate); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Portfolio assessment card */
.port-card {
    background: var(--card);
    border-radius: var(--r);
    padding: 32px 28px;
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.port-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--estate), #5ecf8a);
    border-radius: var(--r) var(--r) 0 0;
}
.port-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.port-card-header-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(27,107,62,0.25);
    border: 1px solid rgba(27,107,62,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ecf8a;
    flex-shrink: 0;
}
.port-card-header-icon svg { width: 18px; height: 18px; }
.port-card-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
}
.port-card-subtitle {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}
.port-rows { margin-bottom: 20px; }
.port-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.port-row.row-visible {
    opacity: 1;
    transform: translateX(0);
}
.port-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.port-row-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5ecf8a;
    flex-shrink: 0;
}
.port-row-desc {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.port-row-val {
    font-family: 'Lora', serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
}
.port-row-val.counting { color: #5ecf8a; }
.port-divider {
    height: 1px;
    background: rgba(255,255,255,0.14);
    margin: 16px 0;
}
.port-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}
.port-total.total-visible { opacity: 1; }
.port-total-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.port-total-val {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #5ecf8a;
    letter-spacing: -0.02em;
}
.port-badge {
    margin-top: 18px;
    background: rgba(27,107,62,0.2);
    border: 1px solid rgba(27,107,62,0.4);
    border-radius: 9px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.port-badge.badge-visible {
    opacity: 1;
    transform: translateY(0);
}
.port-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--estate);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.port-badge-icon svg { width: 18px; height: 18px; }
.port-badge-text {
    font-size: 0.86rem;
    font-weight: 700;
    color: #5ecf8a;
}
.port-badge-note {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* -- STATS BAND -- */
.stat-band {
    background: var(--card);
    padding: 50px 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 24px 20px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.stat-num {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.stat-num em {
    font-style: normal;
    color: #5ecf8a;
}
.stat-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* -- WHAT WE HANDLE -- */
.handle-section {
    background: var(--canvas);
    padding: 84px 0;
}
.section-heading {
    font-family: 'Lora', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.section-sub {
    font-size: 1.02rem;
    color: var(--ink-mid);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 50px;
}
.section-head { margin-bottom: 50px; }
.section-head .section-heading { margin-bottom: 12px; }
.handle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.handle-item {
    background: var(--white);
    border-radius: var(--r);
    padding: 28px 24px;
    border: 1px solid rgba(28,43,56,0.09);
    box-shadow: 0 2px 12px rgba(28,43,56,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.handle-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(28,43,56,0.12);
}
.handle-icon {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    background: rgba(27,107,62,0.1);
    border: 1px solid rgba(27,107,62,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--estate);
    margin-bottom: 18px;
}
.handle-icon svg { width: 24px; height: 24px; }
.handle-item h3 {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.handle-item p { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.65; }

/* -- PROCESS -- */
.process-section {
    background: var(--canvas-alt);
    padding: 84px 0;
}
.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}
.process-connector {
    position: absolute;
    top: 28px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    border-top: 2px dashed rgba(27,107,62,0.35);
    z-index: 0;
}
.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.process-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--card);
    border: 3px solid var(--estate);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 16px rgba(27,107,62,0.2);
}
.process-circle svg { width: 22px; height: 22px; color: #5ecf8a; }
.process-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--estate);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Sans 3', sans-serif;
    border: 2px solid var(--canvas-alt);
}
.process-body {
    background: var(--white);
    border-radius: var(--r);
    padding: 20px 18px;
    border: 1px solid rgba(28,43,56,0.09);
    box-shadow: 0 2px 10px rgba(28,43,56,0.06);
    width: 100%;
}
.process-body h3 {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.process-body p { font-size: 0.84rem; color: var(--ink-mid); line-height: 1.6; }

/* -- WHY US -- */
.why-section {
    background: var(--card);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(27,107,62,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.why-section .section-heading { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.6); }
.why-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 50px;
}
.why-col {
    background: rgba(255,255,255,0.04);
    border-radius: var(--r);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.why-col-head {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}
.why-col-head svg { width: 20px; height: 20px; flex-shrink: 0; }
.why-col-head h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}
.why-col--us .why-col-head { background: rgba(27,107,62,0.18); border-bottom-color: rgba(27,107,62,0.3); }
.why-col--us .why-col-head svg { color: #5ecf8a; }
.why-col--us .why-col-head h3 { color: #5ecf8a; }
.why-col--them .why-col-head svg { color: rgba(255,255,255,0.35); }
.why-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.why-row:last-child { border-bottom: none; }
.why-row-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.why-col--us .why-row-icon { background: rgba(27,107,62,0.2); color: #5ecf8a; }
.why-col--them .why-row-icon { background: rgba(239,68,68,0.12); color: #f87171; }
.why-row-icon svg { width: 14px; height: 14px; }
.why-row-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}
.why-row-text strong { color: rgba(255,255,255,0.9); }

/* -- TESTIMONIALS -- */
.reviews-section {
    background: var(--canvas);
    padding: 84px 0;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}
.review-card {
    background: var(--card);
    border-radius: var(--r);
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: -14px;
    right: 18px;
    font-size: 8rem;
    font-family: 'Lora', serif;
    color: rgba(94,207,138,0.08);
    line-height: 1;
    pointer-events: none;
}
.review-stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 20px;
}
.review-author { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.review-detail { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* -- SEO CONTENT -- */
.content-section {
    background: var(--canvas);
    padding: 84px 0;
}
.content-duo {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}
.content-aside {
    position: sticky;
    top: 80px;
    background: var(--card);
    border-radius: var(--r);
    padding: 24px 22px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow-card);
}
.aside-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(27,107,62,0.2);
    border: 1px solid rgba(27,107,62,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ecf8a;
    margin-bottom: 14px;
}
.aside-icon-wrap svg { width: 22px; height: 22px; }
.aside-heading {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.aside-body {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 18px;
}
.aside-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #5ecf8a;
    font-family: 'Lora', serif;
    font-size: 1.08rem;
    font-weight: 700;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: color 0.18s;
}
.aside-phone svg { width: 17px; height: 17px; flex-shrink: 0; }
.aside-phone:hover { color: var(--white); }
.aside-note {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.38);
    margin-top: 6px;
}
.content-article h1 {
    font-family: 'Lora', serif;
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.content-article h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.18rem, 1.9vw, 1.4rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 3px solid var(--estate);
    line-height: 1.3;
}
.content-article h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(28,43,56,0.12);
}
.content-article p {
    font-size: 0.97rem;
    color: var(--ink-mid);
    line-height: 1.78;
    margin-bottom: 14px;
}
.content-article ul {
    margin: 0 0 16px 20px;
}
.content-article ul li {
    font-size: 0.97rem;
    color: var(--ink-mid);
    line-height: 1.72;
    margin-bottom: 6px;
    padding-left: 4px;
}
.content-accord {
    border: 1px solid rgba(28,43,56,0.12);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--white);
}
.content-accord summary {
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
    background: transparent;
    transition: background 0.18s;
}
.content-accord summary:hover { background: rgba(27,107,62,0.04); }
.content-accord summary::-webkit-details-marker { display: none; }
.content-accord summary h2 {
    font-family: 'Lora', serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
    line-height: 1.3 !important;
    flex: 1;
}
.accord-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--estate);
    transition: transform 0.25s;
}
.content-accord[open] .accord-chevron { transform: rotate(180deg); }
.accord-body {
    padding: 0 20px 20px;
    border-top: 1px solid rgba(28,43,56,0.08);
}
.accord-body h3 {
    font-family: 'Source Sans 3', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 16px 0 8px !important;
    padding-bottom: 3px !important;
    border-bottom: 1px solid rgba(28,43,56,0.1) !important;
}
.accord-body p {
    font-size: 0.95rem !important;
    color: var(--ink-mid) !important;
    line-height: 1.75 !important;
    margin-bottom: 12px !important;
}
.accord-body ul { margin: 0 0 12px 18px; }
.accord-body ul li {
    font-size: 0.95rem !important;
    color: var(--ink-mid) !important;
    line-height: 1.7 !important;
    margin-bottom: 5px !important;
}

/* -- CONTACT -- */
.contact-section {
    background: var(--card);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}
.contact-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(27,107,62,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.contact-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info .section-heading { color: var(--white); }
.contact-info p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.72;
    margin-bottom: 30px;
}
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(27,107,62,0.2);
    border: 1px solid rgba(27,107,62,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ecf8a;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label { font-size: 0.76rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-detail-val { font-size: 0.97rem; font-weight: 600; color: var(--white); }
.contact-detail-val a { color: var(--white); text-decoration: none; transition: color 0.18s; }
.contact-detail-val a:hover { color: #5ecf8a; }

/* Contact form panel */
.contact-form-panel {
    background: var(--card-alt);
    border-radius: var(--r);
    padding: 34px 30px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-card);
}
.contact-form-panel h2 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.form-note {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
}

/* Form fields (dark bg) */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
}
.f-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 0.94rem;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.f-input:focus {
    outline: none;
    border-color: var(--estate);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(27,107,62,0.18);
}
.f-input::placeholder { color: rgba(255,255,255,0.28); }
select.f-input option { background: var(--card); color: var(--white); }
textarea.f-input { resize: vertical; min-height: 110px; }
.honeypot-field { display: none !important; }
.form-submit-row { margin-top: 20px; }
.form-submit-row .btn { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }
#contact-msg {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: none;
}
#contact-msg.success { background: rgba(27,107,62,0.2); border: 1px solid rgba(27,107,62,0.4); color: #5ecf8a; display: block; }
#contact-msg.error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3); color: #f87171; display: block; }

/* -- SITE FOOTER -- */
.site-footer {
    background: #111c26;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { }
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}
.footer-logo-icon { width: 30px; height: 30px; }
.footer-logo-name {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.footer-logo-name em { font-style: normal; color: #5ecf8a; }
.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 16px;
}
.footer-phone-link {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.18s;
}
.footer-phone-link:hover { color: #5ecf8a; }
.footer-email-link {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.18s;
}
.footer-email-link:hover { color: var(--white); }
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    margin-bottom: 16px;
}
.ft-si {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.ft-si svg { width: 14px; height: 14px; display: block; }
.ft-si:hover { transform: translateY(-2px); }
.ft-si.si-fb:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.ft-si.si-x:hover   { background: #000; border-color: #333; color: #fff; }
.ft-si.si-li:hover  { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.ft-si.si-pin:hover { background: #E60023; border-color: #E60023; color: #fff; }
.footer-col-head {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--estate);
    display: inline-block;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    font-size: 0.87rem;
    margin-bottom: 8px;
    transition: color 0.18s, padding-left 0.18s;
}
.footer-col a:hover { color: var(--white); padding-left: 5px; }
.ft-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.ft-contact-line svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: #5ecf8a; }
.ft-contact-line a { color: var(--white); text-decoration: none; font-weight: 600; }
.ft-contact-line a:hover { color: #5ecf8a; }
.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-bar .hub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.18s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* -- STICKY CTA -- */
.stick-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--estate);
    color: var(--white);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(27,107,62,0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    text-decoration: none;
}
.stick-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.stick-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.stick-cta:hover { background: var(--estate-lt); box-shadow: 0 12px 36px rgba(27,107,62,0.5); }
@media (max-width: 560px) {
    .stick-cta span { display: none; }
    .stick-cta { padding: 13px; border-radius: 50%; }
}

/* -- FORM SPINNER -- */
.btn-spinner {
    width: 17px;
    height: 17px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -- FADE IN -- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* -- LEGAL PAGES -- */
.legal-wrap { background: var(--canvas); min-height: 80vh; padding: 60px 0 80px; }
.legal-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 48px 44px;
    border: 1px solid rgba(28,43,56,0.1);
    box-shadow: 0 4px 24px rgba(28,43,56,0.08);
    max-width: 860px;
    margin: 0 auto;
}
.legal-card h1 {
    font-family: 'Lora', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.legal-card .legal-date { font-size: 0.84rem; color: var(--ink-muted); margin-bottom: 32px; }
.legal-card h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--estate);
    margin: 36px 0 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(28,43,56,0.1);
}
.legal-card p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.78; margin-bottom: 12px; }
.legal-card ul { margin: 0 0 14px 20px; }
.legal-card ul li { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 6px; }
.legal-card a { color: var(--estate); text-decoration: underline; }
.legal-card strong { color: var(--ink); }
.legal-back { display: inline-flex; align-items: center; gap: 7px; color: var(--estate); text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-bottom: 28px; transition: color 0.18s; }
.legal-back svg { width: 15px; height: 15px; }
.legal-back:hover { color: var(--estate-dk); }

/* -- RESPONSIVE -- */
@media (max-width: 1020px) {
    .handle-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
    .hero-duo { grid-template-columns: 1fr; gap: 44px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }
    .process-track { grid-template-columns: repeat(2, 1fr); }
    .process-connector { display: none; }
    .why-compare { grid-template-columns: 1fr; }
    .content-duo { grid-template-columns: 1fr; }
    .content-aside { position: static; }
    .contact-duo { grid-template-columns: 1fr; gap: 40px; }
    .nav-links, .nav-cta-link { display: none; }
    .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
    .topbar-inner { flex-direction: column; gap: 10px; text-align: center; }
    .topbar-right { justify-content: center; }
    .hero-pills { gap: 8px; }
    .handle-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-section { padding: 52px 0 60px; }
    .handle-section, .process-section, .why-section, .reviews-section, .content-section, .contact-section { padding: 60px 0; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .legal-card { padding: 28px 20px; }
}
@media (max-width: 460px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .process-track { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; }
    .stat-item::after { display: none; }
}
