/* ═══════════════════════════════════════════════════
   CHEFASSIST TEMPS — Website CSS
   Mobile-first · Navy #1B3A6B · Green #2EAA6E
   Fonts: Syne (headings) · DM Sans (body)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3A6B;
  --navy-d:     #0F2246;
  --navy-m:     #254d8e;
  --navy-tint:  #EEF3FB;
  --green:      #2EAA6E;
  --green-d:    #1d8a55;
  --green-l:    #3ec47e;
  --green-tint: #E5F5EE;
  --white:      #ffffff;
  --bg:         #F7F9FC;
  --border:     #E4EAF2;
  --text:       #0d1b2e;
  --text-2:     #4a6080;
  --text-3:     #8a9ab0;
  --shadow-s:   0 2px 12px rgba(27,58,107,.07);
  --shadow-m:   0 8px 32px rgba(27,58,107,.10);
  --shadow-l:   0 20px 60px rgba(27,58,107,.14);
  --shadow-xl:  0 32px 80px rgba(27,58,107,.18);
  --r:          10px;
  --r-l:        18px;
  --r-xl:       24px;
  --pill:       9999px;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--white);
  overflow-x: hidden; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ─── UTILS ─────────────────────────────────── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
@media(min-width:640px)  { .wrap { padding: 0 32px; } }
@media(min-width:1024px) { .wrap { padding: 0 48px; } }

.sec { padding: 72px 0; }
@media(min-width:768px) { .sec { padding: 100px 0; } }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.chip::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 50px); font-weight: 800;
  color: var(--navy); line-height: 1.1;
}
h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.2; }
h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
p  { color: var(--text-2); line-height: 1.75; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--pill); border: none;
  cursor: pointer; transition: all .22s ease; white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 20px rgba(46,170,110,.3); }
.btn-primary:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,170,110,.4); }
.btn-navy    { background: var(--navy); color: #fff; box-shadow: 0 6px 20px rgba(27,58,107,.25); }
.btn-navy:hover { background: var(--navy-d); transform: translateY(-2px); }
.btn-ghost   { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.55); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { background: var(--navy-tint); border-color: var(--navy); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn .arr { display: inline-block; transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }

/* ─── NAVBAR ─────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); display: flex; align-items: center;
  padding: 0 20px; transition: all .35s ease;
}
@media(min-width:640px) { #nav { padding: 0 32px; } }
@media(min-width:1024px) { #nav { padding: 0 48px; } }

#nav.nav-top    { background: transparent; }
#nav.nav-solid  { background: rgba(255,255,255,.97); backdrop-filter: blur(20px) saturate(160%); box-shadow: 0 1px 0 var(--border), var(--shadow-s); }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; z-index: 10; }
.nav-logo img { height: 42px; width: auto; transition: filter .35s; }
@media(min-width:640px) { .nav-logo img { height: 46px; } }

/* Logo: white on dark hero, color on white nav */
#nav.nav-top .nav-logo img    { filter: brightness(0) invert(1); }
#nav.nav-solid .nav-logo img  { filter: none; }
/* Keep color logo when mobile menu is open */
#nav.menu-open .nav-logo img  { filter: none; }

.nav-center { flex: 1; display: none; justify-content: center; }
@media(min-width:960px) { .nav-center { display: flex; } }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; padding: 8px 14px;
  border-radius: var(--r); transition: all .18s;
}
#nav.nav-top   .nav-links a { color: rgba(255,255,255,.82); }
#nav.nav-top   .nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
#nav.nav-solid .nav-links a { color: var(--text-2); }
#nav.nav-solid .nav-links a:hover { color: var(--navy); background: var(--navy-tint); }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav-cta-btn {
  font-size: 13.5px; font-weight: 700;
  padding: 10px 20px; border-radius: var(--pill);
  background: var(--green); color: #fff; border: none;
  cursor: pointer; transition: all .2s; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(46,170,110,.3);
}
.nav-cta-btn:hover { background: var(--green-d); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; border: none; background: none;
  border-radius: var(--r); transition: background .2s; z-index: 10;
}
@media(min-width:960px) { .hamburger { display: none; } }
.hamburger:hover { background: rgba(255,255,255,.1); }
#nav.nav-solid .hamburger:hover { background: var(--navy-tint); }

.ham-line {
  width: 22px; height: 2px; border-radius: 2px;
  transition: all .3s ease; transform-origin: center;
}
#nav.nav-top  .ham-line { background: #fff; }
#nav.nav-solid .ham-line { background: var(--navy); }
#nav.menu-open .ham-line { background: var(--navy); }

#nav.menu-open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.menu-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav.menu-open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 800;
  background: #fff; padding: 0 20px 32px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav-links { list-style: none; padding-top: 20px; border-top: 1px solid var(--border); }
.mobile-nav-links li a {
  display: block; font-size: 18px; font-weight: 700;
  font-family: 'Syne', sans-serif; color: var(--navy);
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-links li a:hover { color: var(--green); }
.mobile-nav-links li:last-child a { border-bottom: none; }

.mobile-menu-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-footer .btn { width: 100%; justify-content: center; }

.mobile-admin-link {
  text-align: center; font-size: 13px; color: var(--text-3);
  margin-top: 8px; display: block;
}

/* Overlay for mobile menu */
.nav-overlay {
  position: fixed; inset: 0; z-index: 799;
  background: rgba(15,34,70,.4); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* ─── HERO ───────────────────────────────────── */
#hero {
  min-height: 100svh; padding-top: var(--nav-h);
  background: linear-gradient(148deg, var(--navy-d) 0%, var(--navy) 55%, #1e5298 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-glow-1 {
  position: absolute; width: 600px; height: 600px;
  top: -180px; right: -120px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(46,170,110,.13), transparent 70%);
  filter: blur(60px);
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px;
  bottom: -100px; left: -80px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(46,100,200,.1), transparent 70%);
  filter: blur(60px);
}

.hero-inner {
  position: relative; z-index: 1; width: 100%;
  max-width: 1160px; margin: 0 auto;
  padding: 60px 20px 80px;
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media(min-width:640px)  { .hero-inner { padding: 72px 32px 80px; } }
@media(min-width:1024px) { .hero-inner { grid-template-columns: 1fr 420px; gap: 64px; padding: 80px 48px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,170,110,.15); border: 1px solid rgba(46,170,110,.3);
  color: var(--green-l); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 15px; border-radius: var(--pill); margin-bottom: 22px;
}
.bdot { width: 6px; height: 6px; background: var(--green-l); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.5)} }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 8vw, 74px); font-weight: 800;
  color: #fff; line-height: 1.06; letter-spacing: -.02em; margin-bottom: 18px;
}
.hero h1 .accent { color: var(--green-l); }
.hero-sub { font-size: clamp(15px, 2.5vw, 17px); color: rgba(255,255,255,.62); line-height: 1.75; max-width: 520px; margin-bottom: 32px; }

.hero-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
@media(min-width:480px) { .hero-btns { flex-direction: row; } }

.hero-stats { display: flex; gap: 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
@media(min-width:480px) { .hero-stats { gap: 36px; } }
.hs-n { font-family: 'Syne', sans-serif; font-size: clamp(26px,5vw,34px); font-weight: 800; color: var(--green-l); line-height: 1; display: block; }
.hs-l { font-size: 12px; color: rgba(255,255,255,.42); font-weight: 500; margin-top: 4px; }

/* Hero right — cards panel (desktop only) */
.hero-cards { display: none; flex-direction: column; gap: 12px; }
@media(min-width:1024px) { .hero-cards { display: flex; } }
.hcard {
  background: rgba(255,255,255,.06); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-l);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  transition: all .3s;
}
.hcard:hover { background: rgba(255,255,255,.1); transform: translateX(5px); }
.hcard-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hci-g { background: rgba(46,170,110,.2); }
.hci-b { background: rgba(255,255,255,.09); }
.hcard-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hcard-sub  { font-size: 12px; color: rgba(255,255,255,.45); }
.hcard-pill { margin-left: auto; flex-shrink: 0; font-size: 10px; font-weight: 700; letter-spacing: .05em; padding: 4px 10px; border-radius: var(--pill); }
.pill-g { background: rgba(46,170,110,.3); color: var(--green-l); }
.pill-b { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
.pill-o { background: rgba(245,158,11,.25); color: #fbbf24; }

/* ─── TICKER ─────────────────────────────────── */
.ticker { background: var(--green); overflow: hidden; padding: 11px 0; }
.ticker-inner { display: flex; animation: tick 30s linear infinite; white-space: nowrap; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tick-item { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.88); padding: 0 20px; flex-shrink: 0; }
.tick-dot  { color: rgba(255,255,255,.35); flex-shrink: 0; }

/* ─── ABOUT ──────────────────────────────────── */
#about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media(min-width:900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.about-mosaic { position: relative; height: 360px; display: block; }
@media(min-width:640px) { .about-mosaic { height: 440px; } }
@media(min-width:900px) { .about-mosaic { height: 500px; } }

.mosaic-a {
  position: absolute; top: 0; left: 0; width: 72%; height: 76%;
  object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--navy-d), var(--navy-m));
}
.mosaic-b {
  position: absolute; bottom: 0; right: 0; width: 54%; height: 52%;
  object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-l);
  border: 3px solid #fff;
  background: linear-gradient(135deg, var(--green-d), var(--green));
}
.mosaic-ph-a, .mosaic-ph-b {
  position: absolute; display: flex; align-items: center; justify-content: center; font-size: 52px;
  border-radius: var(--r-xl);
}
.mosaic-ph-a { top: 0; left: 0; width: 72%; height: 76%; background: linear-gradient(135deg, var(--navy-d), var(--navy-m)); }
.mosaic-ph-b { bottom: 0; right: 0; width: 54%; height: 52%; background: linear-gradient(135deg, var(--green-d), var(--green)); border: 3px solid #fff; font-size: 40px; }

.mosaic-badge {
  position: absolute; bottom: 44px; left: -8px; z-index: 2;
  background: #fff; border-radius: var(--r-l); padding: 12px 18px;
  box-shadow: var(--shadow-l); display: flex; align-items: center; gap: 10px;
}
@media(min-width:640px) { .mosaic-badge { bottom: 52px; left: -14px; } }
.mb-icon { width: 38px; height: 38px; background: var(--green-tint); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.mb-num  { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1; }
.mb-lbl  { font-size: 11px; color: var(--text-3); margin-top: 2px; }

.about-feats { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.afeat {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px;
  transition: all .22s;
}
.afeat:hover { border-color: var(--green); box-shadow: var(--shadow-s); transform: translateX(3px); }
.afeat-ic { width: 36px; height: 36px; border-radius: 9px; background: var(--green-tint); color: var(--green-d); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.afeat-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.afeat-desc  { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* ─── STATS BAND ─────────────────────────────── */
#stats-band { background: var(--navy); }
.stats-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}
@media(min-width:640px) { .stats-inner { grid-template-columns: repeat(4,1fr); } }
.stat-cell {
  padding: 40px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
@media(min-width:640px) { .stat-cell { padding: 52px 20px; border-bottom: none; } }
.stat-cell:last-child, .stat-cell:nth-child(2) { border-right: none; }
@media(min-width:640px) { .stat-cell:nth-child(2) { border-right: 1px solid rgba(255,255,255,.07); } .stat-cell:last-child { border-right: none; } }
.stat-cell:hover { background: rgba(255,255,255,.03); }
.sn { font-family: 'Syne', sans-serif; font-size: clamp(36px,6vw,52px); font-weight: 800; color: var(--green-l); line-height: 1; display: block; margin-bottom: 8px; }
.sl { font-size: 13px; color: rgba(255,255,255,.44); font-weight: 500; }

/* ─── SERVICES ───────────────────────────────── */
#services { background: #fff; }
.svc-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
@media(min-width:768px) { .svc-head { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 32px; } }
.svc-head p { max-width: 340px; font-size: 15px; }

.svc-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media(min-width:640px)  { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }

.svc-card {
  border-radius: var(--r-xl); overflow: hidden; background: #fff;
  border: 1.5px solid var(--border); transition: all .32s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover { border-color: var(--green); box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.svc-img-wrap { height: 180px; overflow: hidden; position: relative; background: var(--navy-d); }
@media(min-width:640px) { .svc-img-wrap { height: 196px; } }
.svc-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.svc-real-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-real-img { transform: scale(1.05); }
.svc-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(15,34,70,.5)); }
.svc-body { padding: 22px; }
@media(min-width:640px) { .svc-body { padding: 26px; } }
.svc-icon { width: 46px; height: 46px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.si-navy  { background: var(--navy-tint); }
.si-green { background: var(--green-tint); }
.svc-body h3 { font-size: 18px; margin-bottom: 8px; }
.svc-body p  { font-size: 13.5px; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stag { font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 4px 10px; border-radius: var(--pill); }
.stag-n { background: var(--navy-tint); color: var(--navy); }
.stag-g { background: var(--green-tint); color: var(--green-d); }

/* ─── PROCESS ────────────────────────────────── */
#process { background: var(--bg); }
.proc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px;
}
@media(min-width:768px) { .proc-grid { grid-template-columns: repeat(4,1fr); gap: 32px; } }
.proc-step { text-align: center; }
.proc-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); color: #fff; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 8px 24px rgba(27,58,107,.22); transition: transform .22s;
}
.proc-step:hover .proc-icon { transform: scale(1.1); }
.proc-step h4 { margin-bottom: 8px; }
.proc-step p  { font-size: 13px; }

/* ─── WHY ────────────────────────────────────── */
#why {
  background: linear-gradient(145deg, var(--navy-d) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
#why::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(46,170,110,.07), transparent);
}
#why .chip        { color: var(--green-l); }
#why .chip::before { background: var(--green-l); }
#why h2           { color: #fff; }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 44px; position: relative;
}
@media(min-width:640px)  { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card {
  background: rgba(255,255,255,.04); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-xl);
  padding: 26px; transition: all .28s;
}
.why-card:hover { background: rgba(255,255,255,.08); border-color: rgba(46,170,110,.25); transform: translateY(-4px); }
.wc-num  { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: rgba(255,255,255,.06); margin-bottom: 14px; }
.wc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(46,170,110,.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.why-card h4 { font-family: 'Syne', sans-serif; font-size: 16px; color: #fff; margin-bottom: 8px; }
.why-card p  { font-size: 13.5px; color: rgba(255,255,255,.46); line-height: 1.65; }

/* ─── DUAL CTA ───────────────────────────────── */
#dual-cta { display: grid; grid-template-columns: 1fr; }
@media(min-width:768px) { #dual-cta { grid-template-columns: 1fr 1fr; } }
.cta-pane { padding: 64px 24px; position: relative; overflow: hidden; }
@media(min-width:640px)  { .cta-pane { padding: 72px 48px; } }
@media(min-width:1024px) { .cta-pane { padding: 96px 72px; } }
.cta-left  { background: var(--navy); }
.cta-right { background: var(--green-tint); }
.cta-deco  { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px); }
.cta-left  .cta-deco { width: 280px; height: 280px; top: -80px; right: -80px; background: rgba(46,170,110,.08); }
.cta-right .cta-deco { width: 280px; height: 280px; bottom: -80px; left: -80px; background: rgba(27,58,107,.07); }
.cta-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.cta-left  .cta-label { color: var(--green-l); }
.cta-right .cta-label { color: var(--green-d); }
.cta-left  h2 { color: #fff; margin-bottom: 14px; }
.cta-right h2 { color: var(--navy); margin-bottom: 14px; }
.cta-body { font-size: 15px; line-height: 1.72; margin-bottom: 28px; }
.cta-left  .cta-body { color: rgba(255,255,255,.58); }
.cta-right .cta-body { color: var(--text-2); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 4px 16px rgba(255,255,255,.12); }
.btn-white:hover { background: var(--green-tint); transform: translateY(-2px); }

/* ─── TESTIMONIALS ───────────────────────────── */
#testi { background: #fff; }
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px;
}
@media(min-width:640px)  { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
.tcard {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px; transition: all .28s;
}
.tcard:hover { box-shadow: var(--shadow-m); border-color: var(--green); }
.tstars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }
.ttext  { font-size: 14px; color: var(--text); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.tauthor { display: flex; align-items: center; gap: 10px; }
.tav { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-tint); color: var(--navy); font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tname { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.trole { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* ─── CONTACT ────────────────────────────────── */
#contact { background: var(--bg); }
.contact-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 44px;
}
@media(min-width:900px) { .contact-layout { grid-template-columns: 1fr 1.3fr; gap: 56px; } }
.cinfo-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cinfo-item:first-of-type { border-top: 1px solid var(--border); }
.cinfo-ic {
  width: 42px; height: 42px; border-radius: var(--r); flex-shrink: 0;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.cinfo-label { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.cinfo-val   { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.cinfo-val a { color: var(--green-d); }
.cinfo-val a:hover { text-decoration: underline; }

.contact-form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow-s);
}
@media(min-width:640px) { .contact-form-card { padding: 36px; } }
.form-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media(min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.fg { margin-bottom: 14px; }
.fl { display: block; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.fi {
  width: 100%; padding: 11px 13px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.fi:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,170,110,.1); background: #fff; }
.fi-ta    { min-height: 96px; resize: vertical; }
.fi-sel   { cursor: pointer; }
.f-submit {
  width: 100%; padding: 14px; font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  background: var(--navy); color: #fff; border: none;
  border-radius: var(--pill); cursor: pointer; margin-top: 6px;
  transition: all .22s;
}
.f-submit:hover  { background: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,170,110,.28); }
.f-submit.sent   { background: var(--green); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--navy-d);
  border-top: 3px solid var(--green);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding: 56px 0 40px;
}
@media(min-width:768px)  { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; } }
@media(min-width:1024px) { .footer-grid { gap: 48px; } }

.footer-logo { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.32); line-height: 1.7; max-width: 240px; margin-bottom: 18px; }
.socials { display: flex; gap: 8px; }
.soc { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.44); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.soc:hover { background: var(--green); color: #fff; border-color: var(--green); }
.fc-title { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-l); margin-bottom: 14px; }
.fc-list  { list-style: none; }
.fc-list li { margin-bottom: 9px; }
.fc-list a, .fc-list span { font-size: 13.5px; color: rgba(255,255,255,.38); transition: color .18s; }
.fc-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; flex-direction: column; gap: 6px;
}
@media(min-width:640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.fcopy { font-size: 12px; color: rgba(255,255,255,.2); }

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── SCROLL-TO-TOP ──────────────────────────── */
#back-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff; border: none;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(46,170,110,.35);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .3s;
}
#back-top.show { opacity: 1; pointer-events: all; transform: none; }
#back-top:hover { background: var(--green-d); transform: translateY(-2px); }

/* ─── UI IMPROVEMENTS ────────────────────────── */

/* Hero accent shimmer */
.hero h1 .accent {
  background: linear-gradient(90deg, var(--green-l) 0%, #a8ffda 50%, var(--green-l) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* Nav active link indicator */
.nav-links a { position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; border-radius: 2px; background: var(--green);
}
#nav.nav-top .nav-links a.active::after { background: var(--green-l); }

/* Service cards — left accent on hover */
.svc-card { border-left: 3px solid transparent; transition: all .32s cubic-bezier(.4,0,.2,1); }
.svc-card:hover { border-left-color: var(--green); border-color: var(--green); }

/* Why cards — left accent on hover */
.why-card { border-left: 3px solid transparent; }
.why-card:hover { border-left-color: var(--green-l); }

/* Testimonial cards — quote decoration */
.tcard { position: relative; overflow: hidden; }
.tcard::before {
  content: '\201C'; position: absolute; top: -10px; right: 18px;
  font-size: 96px; font-family: Georgia, serif; color: var(--green);
  opacity: .07; line-height: 1; pointer-events: none;
}
.tcard:hover { box-shadow: var(--shadow-m); border-color: var(--green); transform: translateY(-3px); }

/* Process — connector line between steps */
@media(min-width:768px) {
  .proc-grid { position: relative; }
  .proc-grid::before {
    content: ''; position: absolute;
    top: 30px; left: calc(12.5% + 10px); right: calc(12.5% + 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--green) 100%);
    opacity: .18; z-index: 0;
  }
  .proc-step { position: relative; z-index: 1; }
}

/* Process icon — green ring on hover */
.proc-icon { border: 2px solid transparent; transition: transform .22s, border-color .22s, box-shadow .22s; }
.proc-step:hover .proc-icon {
  border-color: var(--green-l);
  box-shadow: 0 0 0 6px rgba(46,170,110,.12), 0 8px 24px rgba(27,58,107,.22);
}

/* Contact form — polished submit */
.f-submit {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  letter-spacing: .03em;
}
.f-submit:hover {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 100%);
}

/* Stats band — number glow */
.sn { text-shadow: 0 0 32px rgba(62,196,126,.25); }

/* Footer social icons — better sizing */
.soc { width: 36px; height: 36px; font-size: 14px; }

/* Smooth section transitions */
.sec { position: relative; }

/* About feature items — stronger hover */
.afeat:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(46,170,110,.1);
  transform: translateX(5px);
}

/* Chip — subtle background */
.chip {
  background: rgba(46,170,110,.08);
  padding: 5px 12px 5px 8px;
  border-radius: var(--pill);
}
#why .chip { background: rgba(46,170,110,.12); }
