*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --sand: #f5f0e8; --sand2: #ede7d9; --sand3: #d6cfc0;
    --teal: #0d7377; --teal2: #16a8a8; --teal-bg: #e6f4f4;
    --navy: #0f1f2e; --ink: #181816; --ink2: #45453f; --ink3: #888880;
    --white: #fffefb; --line: rgba(0,0,0,0.07);
    --serif: 'Lora', Georgia, serif;
    --sans: 'Syne', system-ui, sans-serif;
    --ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --display: 'Space Grotesk', 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--ui); background: var(--sand); color: var(--ink);
    font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 2.5px; width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--teal2));
    z-index: 9999; transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(22,168,168,0.5);
}

/* ── CUSTOM CURSOR ── */
#cursor-dot {
    position: fixed; width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal2); pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%); transition: transform 0.08s, opacity 0.3s; opacity: 0;
}
#cursor-ring {
    position: fixed; width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid rgba(13,115,119,0.4); pointer-events: none; z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, border-color 0.25s, opacity 0.3s; opacity: 0;
}
body:hover #cursor-dot, body:hover #cursor-ring { opacity: 1; }
body.cursor-hover #cursor-ring { width: 52px; height: 52px; border-color: rgba(13,115,119,0.7); }

/* ── NAV ── */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245,240,232,0.97);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid var(--sand3); padding: 0 6vw;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
nav.scrolled { background: rgba(245,240,232,0.98); box-shadow: var(--shadow-md); }
.nav-in {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; height: 62px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.logo:hover { transform: scale(1.05); }
.logo img { filter: drop-shadow(0 2px 4px rgba(13,115,119,0.2)); transition: filter 0.3s; }
.logo:hover img { filter: drop-shadow(0 4px 8px rgba(13,115,119,0.3)); }
.logo-txt { font-family: var(--display); font-weight: 700; font-size: .95rem; letter-spacing: .15em; color: var(--navy); text-transform: uppercase; transition: color 0.3s; }
.logo:hover .logo-txt { color: var(--teal); }

/* FIX: white-space:nowrap prevents nav links from wrapping at 960–1100px range */
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
    font-size: 13px; font-family: var(--ui); font-weight: 500; color: var(--ink2);
    text-decoration: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative; padding: 8px 0; white-space: nowrap;
}
.nav-links a::before {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--teal); transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    transform: translateX(-50%); border-radius: 2px;
}
.nav-links a:hover { color: var(--teal); transform: translateY(-2px); }
.nav-links a:hover::before, .nav-links a.active::before { width: 100%; }
.nav-links a.active { color: var(--teal); }

.nav-btn {
    font-size: 13px; font-family: var(--ui); font-weight: 600; color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    padding: 10px 22px; border-radius: 8px; text-decoration: none; letter-spacing: .04em;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1); box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden; white-space: nowrap;
}
.nav-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.nav-btn:hover::before { left: 100%; }
.nav-btn:hover { background: linear-gradient(135deg, var(--navy), var(--teal)); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* FIX: was display:none but flex-direction:column — needs display:flex when toggled */
.hbg { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; transition: all 0.3s; }
.hbg:hover { background: var(--sand2); }
.hbg span { width: 22px; height: 2px; background: var(--ink); display: block; border-radius: 2px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.hbg.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hbg.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ── HERO ── */
.hero { background: var(--white); padding: 108px 6vw 88px; position: relative; overflow: hidden; }
.grid-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--sand2) 1px, transparent 1px), linear-gradient(90deg, var(--sand2) 1px, transparent 1px);
    background-size: 56px 56px; opacity: .35; pointer-events: none;
    animation: gridShift 20s linear infinite;
}
@keyframes gridShift { from { background-position: 0 0, 0 0; } to { background-position: 56px 56px, 56px 56px; } }
.hero-in {
    max-width: 1160px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px;
    align-items: center; position: relative; z-index: 1;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-family: var(--ui); font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase; color: var(--teal);
    margin-bottom: 24px; animation: up .4s ease both;
    padding: 6px 12px; background: rgba(13,115,119,0.08);
    border-radius: 20px; border: 1px solid rgba(13,115,119,0.15); transition: all 0.3s;
}
.hero-tag:hover { background: rgba(13,115,119,0.12); transform: translateY(-1px); }
.hero-tag::before { content: ''; width: 20px; height: 1px; background: var(--teal); }
.hero h1 {
    font-family: var(--display); font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    line-height: 1.07; color: var(--ink); margin-bottom: 22px;
    letter-spacing: -.02em; animation: up .5s .1s ease both; font-weight: 700;
}
.hero h1 em {
    font-style: italic; color: var(--teal);
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: 1.02rem; font-family: var(--ui); color: var(--ink2);
    line-height: 1.82; margin-bottom: 36px; max-width: 480px;
    animation: up .5s .2s ease both; font-weight: 400;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.btns { display: flex; gap: 12px; flex-wrap: wrap; animation: up .5s .3s ease both; }

/* ── HERO CARD ── */
.hero-card {
    background: var(--sand); border: 1px solid var(--sand3); border-radius: 16px; padding: 26px;
    animation: up .6s .4s ease both; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}
.hero-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal2), var(--teal));
    transform: scaleX(0); transition: transform 0.3s;
}
.hero-card:hover::before { transform: scaleX(1); }
.hero-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--teal2); }
.hc-label { font-size: 10px; font-family: var(--ui); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; }

/* FIX: padding shorthand + padding-left/right conflict consolidated */
.stage-row {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 6px; border-bottom: 1px solid var(--line);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1); border-radius: 8px; position: relative;
}
.stage-row:hover { background: rgba(13,115,119,0.04); transform: translateX(4px); }
/* FIX: :last-child fails when a <p> follows — using :last-of-type */
.stage-row:last-of-type { border-bottom: none; }
.sr-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; position: relative; transition: all 0.3s; }
.sr-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid currentColor; opacity: 0; animation: pulse-ring 2.5s infinite; }
.sr-dot.dot-warn { color: #f5a623; } .sr-dot.dot-mid { color: #3b82f6; } .sr-dot.dot-go { color: var(--teal); }
.sr-dot.dot-go::after { animation-delay: 0.2s; } .sr-dot.dot-mid::after { animation-delay: 0.7s; } .sr-dot.dot-warn::after { animation-delay: 1.2s; }
.stage-row:hover .sr-dot { transform: scale(1.2); }
@keyframes pulse-ring { 0%,100%{ opacity:0; transform:scale(1);} 40%{ opacity:0.7; transform:scale(1.7);} 70%{ opacity:0; transform:scale(2.2);} }
.sr-name { font-size: 13px; font-family: var(--ui); font-weight: 600; color: var(--ink); transition: color 0.3s; }
.stage-row:hover .sr-name { color: var(--teal); }
.sr-desc { font-size: 11px; font-family: var(--ui); color: var(--ink3); margin-top: 1px; }
/* FIX: added flex-shrink:0 so badge doesn't squash on narrow widths */
.sr-badge { font-size: 10px; font-family: var(--ui); font-weight: 700; padding: 3px 9px; border-radius: 12px; letter-spacing: .04em; margin-left: auto; flex-shrink: 0; transition: all 0.3s; }
.stage-row:hover .sr-badge { transform: scale(1.05); }
.b-warn { background: #fff8ed; color: #9a6000; } .b-mid { background: #eff8ff; color: #1a5fa8; } .b-go { background: var(--teal-bg); color: var(--teal); }

/* ── TRUST ── */
.trust { background: var(--navy); padding: 13px 6vw; overflow: hidden; }
.trust-in { max-width: 1160px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; }
/* FIX: merged orphaned .ti{position:relative} block into main .ti rule */
.ti { position: relative; font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .06em; padding: 6px 22px; border-right: 1px solid rgba(255,255,255,.1); transition: color .2s; cursor: default; }
.ti:last-child { border-right: none; }
.ti:hover { color: rgba(255,255,255,.8); }

/* ── REVEAL ANIMATIONS ── */
/* JS adds .visible via IntersectionObserver — fallback ensures content never stays hidden */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* CSS fallback: no-JS or print — never hide content permanently */
@media print {
    .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ── SECTIONS ── */
section { padding: 88px 6vw; }
.si { max-width: 1160px; margin: 0 auto; }
.ey { font-size: 11px; font-family: var(--ui); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 8px; }
.ey::before { content: ''; display: block; width: 0; height: 2px; background: currentColor; transition: width .5s .3s cubic-bezier(0.4,0,0.2,1); border-radius: 2px; }
.ey.visible::before { width: 20px; }
.sh { font-family: var(--display); font-size: clamp(2rem,3.2vw,3rem); color: var(--ink); line-height: 1.12; letter-spacing: -.02em; margin-bottom: 16px; font-weight: 700; }
.ss { font-size: .98rem; font-family: var(--ui); color: var(--ink2); max-width: 560px; line-height: 1.8; margin-bottom: 52px; font-weight: 400; }

/* ── STAGES ── */
.stages-s { background: var(--sand); }
.stages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--sand3); border-radius: 10px; overflow: hidden; }
.stg { background: var(--white); padding: 34px 28px; border-right: 1px solid var(--sand3); transition: background .25s, transform .3s, box-shadow .3s; will-change: transform; }
.stg:last-child { border-right: none; }
.stg:hover { background: var(--sand); z-index: 2; }
.stg-n { font-family: var(--serif); font-size: 3.2rem; font-style: italic; color: var(--sand2); line-height: 1; margin-bottom: 18px; transition: color .3s; }
.stg:hover .stg-n { color: var(--teal); opacity: .25; }
.stg h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: .02em; text-transform: uppercase; }
.stg p { font-size: 13.5px; color: var(--ink2); line-height: 1.72; }
.stg-tag { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 2px; margin-top: 16px; letter-spacing: .06em; text-transform: uppercase; }
.t-a { background: #fff8ed; color: #9a6000; } .t-b { background: #eff8ff; color: #1a5fa8; } .t-c { background: #e6f4f4; color: var(--teal); }
.stg-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--sand2); font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--ink3); line-height: 1.68; }

/* ── IMAGINE ── */
.imagine-s { background: var(--white); }
.ig-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--sand3); border-radius: 10px; overflow: hidden; }
.igc { background: var(--white); padding: 34px 30px; transition: background .2s; }
/* FIX: scale(1.01) inside overflow:hidden parent caused clipping — removed scale */
.igc:hover { background: var(--sand); }
.igc-ind { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.igc h3 { font-family: var(--serif); font-size: 1.18rem; font-style: italic; color: var(--ink); margin-bottom: 18px; line-height: 1.4; }
.igc-list { display: flex; flex-direction: column; gap: 9px; }
.igc-item { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink2); line-height: 1.58; align-items: flex-start; }
.igc-arr { color: var(--teal); flex-shrink: 0; font-size: 11px; margin-top: 3px; transition: transform .2s; }
.igc-item:hover .igc-arr { transform: translateX(4px); }
.igc-note { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--sand2); font-size: 12px; font-style: italic; color: var(--ink3); }

/* ── IS IT RIGHT ── */
.check-s { background: var(--navy); }
.check-s .ey { color: #5ec8c8; } .check-s .sh { color: #fff; } .check-s .ss { color: rgba(255,255,255,.5); }
.ck-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 32px; }
.ckc { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 24px; transition: border-color .25s, transform .3s; }
.ckc:hover { border-color: rgba(255,255,255,.18); transform: translateY(-3px); }
.ck-t { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.07); }
.ck-items { display: flex; flex-direction: column; gap: 10px; }
.ck-item { display: flex; gap: 9px; font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; align-items: flex-start; }
.ck-ico { width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; flex-shrink: 0; margin-top: 2px; }
.ci-a { background: rgba(245,200,66,.18); color: #f5c842; } .ci-b { background: rgba(13,115,119,.25); color: #5ec8c8; } .ci-c { background: rgba(255,255,255,.06); color: rgba(255,255,255,.28); }
.honest-box { background: rgba(255,255,255,.04); border-left: 2px solid var(--teal2); border-radius: 0 10px 10px 0; padding: 22px 26px; font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; }
.honest-box strong { color: #fff; font-weight: 600; }

/* ── DIFFERENT (VS) ── */
.diff-s { background: var(--ink); padding: 88px 6vw; }
.diff-in { max-width: 1160px; margin: 0 auto; }
.diff-in .ey { color: #5ec8c8; } .diff-in .sh { color: #fff; margin-bottom: 14px; }
.diff-intro { font-size: 1.02rem; color: rgba(255,255,255,.6); line-height: 1.82; max-width: 600px; margin-bottom: 52px; }
.diff-intro strong { color: #fff; }
.vs-wrap { border: 1px solid rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.vs-header { display: grid; grid-template-columns: 1fr 1fr; background: rgba(255,255,255,.04); }
.vs-col-h { padding: 14px 24px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.vs-col-h.old { color: rgba(255,255,255,.3); border-right: 1px solid rgba(255,255,255,.08); } .vs-col-h.new { color: #5ec8c8; }
.vs-rows { display: flex; flex-direction: column; }
.vs-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; cursor: default; }
.vs-row::before { content: ''; position: absolute; inset: 0; background: rgba(13,115,119,.08); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.vs-row:hover::before { transform: scaleX(1); }
.vs-cell { padding: 14px 24px; font-size: 13px; line-height: 1.55; position: relative; z-index: 1; }
.vs-cell.old-c { color: rgba(255,255,255,.38); border-right: 1px solid rgba(255,255,255,.06); } .vs-cell.new-c { color: rgba(255,255,255,.75); background: rgba(13,115,119,.06); }
.diff-quote { margin-top: 40px; border: 1px solid rgba(255,255,255,.08); border-left: 2px solid var(--teal2); border-radius: 0 10px 10px 0; padding: 22px 26px; font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.7); line-height: 1.75; }

/* ── WHY ODOO ── */
.odoo-s { background: var(--sand); }
.odoo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--sand3); border-radius: 10px; overflow: hidden; }
.oc { background: var(--white); padding: 30px 26px; border-right: 1px solid var(--sand3); border-bottom: 1px solid var(--sand3); transition: background .2s, transform .3s; }
.oc:nth-child(2n) { border-right: none; } .oc:nth-child(n+3) { border-bottom: none; }
.oc:hover { background: var(--sand); }
.oc-n { font-family: var(--serif); font-size: 1.9rem; font-style: italic; color: var(--sand2); margin-bottom: 12px; transition: color .3s; }
.oc:hover .oc-n { color: var(--teal); opacity: .3; }
.oc h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: .02em; }
.oc p { font-size: 13.5px; color: var(--ink2); line-height: 1.72; }

/* ── SERVICES ── */
.svc-s { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sv { border: 1px solid var(--sand3); border-radius: 10px; padding: 26px; background: var(--white); transition: all .25s; position: relative; overflow: hidden; }
.sv::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(13,115,119,0.06) 0%, transparent 65%); opacity: 0; transition: opacity .3s; }
.sv:hover::before { opacity: 1; }
.sv:hover { border-color: var(--teal); background: var(--sand); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(13,115,119,0.1); }
.sv-ico { width: 36px; height: 36px; border-radius: 4px; background: var(--teal-bg); display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 14px; transition: transform .3s; }
.sv:hover .sv-ico { transform: scale(1.15) rotate(-4deg); }
.sv h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: .02em; }
.sv p { font-size: 13px; color: var(--ink2); line-height: 1.65; }
.sv-chips { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 12px; }
.chip { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 2px; background: var(--teal-bg); color: var(--teal); letter-spacing: .03em; }

/* ── WHY US ── */
.wu-s { background: var(--sand); }
.wu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.wu { background: var(--white); border: 1px solid var(--sand3); border-radius: 10px; padding: 26px; transition: all .25s; }
.wu:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,115,119,0.09); }
.wu-n { font-family: var(--serif); font-size: 2.1rem; font-style: italic; color: var(--sand2); margin-bottom: 12px; transition: color .3s; }
.wu:hover .wu-n { color: var(--teal); opacity: .25; }
.wu h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: .02em; }
.wu p { font-size: 13px; color: var(--ink2); line-height: 1.65; }

/* ── STORY ── */
.story-s { background: var(--teal); padding: 88px 6vw; }
.story-in { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-in .ey { color: rgba(255,255,255,.5); } .story-in .sh { color: #fff; font-size: clamp(1.8rem,2.8vw,2.6rem); margin-bottom: 18px; }
.story-body { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 32px; }
.story-body strong { color: #fff; }
.story-right { display: flex; flex-direction: column; gap: 12px; }
.sc { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 18px 20px; transition: background .25s, border-color .25s, transform .3s; }
.sc:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); transform: translateX(5px); }
.sc-l { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.sc-v { font-size: 13.5px; color: rgba(255,255,255,.8); line-height: 1.6; }

/* ── BUTTONS ── */
/* FIX: btn-s and btn-gs were missing overflow:hidden — ripple was spilling outside bounds */
.btn-p, .btn-s, .btn-ts, .btn-gs, .nav-btn { position: relative; overflow: hidden; }
.btn-p { background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #fff; padding: 14px 28px; border-radius: 8px; font-size: 13px; font-family: var(--ui); font-weight: 600; text-decoration: none; letter-spacing: .04em; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); border: none; cursor: pointer; display: inline-block; box-shadow: var(--shadow-md); }
.btn-p::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.btn-p:hover::before { left: 100%; }
.btn-p:hover { background: linear-gradient(135deg, var(--navy), var(--teal)); transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-s { background: transparent; color: var(--ink); padding: 14px 28px; border-radius: 8px; font-size: 13px; font-family: var(--ui); font-weight: 500; text-decoration: none; border: 2px solid var(--sand3); transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.btn-s:hover { border-color: var(--teal); color: var(--teal); background: rgba(13,115,119,0.05); transform: translateY(-2px); }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.35); transform: scale(0); animation: ripple-anim .5s linear; pointer-events: none; }
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ── CTA ── */
.cta-s { background: var(--white); padding: 80px 6vw; text-align: center; border-top: 1px solid var(--sand2); }
.cta-in { max-width: 640px; margin: 0 auto; }
.cta-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(13,115,119,.3); padding: 4px 12px; border-radius: 2px; margin-bottom: 20px; }
.cta-h { font-family: var(--display); font-size: clamp(2rem,3.5vw,3rem); color: var(--ink); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.cta-sub { font-size: 1rem; color: var(--ink2); line-height: 1.8; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-ts { background: var(--teal); color: #fff; padding: 14px 30px; border-radius: 4px; font-size: 13px; font-weight: 600; text-decoration: none; letter-spacing: .05em; transition: all .2s; }
.btn-ts:hover { background: var(--navy); }
.btn-gs { background: transparent; color: var(--ink); padding: 14px 30px; border-radius: 4px; font-size: 13px; font-weight: 400; text-decoration: none; border: 1px solid var(--sand3); transition: all .2s; }
.btn-gs:hover { border-color: var(--ink3); }

/* ── CONTACT ── */
.con-s { background: var(--sand); padding: 88px 6vw; }
.con-in { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; align-items: start; }
.cd-row { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.cd-ico { width: 38px; height: 38px; border-radius: 4px; background: var(--teal-bg); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; transition: background .2s, transform .2s; }
.cd-row:hover .cd-ico { background: var(--teal); transform: scale(1.1); }
.cd-l { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); margin-bottom: 2px; }
.cd-v { font-size: 14px; color: var(--ink2); }

/* ── FORM ── */
form { display: flex; flex-direction: column; gap: 12px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, select, textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--sand3); border-radius: 4px;
    font-family: var(--ui); font-size: 13px; color: var(--ink); background: var(--white);
    transition: border-color .2s, box-shadow .2s; outline: none;
    appearance: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--ink3); }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,115,119,0.1); }
textarea { resize: vertical; min-height: 110px; }
/* FIX: select had appearance:none but no custom arrow — added SVG arrow background */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888880' 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; cursor: pointer;
}
.f-note { font-size: 12px; color: var(--ink3); font-style: italic; }
.f-btn { background: var(--navy); color: #fff; padding: 13px; border-radius: 4px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; width: 100%; letter-spacing: .05em; transition: background .2s, transform .15s; position: relative; overflow: hidden; }
.f-btn:hover { background: var(--teal); transform: translateY(-1px); }
.f-btn:active { transform: translateY(1px); }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-5px)} 40%{transform:translateX(5px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }
.shake { animation: shake .4s ease; }


/* ── FORM BUTTON STATES ── */
.f-btn:disabled { cursor: not-allowed; opacity: .85; transform: none !important; }
.f-btn { transition: background .3s, transform .15s, opacity .2s; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 50px 6vw 28px; }
.fi { max-width: 1160px; margin: 0 auto; }
.ft { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.07); }
.fb-p { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 12px; max-width: 240px; line-height: 1.7; }
.fc h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.25); margin-bottom: 13px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fc a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.fc a:hover { color: #fff; }
.fb2 { padding-top: 22px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.25); font-style: italic; }

/* ── BASE UP ANIMATION ── */
@keyframes up { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ── SECTION DIVIDER ── */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--sand3), transparent); }

/* ── FLOATING LABEL ── */
.f-field-wrap { position: relative; }
.f-field-wrap input:focus + .f-float-label,
.f-field-wrap input:not(:placeholder-shown) + .f-float-label { top: -9px; font-size: 9px; background: var(--white); padding: 0 4px; color: var(--teal); }
.f-float-label { position: absolute; left: 10px; top: 11px; font-size: 13px; color: var(--ink3); pointer-events: none; transition: all .2s; font-family: var(--ui); }


/* ── CUSTOM CURSOR — base hidden, JS controls opacity dynamically ── */
/* Using opacity (not display) so JS can toggle without reflow/jank */
/* The JS listener on pointerMQ handles DevTools device toggle in real-time */

/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════ */

/* 1200px — large tablets / small laptops */
@media (max-width: 1200px) {
    .hero-in { gap: 52px; }
    .nav-links { gap: 22px; }
}

/* 1024px — shrink nav before it collapses */
@media (max-width: 1024px) {
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 12px; }
    .svc-grid { grid-template-columns: repeat(2,1fr); }
    .wu-grid  { grid-template-columns: repeat(2,1fr); }
    .story-in { gap: 48px; }
}

/* 960px — tablet: collapse nav, stack hero + major grids */
@media (max-width: 960px) {
    nav { padding: 0 4vw; }
    .hero-in { grid-template-columns: 1fr; gap: 36px; }
    .hero { padding: 80px 4vw 60px; }
    .hero-sub { max-width: 100%; }

    /* Mobile nav dropdown */
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(245,240,232,0.99);
        backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
        flex-direction: column; gap: 0;
        padding: 12px 4vw 20px;
        border-bottom: 1px solid var(--sand3);
        box-shadow: var(--shadow-lg); z-index: 99;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--sand2); display: block; font-size: 14px; }
    .nav-links a:last-child { border-bottom: none; }
    .nav-btn { display: none; }
    .hbg { display: flex; }

    /* Stack grids */
    .stages-grid { grid-template-columns: 1fr; }
    .stg { border-right: none; border-bottom: 1px solid var(--sand3); }
    .stg:last-child { border-bottom: none; }

    .ig-grid { grid-template-columns: 1fr; }
    .ck-cols { grid-template-columns: 1fr; }

    /* FIX: odoo-grid border rules were breaking on 1-col — reset and reapply */
    .odoo-grid { grid-template-columns: 1fr; }
    .oc { border-right: none; border-bottom: 1px solid var(--sand3); }
    .oc:last-child { border-bottom: none; }

    .story-in { grid-template-columns: 1fr; gap: 36px; }
    .con-in   { grid-template-columns: 1fr; gap: 44px; }

    /* VS table stacked */
    .vs-header { grid-template-columns: 1fr; }
    .vs-col-h.old { display: none; }
    .vs-row { grid-template-columns: 1fr; }
    .vs-cell.old-c { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.3); font-size: 12px; padding: 10px 24px; }
    .vs-cell.old-c::before { content: '✗  '; color: rgba(255,255,255,.25); }
    .vs-cell.new-c::before { content: '✓  '; color: #5ec8c8; }

    .ft { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* 768px — phones landscape / small tablets */
@media (max-width: 768px) {
    section, .diff-s, .story-s, .cta-s, .con-s { padding: 64px 4vw; }
    .hero { padding: 64px 4vw 44px; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-sub { font-size: .98rem; }

    .svc-grid { grid-template-columns: 1fr; gap: 12px; }
    .wu-grid  { grid-template-columns: 1fr; gap: 12px; }
    .f-row    { grid-template-columns: 1fr; }
    .ft       { grid-template-columns: 1fr; gap: 28px; }

    .stages-grid { border-radius: 8px; }
    .stg { padding: 24px 20px; }

    /* FIX: trust bar items wrapping awkwardly — switch to vertical stack */
    .trust-in { flex-direction: column; align-items: center; }
    .ti { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 7px 18px; width: 100%; text-align: center; }
    .ti:last-child { border-bottom: none; }

    .diff-quote { font-size: 1rem; padding: 18px 20px; }
    .honest-box { padding: 18px 20px; }

    /* CTA buttons full width */
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-ts, .btn-gs { width: 100%; max-width: 340px; text-align: center; }
}

/* 480px — portrait phones */
@media (max-width: 480px) {
    section, .diff-s, .story-s, .cta-s, .con-s { padding: 52px 4vw; }
    .hero { padding: 52px 4vw 36px; }
    .hero h1 { font-size: clamp(2rem, 10vw, 2.6rem); line-height: 1.1; }
    .hero-sub { font-size: 0.92rem; margin-bottom: 28px; }

    .btns { flex-direction: column; gap: 8px; }
    .btn-p, .btn-s { width: 100%; text-align: center; }

    .hero-card { padding: 18px; }
    .stage-row { padding: 9px 4px; gap: 9px; }
    .sr-badge { font-size: 9px; padding: 2px 7px; }

    .sh { font-size: clamp(1.75rem, 7vw, 2.4rem); }
    .ss { font-size: .93rem; margin-bottom: 36px; }

    /* FIX: orphaned ".nav" selector (wrong — no dot class) removed; using nav tag */
    nav { padding: 0 4vw; }

    .stg-n { font-size: 2.6rem; }
    .ck-cols { gap: 10px; }
    .ckc { padding: 18px; }

    .vs-cell { padding: 12px 16px; }
    .diff-quote { padding: 16px 18px; font-size: .95rem; }
    .igc { padding: 24px 20px; }
    .sc  { padding: 14px 16px; }

    .fb2 { flex-direction: column; gap: 4px; text-align: center; justify-content: center; }
    .footer-tagline { text-align: center; }
    .cd-ico { width: 32px; height: 32px; font-size: 13px; }
}

/* 360px — very small phones */
@media (max-width: 360px) {
    .hero h1 { font-size: clamp(1.8rem, 11vw, 2.2rem); }
    nav, section, .diff-s, .story-s, .cta-s, .con-s { padding-left: 3vw; padding-right: 3vw; }
    .hero { padding: 44px 3vw 28px; }
    .trust { padding: 10px 3vw; }
    .ti { font-size: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .grid-bg { animation: none; }
    html { scroll-behavior: auto; }
}
