/* ===== Design Tokens ===== */
:root {
  --bg:        #ffffff;
  --bg-alt:    #f8fafc;
  --bg-dark:   #0f172a;

  --navy:      #1e3a5f;
  --navy-mid:  #2d5a8e;
  --navy-light:#e8f0fb;

  --accent:        #C4161C;
  --accent-hover:  #9e1116;
  --accent-light:  #fef2f2;
  --accent-border: #fecaca;

  --text:      #0f172a;
  --text-2:    #334155;
  --text-muted:#64748b;
  --text-xmuted:#94a3b8;

  --border:    #e2e8f0;
  --border-2:  #cbd5e1;

  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow:    0 4px 16px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);

  --radius:    14px;
  --radius-sm: 9px;
  --trans:     .22s ease;
  --font:      'Inter', system-ui, sans-serif;
  --max:       1200px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ===== Layout ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Type helpers ===== */
.label { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--text); margin-bottom: 16px; }
.sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.72; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 600; font-size: .93rem; transition: all var(--trans); white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,22,28,.3); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,.25); }
.btn-outline { border: 1.5px solid var(--border-2); color: var(--text-2); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }

/* ===== Cookie Banner ===== */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000; background: var(--bg-dark); color: #f1f5f9; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; transition: transform .4s ease; }
.cookie.hidden { transform: translateY(100%); pointer-events: none; }
.cookie__text { font-size: .83rem; color: #94a3b8; flex: 1; min-width: 240px; }
.cookie__text a { color: var(--accent); }
.cookie__btns { display: flex; gap: 10px; }
.cbtn { padding: 7px 16px; border-radius: var(--radius-sm); font-size: .83rem; font-weight: 600; transition: all var(--trans); }
.cbtn-ok { background: var(--accent); color: #fff; }
.cbtn-ok:hover { background: var(--accent-hover); }
.cbtn-no { border: 1px solid #334155; color: #94a3b8; }
.cbtn-no:hover { border-color: #94a3b8; color: #f1f5f9; }

/* ===== Nav ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 800; height: 68px; display: flex; align-items: center; padding: 0 24px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color var(--trans), box-shadow var(--trans); }
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner { max-width: var(--max); width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo svg { height: 38px; width: auto; display: block; }
.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: .875rem; font-weight: 500; color: var(--text-muted); transition: color var(--trans); position: relative; padding-bottom: 2px; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width var(--trans); }
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang-sw { display: flex; align-items: center; gap: 2px; font-size: .78rem; font-weight: 700; }
.lang-sw a { color: var(--text-muted); padding: 3px 7px; border-radius: 5px; transition: all var(--trans); }
.lang-sw a.active { color: var(--accent); background: var(--accent-light); }
.lang-sw a:hover { color: var(--text); }
.lang-sw span { color: var(--border-2); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--trans); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 108px 24px 80px; background: var(--bg); }
.hero__blob1 { position: absolute; top: -120px; right: -80px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(196,22,28,.12) 0%, rgba(196,22,28,.04) 50%, transparent 70%); z-index: 0; }
.hero__blob2 { position: absolute; bottom: -80px; left: -60px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(30,58,95,.07) 0%, transparent 70%); z-index: 0; }
.hero__grid { display: none; }
#heroCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero__content { position: relative; z-index: 1; max-width: var(--max); width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border: 1px solid var(--accent-border); border-radius: 100px; background: var(--accent-light); font-size: .76rem; font-weight: 700; color: var(--accent); letter-spacing: .06em; margin-bottom: 24px; }
.hero__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero__h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.08; letter-spacing: -.03em; color: var(--text); margin-bottom: 20px; max-width: 580px; }
.hero__h1 em { color: var(--accent); font-style: normal; }
.hero__sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.72; max-width: 500px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); }
.hstat__num { font-size: 1.75rem; font-weight: 900; color: var(--text); line-height: 1; }
.hstat__num em { color: var(--accent); font-style: normal; }
.hstat__lbl { font-size: .76rem; color: var(--text-muted); margin-top: 3px; }

/* Hero right — demo window */
.hero__right { position: relative; }
.hero__demo { background:#fff; border-radius:16px; box-shadow:0 24px 64px rgba(15,23,42,.15),0 4px 16px rgba(15,23,42,.08); border:1px solid var(--border); overflow:hidden; user-select:none; }

/* Chrome bar */
.hero__demo-chrome { background:#f1f5f9; border-bottom:1px solid var(--border); padding:8px 14px; display:flex; align-items:center; gap:10px; }
.demo-dots { display:flex; gap:5px; flex-shrink:0; }
.demo-dots span { width:10px; height:10px; border-radius:50%; }
.demo-dots span:nth-child(1){background:#fc5c57;} .demo-dots span:nth-child(2){background:#fdbc40;} .demo-dots span:nth-child(3){background:#33c748;}
.demo-url { flex:1; background:#fff; border:1px solid var(--border-2); border-radius:5px; padding:3px 10px; font-size:.68rem; color:var(--text-muted); text-align:center; font-family:monospace; overflow:hidden; white-space:nowrap; }
.demo-live { font-size:.58rem; font-weight:700; color:#16a34a; background:#dcfce7; border:1px solid #bbf7d0; padding:2px 7px; border-radius:4px; white-space:nowrap; }

/* Screen + phases */
.hero__demo-screen { position:relative; height:252px; overflow:hidden; background:#f8fafc; }
.demo-phase { position:absolute; inset:0; opacity:0; }
.demo-phase--excel   { animation:phaseExcel   10s linear infinite; }
.demo-phase--process { animation:phaseProcess 10s linear infinite; }
.demo-phase--app     { animation:phaseApp     10s linear infinite; }
@keyframes phaseExcel   { 0%,32%{opacity:1} 42%,100%{opacity:0} }
@keyframes phaseProcess { 0%,34%{opacity:0} 42%,58%{opacity:1} 66%,100%{opacity:0} }
@keyframes phaseApp     { 0%,60%{opacity:0} 68%,88%{opacity:1} 98%,100%{opacity:0} }

/* Phase 1: Excel */
.demo-excel { height:100%; display:flex; flex-direction:column; }
.demo-excel__bar { background:#217346; height:26px; display:flex; align-items:center; gap:8px; padding:0 12px; flex-shrink:0; }
.demo-excel__bar-logo { font-size:.72rem; font-weight:900; color:#fff; letter-spacing:.5px; }
.demo-excel__bar-tabs { display:flex; gap:2px; }
.demo-excel__bar-tab { font-size:.58rem; color:rgba(255,255,255,.75); background:rgba(0,0,0,.18); padding:2px 9px; border-radius:3px 3px 0 0; }
.demo-excel__bar-tab.act { background:rgba(0,0,0,.35); color:#fff; }
.demo-excel__fbar { height:18px; background:#f5f5f5; border-bottom:1px solid #ddd; display:flex; align-items:center; padding:0 8px; gap:6px; flex-shrink:0; }
.demo-excel__cref { font-size:.6rem; color:#555; font-family:monospace; min-width:20px; }
.demo-excel__fx { font-size:.6rem; color:#666; font-family:monospace; }
.demo-excel__grid { flex:1; overflow:hidden; }
.demo-excel__ch-row { display:grid; grid-template-columns:26px repeat(5,1fr); background:#e8e8e8; border-bottom:1px solid #ccc; }
.demo-excel__ch { font-size:.58rem; color:#555; text-align:center; padding:2px 4px; border-right:1px solid #ccc; font-family:system-ui; }
.demo-excel__row { display:grid; grid-template-columns:26px repeat(5,1fr); border-bottom:1px solid #ebebeb; }
.demo-excel__row:nth-child(even){background:#f9f9f9;}
.demo-excel__row.sel{background:#cce8ff;}
.demo-excel__row.err-row{background:#fff0f0;}
.demo-excel__rn { font-size:.58rem; color:#999; text-align:center; padding:3px 4px; border-right:1px solid #ddd; background:#f0f0f0; font-family:monospace; }
.demo-excel__c { font-size:.6rem; padding:3px 5px; border-right:1px solid #ebebeb; font-family:monospace; color:#222; white-space:nowrap; overflow:hidden; }
.demo-excel__c.num{text-align:right;color:#1f3864;}
.demo-excel__c.ok{color:#16a34a;font-weight:700;}
.demo-excel__c.bad{color:#dc2626;font-weight:700;}
.demo-excel__c.pend{color:#d97706;}
.demo-excel__c.pos{color:#16a34a;}
.demo-excel__c.neg{color:#dc2626;}
.demo-excel__c.hdr{font-weight:700;}

/* Phase 2: Processing */
.demo-process { height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; background:linear-gradient(135deg,#f8fafc,#eff6ff); padding:0 32px; }
.demo-process__logo img { height:36px; width:auto; display:block; }
.demo-process__label { font-size:.76rem; color:var(--text-muted); }
.demo-process__track { width:200px; height:4px; background:var(--border); border-radius:4px; overflow:hidden; }
.demo-process__fill { height:100%; background:linear-gradient(90deg,var(--navy),var(--accent)); border-radius:4px; animation:fillBar 10s linear infinite; }
@keyframes fillBar { 0%,34%{width:0%} 58%{width:100%} 100%{width:100%} }
.demo-process__steps { display:flex; flex-direction:column; gap:4px; }
.demo-process__step { font-size:.66rem; color:var(--text-muted); display:flex; align-items:center; gap:6px; }
.demo-process__step.done::before{content:'✓';color:#16a34a;font-weight:700;}
.demo-process__step.run::before{content:'⟳';color:var(--accent);font-weight:700;display:inline-block;animation:spin .9s linear infinite;}
@keyframes spin{to{transform:rotate(360deg)}}

/* Phase 3: App dashboard */
.demo-app { height:100%; display:flex; flex-direction:column; }
.demo-app__topbar { background:var(--navy); height:30px; display:flex; align-items:center; padding:0 14px; gap:12px; flex-shrink:0; }
.demo-app__topbar-logo { display:flex; align-items:center; }
.demo-app__topbar-logo img { height:14px; width:auto; display:block; }
.demo-app__topbar-nav { display:flex; gap:14px; margin-left:auto; }
.demo-app__topbar-nav span { font-size:.58rem; color:rgba(255,255,255,.45); }
.demo-app__topbar-nav span.on { color:#fff; }
.demo-app__body { flex:1; padding:12px 14px 10px; background:#f8fafc; display:flex; flex-direction:column; gap:10px; overflow:hidden; }
.demo-app__kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:7px; flex-shrink:0; }
.demo-app__kpi { background:#fff; border:1px solid var(--border); border-radius:8px; padding:8px 10px 7px; }
.demo-app__kpi-lbl { font-size:.55rem; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.04em; }
.demo-app__kpi-val { font-size:1rem; font-weight:800; color:var(--navy); margin-top:2px; line-height:1; }
.demo-app__kpi-val.warn { color:var(--accent); }
.demo-app__kpi-delta { font-size:.58rem; font-weight:600; color:#16a34a; margin-top:2px; }
.demo-app__kpi-delta.neg { color:#dc2626; }
.demo-app__chart { flex:1; display:flex; flex-direction:column; gap:5px; min-height:0; }
.demo-app__chart-title { font-size:.62rem; font-weight:700; color:var(--navy); flex-shrink:0; }
.demo-app__bars { flex:1; display:flex; align-items:flex-end; gap:5px; min-height:0; }
.demo-app__bw { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; }
.demo-app__b { width:100%; border-radius:3px 3px 0 0; flex-shrink:0; }
.demo-app__b.ac{background:var(--accent);}
.demo-app__b.dg{background:var(--navy);opacity:.22;}
.demo-app__bl { font-size:.52rem; color:var(--text-xmuted); }

/* Demo footer */
.hero__demo-footer { border-top:1px solid var(--border); padding:10px 14px; display:flex; align-items:center; justify-content:space-between; background:#fff; flex-shrink:0; }
.demo-presenter { display:flex; align-items:center; gap:9px; }
.demo-presenter-logo { height:22px; width:auto; display:block; }
.demo-footer-right { display:flex; align-items:center; gap:8px; }
.demo-time { font-size:.66rem; color:var(--text-muted); font-family:monospace; }
.demo-play { width:28px; height:28px; border-radius:50%; background:var(--accent); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:transform .15s,background .15s; border:none; padding:0; }
.demo-play:hover{transform:scale(1.1);background:var(--accent-hover);}
.demo-play svg{width:9px;height:10px;fill:#fff;margin-left:1px;}

/* Floating badge on panel */
.hero__float-badge { position: absolute; top: -18px; right: 24px; background: var(--navy); color: #fff; padding: 8px 16px; border-radius: 100px; font-size: .76rem; font-weight: 700; display: flex; align-items: center; gap: 7px; box-shadow: var(--shadow); }
.hero__float-badge span { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: blink 1.8s ease-in-out infinite; }

/* ===== Tech Bar ===== */
.techbar { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 24px; }
.techbar__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.techbar__lbl { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-xmuted); white-space: nowrap; }
.techbar__items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.tech-pill { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--text-muted); padding: 5px 12px; border-radius: 100px; border: 1px solid var(--border); background: var(--bg); transition: all var(--trans); }
.tech-pill:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-light); }
.tech-pill svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ===== Section shared ===== */
section { padding: 96px 24px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .sub { max-width: 560px; margin: 0 auto; }

/* ===== About ===== */
.about { background: var(--bg); }
.about__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__tl { margin-top: 28px; }
.tl-item { display: flex; gap: 16px; padding-bottom: 26px; position: relative; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 33px; bottom: 0; width: 1px; background: linear-gradient(var(--border), transparent); }
.tl-dot { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--accent-border); background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; color: var(--accent); flex-shrink: 0; }
.tl-year { font-size: .68rem; font-weight: 700; color: var(--accent); letter-spacing: .1em; margin-bottom: 3px; }
.tl-text { font-size: .875rem; color: var(--text-muted); line-height: 1.55; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: all var(--trans); }
.stat-card:hover { box-shadow: var(--shadow); border-color: var(--accent-border); }
.stat-card__num { font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 6px; }
.stat-card__num em { color: var(--accent); font-style: normal; }
.stat-card__lbl { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }

/* ===== Services ===== */
.services { background: var(--bg-alt); }
.svc-grid { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.svc-card { flex: 0 0 calc(33.333% - 14px); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--trans); }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background var(--trans); border-radius: var(--radius) var(--radius) 0 0; }
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--accent-border); }
.svc-card:hover::before { background: linear-gradient(90deg, var(--accent), var(--accent-hover)); }
.svc-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--accent-light); border: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: all var(--trans); }
.svc-card:hover .svc-icon { background: var(--accent); border-color: var(--accent); }
.svc-card:hover .svc-icon svg { stroke: #fff; }
.svc-icon svg { width: 21px; height: 21px; stroke: var(--accent); transition: stroke var(--trans); }
.svc-num { position: absolute; top: 24px; right: 22px; font-size: .66rem; font-weight: 700; color: var(--text-xmuted); letter-spacing: .08em; }
.svc-title { font-size: .975rem; font-weight: 700; color: var(--text); margin-bottom: 9px; line-height: 1.3; }
.svc-desc { font-size: .845rem; color: var(--text-muted); line-height: 1.65; }
.svc-tag { display: inline-flex; margin-top: 14px; padding: 3px 9px; border-radius: 100px; font-size: .67rem; font-weight: 700; background: var(--navy-light); color: var(--navy); letter-spacing: .04em; border: 1px solid rgba(30,58,95,.15); }

/* ===== Why ===== */
.why { background: var(--bg); }
.why-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--trans); }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent-border); }
.why-icon { width: 58px; height: 58px; border-radius: 50%; background: var(--accent-light); border: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all var(--trans); }
.why-card:hover .why-icon { background: var(--accent); border-color: var(--accent); }
.why-card:hover .why-icon svg { stroke: #fff; }
.why-icon svg { width: 25px; height: 25px; stroke: var(--accent); transition: stroke var(--trans); }
.why-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.why-desc { font-size: .845rem; color: var(--text-muted); line-height: 1.65; }

/* ===== Process ===== */
.process { background: var(--bg-alt); }
.proc-steps { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.proc-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px); height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-border), var(--accent)); }
.proc-step { text-align: center; padding: 0 12px; }
.proc-num { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--accent); background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--accent); margin: 0 auto 16px; position: relative; z-index: 1; box-shadow: var(--shadow-sm); }
.proc-title { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.proc-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* ===== CTA Banner ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, #122848 100%); padding: 72px 24px; }
.cta-banner__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -.02em; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.65; }
.cta-banner .btn-primary { font-size: 1rem; padding: 15px 32px; }

/* ===== Contact ===== */
.contact { background: var(--bg); }
.contact__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.cinfo-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--accent-light); border: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-icon svg { width: 17px; height: 17px; stroke: var(--accent); }
.cinfo-body { font-size: .875rem; color: var(--text-muted); }
.cinfo-body strong { display: block; font-size: .76rem; font-weight: 700; color: var(--text); margin-bottom: 2px; letter-spacing: .03em; }
.map-box { margin-top: 24px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.map-box p { color: var(--text-muted); font-size: .875rem; }
.map-box a { color: var(--accent); font-size: .82rem; display: inline-block; margin-top: 6px; }
.cform { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.cform h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 16px; }
.flbl { display: block; font-size: .76rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; letter-spacing: .03em; }
.flbl em { color: var(--accent); font-style: normal; }
.fctl { width: 100%; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 13px; font-size: .875rem; color: var(--text); font-family: var(--font); outline: none; transition: border-color var(--trans); }
.fctl::placeholder { color: var(--text-xmuted); }
.fctl:focus { border-color: var(--accent); background: var(--bg); }
textarea.fctl { resize: vertical; min-height: 108px; }
.frodo { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.frodo input[type=checkbox] { width: 15px; height: 15px; margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.frodo label { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }
.frodo a { color: var(--accent); }
.fhoney { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.fsubmit { width: 100%; padding: 13px; background: var(--accent); color: #fff; border-radius: var(--radius-sm); font-weight: 700; font-size: .93rem; font-family: var(--font); transition: all var(--trans); }
.fsubmit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,22,28,.3); }
.fsubmit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.fsuccess { display: none; text-align: center; padding: 16px 0; }
.fsuccess svg { stroke: #16a34a; width: 48px; height: 48px; margin: 0 auto 12px; }
.fsuccess h3 { font-size: 1rem; margin-bottom: 6px; }
.fsuccess p { font-size: .875rem; color: var(--text-muted); }

/* ===== Footer ===== */
.footer { background: linear-gradient(135deg, var(--navy) 0%, #122848 100%); padding: 52px 24px 28px; }
.footer__top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer__logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer__logo svg { height: 36px; width: auto; display: block; }
.footer__tagline { font-size: .845rem; color: rgba(255,255,255,.72); line-height: 1.65; max-width: 280px; margin-bottom: 18px; }
.footer__addr { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.85; }
.fcol-title { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flinks a { font-size: .845rem; color: rgba(255,255,255,.72); transition: color var(--trans); }
.flinks a:hover { color: #fff; }
.footer__bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__copy { font-size: .76rem; color: rgba(255,255,255,.55); }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { font-size: .76rem; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer__legal a:hover { color: var(--accent); }

/* ===== Scroll Animations ===== */
.fu { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .svc-card { flex: 0 0 calc(50% - 10px); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proc-steps::before { display: none; }
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 44px; }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__menu.open { display: flex; flex-direction: column; gap: 18px; position: fixed; top: 68px; left: 0; right: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); padding: 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .svc-card { flex: 0 0 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
  .cform { padding: 24px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about__stats { grid-template-columns: 1fr; }
}
