/* ============================================================
   DELIMA DIGITALS — WHITE EDITORIAL DESIGN SYSTEM
   Ref: AKQA / R/GA / Wieden+Kennedy
   Palette: #ffffff bg · #0a0a0a text · #c1ff72 accent
   ============================================================ */

:root {
    --bg:         #ffffff;
    --bg-off:     #f7f7f5;
    --bg-dark:    #0a0a0a;
    --ink:        #0a0a0a;
    --ink-60:     rgba(10,10,10,0.6);
    --ink-30:     rgba(10,10,10,0.3);
    --ink-10:     rgba(10,10,10,0.08);
    --rule:       rgba(10,10,10,0.1);
    --green:      #c1ff72;
    --green-dark: #0a0a0a;
    --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-head:  'Space Grotesk', 'Inter', sans-serif;
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);
    --t:          0.3s var(--ease);
    --r:          6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── TYPE SCALE ── */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.display {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    font-weight: 800;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

.label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-60);
}
.label-green { color: var(--green-dark); background: var(--green); padding: 3px 10px; border-radius: 100px; display: inline-block; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 100px;
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-dark {
    background: var(--ink);
    color: #fff;
}
.btn-dark:hover { background: #222; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.btn-green {
    background: var(--green);
    color: var(--ink);
}
.btn-green:hover { background: #d4ff8a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(193,255,114,0.4); }
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--rule);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink-10); }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-arrow { display: inline-block; transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── DIVIDER ── */
hr { border: none; border-top: 1px solid var(--rule); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule);
    transition: border-color var(--t);
}
.header-inner {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.site-logo img { height: 28px; width: auto; display: block; }
.logo-placeholder {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}
.logo-placeholder span { color: var(--green); }

.primary-nav { flex: 1; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-60);
    border-radius: 100px;
    transition: var(--t);
}
.nav-link:hover { color: var(--ink); background: var(--ink-10); }
.nav-item { position: relative; }
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -12px;
    padding-top: 12px;
    min-width: 440px;
}
.nav-dropdown-inner {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.nav-item.has-dropdown:hover .nav-dropdown { display: block; }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: var(--t);
}
.dropdown-item:hover { background: var(--bg-off); }
.di-icon {
    width: 32px; height: 32px;
    background: var(--bg-off);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.di-content strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.di-content small { font-size: 0.72rem; color: var(--ink-60); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: var(--t); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 899;
    padding: 90px 40px 40px;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-nav { display: flex; flex-direction: column; border-top: 1px solid var(--rule); margin-bottom: 32px; }
.mobile-nav a {
    display: block;
    padding: 18px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
    letter-spacing: -0.02em;
    transition: var(--t);
}
.mobile-nav a:hover { color: var(--ink-60); }
.mobile-ctas { display: flex; flex-direction: column; gap: 12px; }

/* ══════════════════════════════════════
   HERO — EDITORIAL SPLIT
══════════════════════════════════════ */
.hero {
    padding-top: 68px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}
.hero-top {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--rule);
}
.hero-left {
    padding: 80px 48px 80px max(24px, calc((100vw - 1280px) / 2 + 24px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--rule);
}
.hero-right {
    padding: 80px max(24px, calc((100vw - 1280px) / 2 + 24px)) 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--bg-off);
    position: relative;
    overflow: hidden;
}
.hero-eyebrow { margin-bottom: 32px; }
.hero-headline {
    font-size: clamp(2.6rem, 4.5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 32px;
}
.hero-headline em {
    font-style: normal;
    display: inline-block;
    background: var(--green);
    padding: 0 8px;
    border-radius: 6px;
    color: var(--ink);
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--ink-60);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-right-tagline {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--ink-60);
    margin-bottom: 48px;
}
.hero-right-tagline strong { color: var(--ink); }
.hero-presence {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero-presence-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-30); margin-bottom: 4px; }
.hero-cities {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.hero-city {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    padding: 6px 14px;
    border: 1px solid var(--rule);
    border-right: none;
}
.hero-city:first-child { border-radius: 6px 0 0 6px; }
.hero-city:last-child { border-right: 1px solid var(--rule); border-radius: 0 6px 6px 0; }

/* Hero background abstract */
.hero-bg-shape {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.15;
    filter: blur(80px);
    pointer-events: none;
}

/* Hero bottom strip */
.hero-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--rule);
}
.hero-stat {
    padding: 28px 40px;
    border-right: 1px solid var(--rule);
}
.hero-stat:first-child { padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px)); }
.hero-stat:last-child { border-right: none; padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px)); }
.hs-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}
.hs-num span { color: var(--green); background: none; }
.hs-label { font-size: 0.78rem; color: var(--ink-60); font-weight: 500; }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
    overflow: hidden;
    background: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.marquee-dot { color: var(--green); font-size: 0.5rem; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section { padding: 120px 0; }
.section--off { background: var(--bg-off); }
.section--dark { background: var(--ink); color: #fff; }
.section-header { margin-bottom: 72px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header h2 { max-width: 700px; }
.section-header p {
    font-size: 1.05rem;
    color: var(--ink-60);
    max-width: 560px;
    line-height: 1.75;
    margin-top: 20px;
}
.section--dark .section-header p { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════
   WHAT WE DO — SERVICES
══════════════════════════════════════ */
.services-table { border-top: 1px solid var(--rule); }
.service-row {
    display: grid;
    grid-template-columns: 48px 1.2fr 2fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--rule);
    padding: 32px 0;
    align-items: start;
    transition: var(--t);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.service-row:hover { background: var(--bg-off); padding-left: 16px; padding-right: 16px; margin: 0 -16px; border-radius: var(--r); border-color: transparent; }
.service-row:hover .sr-arrow { transform: translate(4px, -4px); color: var(--ink); }
.sr-num { font-size: 0.72rem; font-weight: 700; color: var(--ink-30); padding-top: 4px; }
.sr-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); padding-right: 32px; }
.sr-desc { font-size: 0.9rem; color: var(--ink-60); line-height: 1.65; padding-right: 32px; }
.sr-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.sr-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--ink-10);
    border-radius: 100px;
    color: var(--ink-60);
    letter-spacing: 0.02em;
}
.sr-arrow {
    font-size: 0.9rem;
    color: var(--ink-30);
    transition: var(--t);
    margin-left: 12px;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 2px;
}

/* ══════════════════════════════════════
   HOW WE WORK — PRINCIPLES
══════════════════════════════════════ */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.principle-card {
    padding: 48px 40px;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
}
.principle-card:hover .pc-bg { opacity: 1; }
.pc-bg {
    position: absolute;
    bottom: 0; right: 0;
    width: 120px; height: 120px;
    background: var(--green);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.pc-num {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 32px;
}
.principle-card h3 { font-size: 1.3rem; margin-bottom: 14px; letter-spacing: -0.02em; }
.principle-card p { font-size: 0.9rem; color: var(--ink-60); line-height: 1.7; }
.pc-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--green);
    color: var(--ink);
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   RESULTS — HORIZONTAL SCROLL CARDS
══════════════════════════════════════ */
.results-overflow {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -40px;
    padding: 0 40px;
}
.results-overflow::-webkit-scrollbar { display: none; }
.results-track {
    display: flex;
    gap: 2px;
    width: max-content;
    padding-bottom: 4px;
}
.result-card {
    width: 340px;
    flex-shrink: 0;
    border: 1px solid var(--rule);
    border-radius: var(--r);
    padding: 36px 32px;
    background: var(--bg);
    transition: var(--t);
}
.result-card:hover { border-color: var(--ink-30); box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.rc-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 24px;
}
.rc-metric {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--ink);
}
.rc-metric.green { color: var(--ink); position: relative; display: inline-block; }
.rc-metric.green::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 12px;
    background: var(--green);
    z-index: -1;
    border-radius: 3px;
}
.rc-label { font-size: 0.8rem; color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 20px; }
.rc-desc { font-size: 0.875rem; color: var(--ink-60); line-height: 1.65; }
.result-card--cta {
    background: var(--ink);
    border-color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.result-card--cta .rc-cat { color: rgba(255,255,255,0.4); }
.result-card--cta h3 { color: #fff; font-size: 1.5rem; line-height: 1.3; margin-bottom: 32px; }

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.industry-item {
    padding: 32px;
    border: 1px solid var(--rule);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--t);
    text-decoration: none;
    color: inherit;
}
.industry-item:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.industry-item:hover .ind-arrow { transform: translate(4px,-4px); }
.ind-name { font-weight: 600; font-size: 0.95rem; }
.ind-arrow { color: var(--ink-30); transition: var(--t); font-size: 0.85rem; }
.industry-item:hover .ind-arrow { color: var(--green); }

/* ══════════════════════════════════════
   AUDIT / LEAD SECTION
══════════════════════════════════════ */
.audit-section { background: var(--ink); color: #fff; }
.audit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.audit-content .label { color: var(--green); }
.audit-content h2 { color: #fff; margin-bottom: 24px; }
.audit-content > p { color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 36px; font-size: 1rem; }
.audit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.audit-list li { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.al-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--ink);
}
.audit-form-wrap { position: relative; }
.audit-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    color: var(--ink);
}
.audit-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.audit-form-card > p { font-size: 0.85rem; color: var(--ink-60); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-60); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-off);
    border: 1.5px solid var(--rule);
    border-radius: var(--r);
    padding: 12px 14px;
    color: var(--ink);
    font-size: 0.875rem;
    transition: var(--t);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--ink); }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%230a0a0a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-disclaimer { font-size: 0.73rem; color: var(--ink-30); text-align: center; margin-top: 12px; }
.form-disclaimer a { color: var(--ink-60); text-decoration: underline; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-wrap { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    text-align: left;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--ink);
    gap: 24px;
    font-family: var(--font-head);
    letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--ink-60); }
.faq-icon { font-size: 1.3rem; color: var(--ink-30); flex-shrink: 0; transition: transform var(--t); line-height: 1; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--ink); }
.faq-a { display: none; padding-bottom: 24px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.9rem; color: var(--ink-60); line-height: 1.75; }

/* ══════════════════════════════════════
   FINAL CTA BAND
══════════════════════════════════════ */
.cta-band {
    background: var(--green);
    padding: 80px 0;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-band h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ink);
    max-width: 600px;
    letter-spacing: -0.04em;
}
.cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--ink); color: #fff; }
.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-col img { height: 28px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}
.footer-brand-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 28px; }
.footer-locations { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-loc {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    color: rgba(255,255,255,0.5);
}
.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 20px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.25); transition: var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   PAGE CONTENT
══════════════════════════════════════ */
.main-content { padding-top: 68px; min-height: 60vh; }
.page-content { padding: 80px 0; }
.page-inner { max-width: 760px; }
.page-title { margin-bottom: 48px; }
.page-body { font-size: 1rem; color: var(--ink-60); line-height: 1.8; }
.page-body p { margin-bottom: 20px; }
.page-body h2, .page-body h3 { color: var(--ink); margin: 36px 0 12px; }
.page-body a { color: var(--ink); text-decoration: underline; }
.page-body ul, .page-body ol { padding-left: 24px; margin-bottom: 20px; }
.page-body li { margin-bottom: 8px; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.js-ready .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .hero-top { grid-template-columns: 1fr; }
    .hero-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 60px 24px; }
    .hero-right { padding: 48px 24px; }
    .hero-bottom { grid-template-columns: repeat(2, 1fr); }
    .hero-stat:nth-child(2) { border-right: none; }
    .hero-stat:nth-child(3) { border-top: 1px solid var(--rule); }
    .principles-grid { grid-template-columns: 1fr; }
    .audit-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .service-row { grid-template-columns: 48px 1fr 1fr; }
    .sr-tags { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .primary-nav, .header-actions { display: none; }
    .mobile-toggle { display: flex; }
    .industries-grid { grid-template-columns: 1fr; }
    .results-overflow { margin: 0 -24px; padding: 0 24px; }
    .hero-bottom { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .audit-form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 40px 1fr; gap: 12px; }
    .sr-desc { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-stat { padding: 20px 20px; }
    .hero-bottom { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   DARK HERO (standalone, does not affect white sections)
══════════════════════════════════════ */
.hero-dark {
    position: relative;
    background: #080808;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 68px;
}
.hero-dark-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow-orb {
    position: absolute;
    top: 15%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 350px;
    background: radial-gradient(ellipse, rgba(193,255,114,0.07) 0%, transparent 70%);
}
.hero-dark-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 60px;
}
.hero-dark-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 36px;
}
.hde-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c1ff72;
    box-shadow: 0 0 10px #c1ff72;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-dark-headline {
    font-family: var(--font-head);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 28px;
    max-width: 860px;
}
.hero-dark-accent {
    color: #c1ff72;
    font-style: italic;
}
.hero-dark-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 44px;
}
.hero-dark-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 52px; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: #c1ff72; color: #080808;
    font-weight: 700; font-size: 0.95rem;
    padding: 15px 30px; border-radius: 100px;
    transition: 0.25s ease;
    letter-spacing: -0.01em;
}
.btn-hero-primary:hover { background: #d4ff8a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(193,255,114,0.35); }
.btn-hero-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: rgba(255,255,255,0.7);
    font-weight: 600; font-size: 0.95rem;
    padding: 15px 30px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.25s ease;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-dark-trust {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.hdt-dot { width: 6px; height: 6px; border-radius: 50%; background: #c1ff72; flex-shrink: 0; }
.hdt-sep { color: rgba(255,255,255,0.15); }
.hero-dark-trust span { color: rgba(255,255,255,0.45); }

/* Stats bar */
.hero-dark-stats {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    padding: 0;
}
.hds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hds-item {
    padding: 28px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.hds-item:last-child { border-right: none; }
.hds-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #c1ff72;
    line-height: 1;
    margin-bottom: 6px;
}
.hds-suffix { font-size: 1.1rem; letter-spacing: 0; color: rgba(255,255,255,0.4); }
.hds-num span:not(.hds-suffix) { color: #c1ff72; }
.hds-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 500; }

/* Counter targets for dark hero */
.hds-num[data-count] { cursor: default; }

@media (max-width: 768px) {
    .hds-grid { grid-template-columns: 1fr 1fr; }
    .hds-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hds-item:nth-child(2n) { border-right: none; }
    .hero-dark-headline { font-size: 2.6rem; }
}

/* ══════════════════════════════════════
   MEGA MENU
══════════════════════════════════════ */
.nav-dropdown {
    min-width: 720px;
    left: -200px;
}
.mega-menu {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 0;
}
.mega-left { padding: 8px; }
.mega-right {
    padding: 20px;
    background: var(--bg-off);
    border-left: 1px solid var(--rule);
    border-radius: 0 14px 14px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mega-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-30);
    padding: 8px 12px 12px;
    display: block;
}
.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: var(--t);
    text-decoration: none;
    color: inherit;
    position: relative;
}
.mega-item:hover { background: var(--ink-10); }
.mega-item:hover .mega-item-arrow { opacity: 1; transform: translate(0,0); }
.mega-item:hover .mega-item-title { color: var(--ink); }
.mega-item--featured { background: rgba(193,255,114,0.08); }
.mega-item--featured:hover { background: rgba(193,255,114,0.16); }
.mega-icon {
    width: 34px; height: 34px;
    background: var(--bg-off);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-60);
    flex-shrink: 0;
    transition: var(--t);
}
.mega-item:hover .mega-icon { background: var(--ink); color: #fff; }
.mega-item--featured .mega-icon { background: #c1ff72; color: var(--ink); }
.mega-item--featured:hover .mega-icon { background: var(--ink); color: #fff; }
.mega-item-body { flex: 1; min-width: 0; }
.mega-item-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mega-item-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-30);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mega-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    background: #c1ff72;
    color: var(--ink);
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mega-item-arrow {
    font-size: 0.8rem;
    color: var(--ink-30);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: var(--t);
    flex-shrink: 0;
}
/* Right panel */
.mega-result {
    flex: 1;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 16px;
}
.mega-result-num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}
.mega-result-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-60);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.mega-result p {
    font-size: 0.78rem;
    color: var(--ink-60);
    line-height: 1.5;
    margin-bottom: 12px;
}
.mega-result-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    background: var(--ink-10);
    border-radius: 100px;
    color: var(--ink-60);
    letter-spacing: 0.04em;
}
.mega-cta { display: flex; flex-direction: column; gap: 6px; }
.mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 100px;
    transition: var(--t);
    text-align: center;
    justify-content: center;
}
.mega-cta-btn:hover { background: #333; }
.mega-cta span { font-size: 0.68rem; color: var(--ink-30); text-align: center; }

/* ══════════════════════════════════════════════════════
   SERVICE PAGE STYLES
   ══════════════════════════════════════════════════════ */

/* ── SERVICE HERO — SPLIT ── */
.svc-hero {
    margin-top: -68px; /* cancel .main-content padding-top */
}
.svc-hero-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;
    position: relative;
}

/* Left: white */
.svc-hero-left {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(68px + 60px) 60px 80px max(32px, calc((100vw - 1280px) / 2 + 32px));
}
.svc-label-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    background: var(--green);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    align-self: flex-start;
}
.svc-headline {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
    color: var(--ink);
    margin-bottom: 24px;
}
.svc-sub {
    font-size: 1rem;
    color: var(--ink-60);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 48px;
}
/* Stats inline in left panel */
.svc-hero-proof {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 40px;
    border-top: 1px solid var(--rule);
}
.svc-proof-item { flex: 1; }
.svc-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--rule);
    flex-shrink: 0;
    margin: 0 24px;
}
.svc-proof-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
}
.svc-proof-label {
    font-size: 0.75rem;
    color: var(--ink-60);
    margin-top: 5px;
    line-height: 1.4;
}

/* Right: dark panel, form floats left edge */
.svc-hero-right {
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    padding: calc(68px + 40px) 40px 60px 0;
    position: relative;
}
.svc-form-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.15);
    margin-left: -60px; /* floats over left panel */
    position: relative;
    z-index: 2;
}
.svc-form-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(193,255,114,0.15);
    color: #3d6600;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.svc-form-header h3 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.svc-form-header p {
    font-size: 0.88rem;
    color: var(--ink-60);
    margin-bottom: 28px;
}
.svc-form { display: flex; flex-direction: column; gap: 12px; }
.svc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-form input,
.svc-form select,
.svc-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg-off);
    color: var(--ink);
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.svc-form input:focus,
.svc-form select:focus,
.svc-form textarea:focus {
    outline: none;
    border-color: var(--ink);
    background: #fff;
}
.svc-form textarea { resize: vertical; }
.svc-form-submit {
    width: 100%;
    background: var(--ink);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px;
    border-radius: 8px;
    transition: var(--t);
    cursor: pointer;
    border: none;
}
.svc-form-submit:hover { background: #333; }
.svc-form-submit span { display: inline-block; transition: transform 0.2s; }
.svc-form-submit:hover span { transform: translateX(3px); }
.svc-form-note {
    font-size: 0.75rem;
    color: var(--ink-30);
    text-align: center;
}

/* ── SECTION HELPERS (service pages) ── */
.section { padding: 100px 0; }
.section--off { background: var(--bg-off); }
.section-header { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-header .label { display: block; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.8rem, 2.8vw, 3rem); margin-bottom: 16px; }
.section-header p { font-size: 1rem; color: var(--ink-60); line-height: 1.7; }

/* ── FEATURES GRID ── */
.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
}
.svc-feature {
    display: flex;
    gap: 18px;
    padding: 32px 28px;
    background: #fff;
    transition: background 0.2s;
}
.svc-feature:hover { background: var(--bg-off); }
.svc-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 8px;
}
.svc-feature h3 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.svc-feature p { font-size: 0.88rem; color: var(--ink-60); line-height: 1.65; }

/* ── RESULTS GRID ── */
.svc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-result {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 36px 32px;
}
.svc-result-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 16px;
}
.svc-result-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
}
.svc-result-label {
    font-size: 0.82rem;
    color: var(--ink-60);
    margin: 6px 0 20px;
    font-weight: 600;
}
.svc-result p { font-size: 0.88rem; color: var(--ink-60); line-height: 1.65; padding-top: 20px; border-top: 1px solid var(--rule); }

/* ── PRICING GRID ── */
.svc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.svc-price-card {
    border: 1.5px solid var(--rule);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    background: #fff;
}
.svc-price-card--featured {
    border-color: var(--ink);
    background: var(--bg-dark);
    color: #fff;
}
.svc-price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 100px;
    white-space: nowrap;
}
.svc-price-tier {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.svc-price-desc {
    font-size: 0.88rem;
    color: var(--ink-60);
    line-height: 1.6;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
}
.svc-price-card--featured .svc-price-desc { color: rgba(255,255,255,0.55); border-bottom-color: rgba(255,255,255,0.12); }
.svc-price-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.svc-price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.svc-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.svc-price-card--featured .svc-price-list li { color: rgba(255,255,255,0.8); }
.svc-price-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1.5px solid var(--rule);
    transition: var(--t);
}
.svc-price-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.svc-price-btn--dark {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}
.svc-price-btn--dark:hover { background: #b2f55e; border-color: #b2f55e; color: #000; }

/* ── CTA BAND ── */
.cta-band {
    background: var(--green);
    padding: 100px 0;
}
.cta-band-inner {
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    color: #000;
    margin-bottom: 40px;
}
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-outline { border: 1.5px solid rgba(0,0,0,0.25); color: #000; padding: 12px 24px; border-radius: 8px; font-weight: 700; transition: var(--t); }
.btn-outline:hover { border-color: #000; background: rgba(0,0,0,0.06); }

/* ── RESPONSIVE — SERVICE PAGES ── */
@media (max-width: 1024px) {
    .svc-hero-split { grid-template-columns: 1fr; min-height: auto; }
    .svc-hero-left { padding: 72px 32px 60px; }
    .svc-hero-right { padding: 48px 32px 72px; justify-content: center; }
    .svc-form-card { margin-left: 0; max-width: 100%; }
    .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-results-grid { grid-template-columns: 1fr 1fr; }
    .svc-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .svc-hero-left { padding: 56px 20px 48px; }
    .svc-hero-right { padding: 0 20px 56px; }
    .svc-form-row { grid-template-columns: 1fr; }
    .svc-features-grid { grid-template-columns: 1fr; }
    .svc-results-grid { grid-template-columns: 1fr; }
    .svc-hero-proof { flex-wrap: wrap; gap: 20px; }
    .svc-proof-divider { display: none; }
}

/* ── HOW IT WORKS ── */
.svc-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
}
.svc-step {
    background: #fff;
    padding: 36px 28px 40px;
    transition: background 0.2s;
}
.svc-step:hover { background: var(--bg-off); }
.svc-step-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
    -webkit-text-stroke: 1.5px var(--ink-10);
}
.svc-step-body h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.svc-step-body p {
    font-size: 0.88rem;
    color: var(--ink-60);
    line-height: 1.65;
}

/* ── INDUSTRIES ── */
.svc-industries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
}
.svc-industry {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-off);
    padding: 28px 28px;
    transition: background 0.2s;
}
.svc-industry:hover { background: #f0f0ee; }
.svc-industry-icon {
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.svc-industry h4 {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
}
.svc-industry p {
    font-size: 0.82rem;
    color: var(--ink-60);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .svc-process { grid-template-columns: repeat(2, 1fr); }
    .svc-industries { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .svc-process { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════ */
.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.contact-hero-left {
    background: var(--bg-off);
    padding: calc(68px + 72px) 60px 80px max(32px, calc((100vw - 1280px) / 2 + 32px));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-headline {
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 16px 0 20px;
}
.contact-sub {
    font-size: 1rem;
    color: var(--ink-60);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 48px;
}
.contact-offices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.contact-office { }
.co-city { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.co-detail { font-size: 0.82rem; color: var(--ink-60); margin-bottom: 4px; }
.co-phone { font-size: 0.82rem; color: var(--ink); font-weight: 600; }
.co-phone:hover { color: var(--ink-60); }
.contact-trust { display: flex; flex-direction: column; gap: 10px; padding-top: 32px; border-top: 1px solid var(--rule); }
.ct-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--ink-60); }
.ct-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.contact-hero-right {
    background: #fff;
    display: flex;
    align-items: center;
    padding: calc(68px + 48px) max(32px, calc((100vw - 1280px) / 2 + 32px)) 80px 60px;
}
.contact-form-wrap { width: 100%; max-width: 520px; }
.contact-form-wrap h2 { font-size: 1.8rem; letter-spacing: -0.03em; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--ink-60); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-size: 0.78rem; font-weight: 600; color: var(--ink-60); letter-spacing: 0.02em; }
.cf-field input, .cf-field select, .cf-field textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg-off);
    color: var(--ink);
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.cf-field textarea { resize: vertical; }
.cf-submit {
    width: 100%; background: var(--ink); color: #fff; font-size: 0.95rem; font-weight: 700;
    padding: 15px; border-radius: 8px; transition: var(--t); cursor: pointer; border: none; margin-top: 4px;
}
.cf-submit:hover { background: #333; }
.cf-note { font-size: 0.75rem; color: var(--ink-30); text-align: center; }

@media (max-width: 1024px) {
    .contact-hero { grid-template-columns: 1fr; }
    .contact-hero-left { padding: 100px 32px 60px; }
    .contact-hero-right { padding: 60px 32px 80px; }
}
@media (max-width: 600px) {
    .contact-hero-left, .contact-hero-right { padding-left: 20px; padding-right: 20px; }
    .contact-offices { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════ */
.about-hero {
    background: var(--bg-dark);
    padding: calc(68px + 80px) 0 80px;
}
.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}
.about-headline {
    font-size: clamp(2.4rem, 4vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 16px 0 0;
}
.about-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 480px; align-self: end; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-story-left h2 { font-size: clamp(1.8rem, 2.8vw, 2.8rem); margin: 16px 0 24px; }
.about-story-left p { font-size: 0.95rem; color: var(--ink-60); line-height: 1.8; margin-bottom: 16px; }
.about-stat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
.asb-item { background: #fff; padding: 32px 28px; }
.asb-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.asb-num span { font-size: 1.8rem; }
.asb-label { font-size: 0.8rem; color: var(--ink-60); margin-top: 8px; line-height: 1.4; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
.about-value { background: #fff; padding: 36px 28px; display: flex; gap: 20px; transition: background 0.2s; }
.about-value:hover { background: var(--bg-off); }
.av-num { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--ink-30); flex-shrink: 0; padding-top: 3px; }
.av-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.av-body p { font-size: 0.85rem; color: var(--ink-60); line-height: 1.65; }

.about-compare { border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
.ac-header { display: grid; grid-template-columns: 1fr 1fr 1fr; background: var(--ink); color: #fff; }
.ac-header > div { padding: 14px 24px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.ac-col-us { color: var(--green); }
.ac-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--rule); }
.ac-row:last-child { border-bottom: none; }
.ac-row > div { padding: 16px 24px; font-size: 0.88rem; }
.ac-label { font-weight: 600; color: var(--ink); background: var(--bg-off); }
.ac-cell { color: var(--ink-60); }
.ac-cell-us { color: var(--ink); font-weight: 600; background: rgba(193,255,114,0.06); }
.ac-check { color: #3a7d00; margin-right: 6px; }

.about-locations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
.about-location { background: #fff; padding: 36px 28px; transition: background 0.2s; }
.about-location:hover { background: var(--bg-off); }
.al-city { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.al-region { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-30); margin-bottom: 16px; }
.about-location p { font-size: 0.85rem; color: var(--ink-60); line-height: 1.65; }

@media (max-width: 1024px) {
    .about-hero-inner { grid-template-columns: 1fr; }
    .about-story { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .about-locations { grid-template-columns: 1fr 1fr; }
    .ac-header, .ac-row { grid-template-columns: 1fr 1fr; }
    .ac-label { display: none; }
}
@media (max-width: 600px) {
    .about-values, .about-locations { grid-template-columns: 1fr; }
    .about-stat-block { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   RESULTS PAGE
   ══════════════════════════════════════════════════════ */
.results-hero {
    background: var(--bg-dark);
    padding: calc(68px + 80px) 0 0;
}
.results-headline {
    font-size: clamp(2.4rem, 4vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 16px 0 20px;
}
.results-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 560px; margin-bottom: 40px; }
.results-filters { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 48px; }
.rf-btn {
    padding: 8px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); background: none;
    cursor: pointer; transition: var(--t);
}
.rf-btn:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.rf-btn.active { background: var(--green); border-color: var(--green); color: #000; }

.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cs-card {
    background: #fff; border: 1px solid var(--rule); border-radius: 16px; padding: 32px;
    display: flex; flex-direction: column; gap: 10px; transition: box-shadow 0.2s;
}
.cs-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.cs-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cs-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--green); color: #000; padding: 3px 10px; border-radius: 100px; }
.cs-industry { font-size: 0.72rem; font-weight: 600; color: var(--ink-30); text-transform: uppercase; letter-spacing: 0.06em; }
.cs-metric { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.cs-metric-label { font-size: 0.82rem; font-weight: 600; color: var(--ink-60); }
.cs-desc { font-size: 0.85rem; color: var(--ink-60); line-height: 1.65; flex: 1; padding-top: 16px; border-top: 1px solid var(--rule); }
.cs-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--rule); margin-top: auto; }
.cs-time { font-size: 0.75rem; color: var(--ink-30); font-weight: 600; }
.cs-cta { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.cs-cta:hover { color: var(--ink-60); }

.results-agg { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
.agg-item { background: #fff; padding: 32px 24px; text-align: center; }
.agg-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.agg-num span { font-size: 1.6rem; }
.agg-label { font-size: 0.78rem; color: var(--ink-60); margin-top: 8px; line-height: 1.4; }

@media (max-width: 1024px) {
    .cs-grid { grid-template-columns: 1fr 1fr; }
    .results-agg { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .cs-grid { grid-template-columns: 1fr; }
    .results-agg { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════════════ */
.pricing-hero {
    background: var(--bg-dark);
    padding: calc(68px + 80px) 0 80px;
    text-align: center;
}
.pricing-headline { font-size: clamp(2.4rem, 4vw, 5rem); font-weight: 800; letter-spacing: -0.04em; color: #fff; margin: 16px 0 20px; }
.pricing-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 560px; margin: 0 auto 40px; }
.pricing-toggle { display: inline-flex; background: rgba(255,255,255,0.08); border-radius: 100px; padding: 4px; gap: 4px; }
.pt-btn { padding: 8px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.5); background: none; cursor: pointer; transition: var(--t); }
.pt-btn.active { background: #fff; color: #000; }
.pt-save { background: var(--green); color: #000; font-size: 0.7rem; padding: 2px 7px; border-radius: 100px; margin-left: 6px; font-weight: 700; }

.pricing-service-block { margin-bottom: 72px; }
.pricing-service-block:last-child { margin-bottom: 0; }
.psb-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.psb-header h2 { font-size: 1.4rem; letter-spacing: -0.02em; }
.psb-link { font-size: 0.85rem; font-weight: 600; color: var(--ink-60); }
.psb-link:hover { color: var(--ink); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { border: 1.5px solid var(--rule); border-radius: 16px; padding: 32px 28px; position: relative; background: #fff; }
.price-card--featured { border-color: var(--ink); background: var(--bg-dark); color: #fff; }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #000; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 12px; border-radius: 100px; white-space: nowrap; }
.price-tier { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.price-desc { font-size: 0.85rem; color: var(--ink-60); line-height: 1.6; padding-bottom: 20px; border-bottom: 1px solid var(--rule); margin-bottom: 20px; }
.price-card--featured .price-desc { color: rgba(255,255,255,0.5); border-bottom-color: rgba(255,255,255,0.1); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-list li { display: flex; gap: 10px; font-size: 0.85rem; }
.price-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-card--featured .price-list li { color: rgba(255,255,255,0.8); }
.price-btn { display: block; text-align: center; padding: 12px; border-radius: 8px; font-size: 0.88rem; font-weight: 700; border: 1.5px solid var(--rule); transition: var(--t); }
.price-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.price-btn--dark { background: var(--green); border-color: var(--green); color: #000; }
.price-btn--dark:hover { background: #b2f55e; border-color: #b2f55e; color: #000; }

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ══════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════ */
.blog-hero {
    background: var(--bg-dark);
    padding: calc(68px + 80px) 0 80px;
}
.blog-headline { font-size: clamp(2.4rem, 4vw, 5rem); font-weight: 800; letter-spacing: -0.04em; color: #fff; margin: 16px 0 20px; }
.blog-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 520px; }

.blog-cats { border-bottom: 1px solid var(--rule); background: #fff; position: sticky; top: 68px; z-index: 100; }
.blog-cats-inner { display: flex; gap: 4px; padding: 12px 0; overflow-x: auto; }
.bc-link { padding: 6px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: var(--ink-60); white-space: nowrap; transition: var(--t); }
.bc-link:hover, .bc-link.active { background: var(--ink); color: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
.blog-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: var(--bg-off); border-radius: 20px; overflow: hidden; }
.blog-card--featured .blog-card-body { padding: 0 48px 0 0; }
.blog-card-img { display: block; overflow: hidden; border-radius: 12px; aspect-ratio: 16/9; }
.blog-card--featured .blog-card-img { border-radius: 0; aspect-ratio: auto; height: 100%; min-height: 320px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding-top: 20px; }
.blog-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--green); color: #000; padding: 3px 10px; border-radius: 100px; margin-right: 10px; }
.blog-date { font-size: 0.78rem; color: var(--ink-30); }
.blog-card-meta { margin-bottom: 12px; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px; }
.blog-card--featured .blog-card-title { font-size: 1.6rem; }
.blog-card-title a { color: var(--ink); }
.blog-card-title a:hover { color: var(--ink-60); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--ink-60); line-height: 1.65; margin-bottom: 16px; }
.blog-card-link { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.blog-card-link:hover { color: var(--ink-60); }
.blog-pagination { margin-top: 60px; display: flex; justify-content: center; }
.blog-pagination ul { display: flex; gap: 6px; list-style: none; }
.blog-pagination .page-numbers { padding: 8px 14px; border: 1.5px solid var(--rule); border-radius: 8px; font-size: 0.85rem; font-weight: 600; color: var(--ink); transition: var(--t); }
.blog-pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty p { font-size: 1.1rem; color: var(--ink-60); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════
   SINGLE POST
   ══════════════════════════════════════════════════════ */
.post-hero {
    background: var(--bg-dark);
    padding: calc(68px + 60px) 0 0;
}
.post-hero-inner { max-width: 760px; padding-bottom: 60px; }
.post-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.post-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--green); color: #000; padding: 4px 12px; border-radius: 100px; }
.post-date, .post-read { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.post-title { font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; color: #fff; margin-bottom: 20px; }
.post-excerpt { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 640px; }
.post-hero-img { margin-top: 48px; }
.post-hero-img img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 16px 16px 0 0; }

.post-body-wrap { padding: 72px 0; }
.post-layout { display: grid; grid-template-columns: 220px 1fr; gap: 72px; align-items: start; }
.post-sidebar-inner { position: sticky; top: 100px; }
.ps-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-30); margin-bottom: 16px; }
.post-toc { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }
.toc-link { font-size: 0.82rem; color: var(--ink-60); line-height: 1.4; padding: 4px 0; border-left: 2px solid transparent; padding-left: 12px; transition: var(--t); }
.toc-link--sub { padding-left: 24px; font-size: 0.78rem; }
.toc-link:hover { color: var(--ink); border-left-color: var(--green); }
.ps-cta { padding: 20px; background: var(--bg-off); border-radius: 12px; }
.ps-cta p { font-size: 0.82rem; color: var(--ink-60); margin-bottom: 12px; }

.post-footer { padding: 32px 0; border-top: 1px solid var(--rule); }
.post-share { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; }
.post-share span { color: var(--ink-60); }
.share-btn { font-weight: 600; padding: 6px 16px; border: 1.5px solid var(--rule); border-radius: 100px; font-size: 0.8rem; transition: var(--t); }
.share-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card--featured { grid-template-columns: 1fr; }
    .blog-card--featured .blog-card-body { padding: 0 32px 32px; }
    .blog-grid--3 { grid-template-columns: 1fr 1fr; }
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { display: none; }
}
@media (max-width: 600px) {
    .blog-grid, .blog-grid--3 { grid-template-columns: 1fr; }
    .blog-card--featured { grid-column: auto; }
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — UPDATED
   ══════════════════════════════════════════════════════ */
.about-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ahs-item { }
.ahs-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--green); letter-spacing: -0.03em; line-height: 1; }
.ahs-num span { font-size: 1.4rem; }
.ahs-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 6px; line-height: 1.4; }

.about-statement {
    background: var(--ink);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.as-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.as-pull {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    letter-spacing: -0.02em;
}
.as-proof { display: flex; flex-direction: column; gap: 32px; }
.asp-item { padding-left: 24px; border-left: 3px solid var(--green); }
.asp-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.asp-num span { font-size: 1.8rem; }
.asp-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.5; }

.about-who { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-who-left h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin: 16px 0 24px; }
.about-who-left p { font-size: 0.95rem; color: var(--ink-60); line-height: 1.8; margin-bottom: 18px; }

.about-guarantee {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 48px 40px;
    position: sticky;
    top: 100px;
}
.ag-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--green);
    color: #000;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.about-guarantee h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.15;
}
.about-guarantee p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

.about-final {
    background: var(--bg-dark);
    padding: 120px 0;
}
.about-final-inner { max-width: 800px; }
.about-final h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 28px;
}
.about-final p { font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 40px; max-width: 640px; }
.about-final-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .as-inner { grid-template-columns: 1fr; }
    .about-who { grid-template-columns: 1fr; }
    .about-guarantee { position: static; }
}
@media (max-width: 600px) {
    .about-hero-stats { flex-direction: column; gap: 24px; }
}

/* ══════════════════════════════════════════════════════
   PRICING — PRICE AMOUNT + BUNDLE
   ══════════════════════════════════════════════════════ */
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 12px 0 16px;
}
.price-from {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
}
.price-card--featured .price-from { color: var(--green); }
.price-period {
    font-size: 0.82rem;
    color: var(--ink-60);
    font-weight: 500;
}
.price-card--featured .price-period { color: rgba(255,255,255,0.4); }
.psb-desc {
    font-size: 0.88rem;
    color: var(--ink-60);
    margin-top: 6px;
    line-height: 1.6;
    max-width: 520px;
}

.pricing-bundle {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 60px;
}
.pb-left h2 { font-size: clamp(1.4rem, 2.2vw, 2.2rem); color: #fff; margin: 12px 0 16px; }
.pb-left p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 520px; }
@media (max-width: 768px) {
    .pricing-bundle { grid-template-columns: 1fr; padding: 40px 32px; }
}
