/* ============================================================
   LekkerSite — Shared Stylesheet
   Loaded by every page. Edit here, not inline.
   ============================================================ */

:root {
    --orange: #E07A3A;
    --orange-light: #F09A60;
    --orange-dark: #C56528;
    --sage: #7BA384;
    --sage-light: #9DBDA4;
    --gold: #D4A843;
    --cream: #FFFDF7;
    --sand: #F2E8D9;
    --dark: #1C1410;
    --dark-mid: #2A2018;
    --text: #1C1410;
    --text-mid: #5A4D42;
    --text-light: #7A6B5D;
    --white: #FFFFFF;
    --border: #E8DDD0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Skip-to-content link (a11y) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 253, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 221, 208, 0.5);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(28, 20, 16, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-dot svg path {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.logo:hover .logo-layer-top { transform: translateY(-1.6px); }
.logo:hover .logo-layer-mid { transform: translateY(-0.5px); }

.logo-dot svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    color: var(--orange);
}

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

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.3s;
}

.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 122, 58, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 58, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ── Hero (home) ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 122, 58, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-shape-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 163, 132, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 122, 58, 0.08);
    border: 1px solid rgba(224, 122, 58, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    position: relative;
    color: var(--orange);
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 12px;
    background: rgba(224, 122, 58, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: 19px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.hero-proof-item i {
    color: var(--sage);
    font-size: 16px;
}

/* ── Sub-page hero (used by services / work / about / contact) ── */
.subhero {
    padding: 160px 0 72px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(242, 232, 217, 0.45) 100%);
}

.subhero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -10%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(224, 122, 58, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.subhero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.subhero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 18px;
}

.subhero h1 {
    font-size: clamp(34px, 5vw, 56px);
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.subhero p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 620px;
}

/* ── Section header (shared) ── */
.section-header {
    margin-bottom: 56px;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ── Logos strip ── */
.logos {
    padding: 48px 0 24px;
    background: var(--white);
}

.logos-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.logos-row img {
    width: auto;
    object-fit: contain;
    filter: brightness(0) opacity(0.45);
    transition: opacity 0.3s, filter 0.3s;
}

.logos-row img:hover {
    filter: brightness(0) opacity(0.7);
}

.logos-row .logo-tefl { height: 42px; }
.logos-row .logo-sg { height: 64px; }
.logos-row .logo-anel { height: 60px; }
.logos-row .logo-bwuk { height: 48px; }
.logos-row .logo-vaya { height: 52px; }

/* ── Work cards (shared shell) ── */
.work {
    padding: 100px 0;
}

.work-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.work-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.4s;
}

.work-card.reverse {
    direction: rtl;
}
.work-card.reverse > * {
    direction: ltr;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(28, 20, 16, 0.08);
    border-color: transparent;
}

.work-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #ece7df;
    overflow: hidden;
    position: relative;
}

.browser-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 30px;
    background: linear-gradient(to bottom, #faf7f2, #ece7df);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 12px;
    z-index: 2;
}

.browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dots i:nth-child(1) { background: #ff5f56; }
.browser-dots i:nth-child(2) { background: #ffbd2e; }
.browser-dots i:nth-child(3) { background: #27c93f; }

.browser-url {
    font-size: 11px;
    color: #6b6b6b;
    background: rgba(0,0,0,0.04);
    padding: 3px 12px;
    border-radius: 4px;
    flex: 1;
    text-align: center;
    margin-right: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-card-img img {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s;
}

.work-card-img.placeholder {
    background: linear-gradient(135deg, rgba(224, 122, 58, 0.12), rgba(123, 163, 132, 0.12));
}

.work-card-img.placeholder::after {
    content: attr(data-placeholder);
    position: absolute;
    inset: 30px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-light);
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.work-card:hover .work-card-img img {
    transform: scale(1.03);
}

.work-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    background: rgba(224, 122, 58, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.work-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.work-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.work-card-result {
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(123, 163, 132, 0.08);
    border-left: 3px solid var(--sage);
    border-radius: 4px;
    font-size: 13.5px;
    color: var(--text-mid);
}

.work-card-result strong {
    color: var(--dark);
}

.work-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin-top: 18px;
    transition: gap 0.3s;
}

.work-card:hover .work-card-link {
    gap: 10px;
}

/* ── Services grid (home + services intro) ── */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-item {
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--cream);
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(28, 20, 16, 0.06);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-icon.orange { background: rgba(224, 122, 58, 0.1); color: var(--orange); }
.service-icon.sage { background: rgba(123, 163, 132, 0.12); color: var(--sage); }
.service-icon.gold { background: rgba(212, 168, 67, 0.12); color: var(--gold); }
.service-icon.dark { background: rgba(28, 20, 16, 0.06); color: var(--dark); }

.service-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Services page — detail rows ── */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail.reverse .container {
    direction: rtl;
}
.service-detail.reverse .container > * {
    direction: ltr;
}

.service-detail-body h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.service-detail-body > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
}

.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-mid);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-includes li i {
    color: var(--sage);
    font-size: 14px;
    margin-top: 5px;
    flex-shrink: 0;
}

.service-visual {
    aspect-ratio: 4/3;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(224, 122, 58, 0.07), rgba(123, 163, 132, 0.05));
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual.sage { background: linear-gradient(135deg, rgba(123, 163, 132, 0.08), rgba(212, 168, 67, 0.05)); }
.service-visual.gold { background: linear-gradient(135deg, rgba(212, 168, 67, 0.10), rgba(224, 122, 58, 0.05)); }
.service-visual.dark { background: linear-gradient(135deg, rgba(28, 20, 16, 0.04), rgba(123, 163, 132, 0.05)); }

.service-visual svg {
    width: 100%;
    height: auto;
    max-width: 460px;
    display: block;
}

/* Animated SEO bars */
.viz-seo-bar {
    animation: vizGrow 1.2s ease-out backwards;
    transform-origin: bottom;
}
.viz-seo-bar:nth-child(1) { animation-delay: 0s; }
.viz-seo-bar:nth-child(2) { animation-delay: 0.08s; }
.viz-seo-bar:nth-child(3) { animation-delay: 0.16s; }
.viz-seo-bar:nth-child(4) { animation-delay: 0.24s; }
.viz-seo-bar:nth-child(5) { animation-delay: 0.32s; }
.viz-seo-bar:nth-child(6) { animation-delay: 0.4s; }
.viz-seo-bar:nth-child(7) { animation-delay: 0.48s; }

@keyframes vizGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .viz-seo-bar { animation: none; }
}

/* Subhero with a visual on the right */
.subhero.has-visual .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.subhero-visual {
    position: relative;
    z-index: 2;
}

/* Direct-child only: targets the standalone illustration SVGs on
   work/about pages without leaking into the nested logo SVG on contact. */
.subhero-visual > svg {
    width: 100%;
    height: auto;
    display: block;
    max-width: 480px;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .subhero.has-visual .container { grid-template-columns: 1fr; gap: 40px; }
    .subhero-visual > svg { margin: 0 auto; max-width: 380px; }
}

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

/* Big logo block for subhero visuals (About + Contact pages) */
.logo-mark {
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 36px;
    margin-left: auto;
    margin-right: 0;
    max-width: 320px;
}

.subhero-visual .logo-mark {
    margin: 0 0 0 auto;
}

@media (max-width: 1024px) {
    .subhero-visual .logo-mark { margin: 0 auto; }
}

/* Mirror the nav .logo-dot exactly so the big version reads as the same logo.
   Flat orange, no gradient, no highlight overlay — geometric centring works
   only when the tile itself is visually uniform. */
.logo-dot-large {
    width: 124px;
    height: 124px;
    background: var(--orange);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 24px 60px -16px rgba(224, 122, 58, 0.45);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    cursor: default;
}

.logo-mark:hover .logo-dot-large {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px -16px rgba(224, 122, 58, 0.55);
}

.logo-dot-large svg {
    width: 88px;
    height: 88px;
    fill: white;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.logo-dot-large svg path {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

/* Hover translates use small viewBox-unit values (CSS px on SVG paths is
   interpreted as user units), so the top layer at y=2 cannot escape the
   y=0 viewBox bound on hover. Matches the nav logo proportions. */
.logo-mark:hover .logo-dot-large .logo-layer-top { transform: translateY(-1.6px); }
.logo-mark:hover .logo-dot-large .logo-layer-mid { transform: translateY(-0.5px); }

.logo-text-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 14px;
}

.logo-text-large span { color: var(--orange); }

.logo-tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* ── Tiers (replaces pricing — no R-amounts) ── */
.tiers {
    padding: 100px 0;
    background: var(--white);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.tier-card {
    border-radius: 20px;
    padding: 40px 32px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 20, 16, 0.08);
}

.tier-card.featured {
    border-color: var(--orange);
    background: var(--white);
}

.tier-card.featured::before {
    content: 'Most chosen';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.tier-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 8px;
}

.tier-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.tier-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.tier-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0 22px;
}

.tier-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 12px;
    line-height: 1.5;
}

.tier-features li i {
    color: var(--sage);
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

.tier-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 24px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.tier-cta.primary {
    background: var(--orange);
    color: white;
}

.tier-cta.primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 122, 58, 0.3);
}

.tier-cta.outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--border);
}

.tier-cta.outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.tiers-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-light);
}

.tiers-note strong {
    color: var(--dark);
}

/* ── How It Works (process) ── */
.process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--orange), var(--sage));
    opacity: 0.2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.process-step:hover .process-num {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.process-step h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Why Us (dark section) ── */
.why {
    padding: 100px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 122, 58, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.why .section-label { color: var(--orange); }
.why .section-title { color: white; }
.why .section-desc { color: rgba(255,255,255,0.6); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(224, 122, 58, 0.2);
}

.why-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(224, 122, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--orange);
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ── Testimonial ── */
.testimonial {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--orange);
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

/* ── Stats ── */
.stats {
    padding: 64px 0;
    background: var(--sand);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ── About / Founder ── */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: var(--sand);
}

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

.about-text h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-signature {
    margin-top: 24px;
}

.about-signature .name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.about-signature .role {
    font-size: 14px;
    color: var(--text-light);
}

/* ── About page — values strip ── */
.values {
    padding: 100px 0;
    background: var(--white);
}

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

.value-card {
    padding: 32px 26px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.value-card i {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── CTA strip (cream band with inset dark card by default;
       homepage overrides to white via .bg-white modifier) ── */
.cta {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
    position: relative;
}

.cta-content {
    background: var(--dark);
    padding: 72px 48px;
    border-radius: 28px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 122, 58, 0.22) 0%, transparent 55%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content > * {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: clamp(32px, 5vw, 52px);
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta h2 span {
    color: var(--orange);
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta .btn-primary {
    padding: 16px 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .cta { padding: 70px 0; }
    .cta-content { padding: 52px 28px; border-radius: 20px; }
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 48px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(224, 122, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 16px;
}

.contact-detail span {
    font-size: 15px;
    color: var(--text-mid);
}

.contact-detail a {
    color: var(--text-mid);
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--orange);
}

.contact-next {
    margin-top: 32px;
    padding: 24px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-next h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-next ol {
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.8;
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

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

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

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover:not(:disabled) {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 122, 58, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.form-status.success {
    display: block;
    background: rgba(123, 163, 132, 0.12);
    border: 1px solid rgba(123, 163, 132, 0.4);
    color: #4a6d52;
}

.form-status.error {
    display: block;
    background: rgba(224, 80, 80, 0.08);
    border: 1px solid rgba(224, 80, 80, 0.3);
    color: #a23838;
}

/* Honeypot — visually hidden but in DOM for bots */
.honey-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Footer ── */
.footer {
    padding: 56px 0 0;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-brand .logo-text {
    color: white;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand .logo-text span {
    color: var(--orange);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    max-width: 300px;
}

.footer h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

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

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--orange);
    color: white;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ── Mobile CTA ── */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--orange);
    padding: 14px 24px;
    text-align: center;
}

.mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

/* ── Utility helpers ── */
.u-center { text-align: center; }
.u-mt-48 { margin-top: 48px; }
.u-mt-8 { margin-top: 8px; }
.u-pt-60 { padding-top: 60px; }
.u-form-fineprint {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 14px;
    text-align: center;
}

/* Section background modifiers (used to enforce homepage alternation
   without affecting other pages that share the same component classes). */
section.bg-cream { background: var(--cream); }
section.bg-white { background: var(--white); }
section.bg-sand  { background: var(--sand);  }
section.bg-dark  { background: var(--dark); color: white; }

/* ── Reveal-on-scroll (IntersectionObserver-based, CSP-friendly) ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .work-card { grid-template-columns: 1fr; }
    .work-card-body { padding: 28px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tiers-grid { grid-template-columns: 1fr; max-width: 480px; }
    .values-grid { grid-template-columns: 1fr; }
    .service-detail .container { grid-template-columns: 1fr; gap: 36px; }
    .service-detail.reverse .container { direction: ltr; }
    .work-card.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(28, 20, 16, 0.06);
    }
    .nav.active { display: flex; }
    .nav-cta { text-align: center; width: 100%; justify-content: center; }
    .mobile-toggle { display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-proof { flex-direction: column; gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .mobile-cta { display: block; }
    .whatsapp-float { bottom: 80px; }
    .footer { padding-bottom: 70px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .subhero { padding: 130px 0 56px; }
}
