/* =========================================================
   NANO4C TECHNOLOGIES — CORE DESIGN SYSTEM
   Brand: pink → purple → blue gradient, deep navy ink, Poppins
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root{
  /* --- brand palette (from brand board) --- */
  --pink:        #E918C5;
  --pink-2:      #F0389E;
  --purple:      #782CBF;
  --indigo:      #3D12BB;
  --blue:        #0077FF;
  --ink:         #0D1026;
  --ink-soft:    #171A34;
  --mist:        #F5F7FA;
  --white:       #FFFFFF;

  --grad-brand:  linear-gradient(100deg, var(--pink) 0%, var(--purple) 45%, var(--blue) 100%);
  --grad-brand-2:linear-gradient(135deg, var(--pink-2) 0%, var(--indigo) 60%, var(--blue) 100%);
  --grad-ink:    linear-gradient(180deg, #0D1026 0%, #171A34 100%);
  --grad-mesh:   radial-gradient(circle at 15% 20%, rgba(233,24,197,.35), transparent 40%),
                 radial-gradient(circle at 85% 15%, rgba(0,119,255,.30), transparent 45%),
                 radial-gradient(circle at 50% 90%, rgba(120,44,191,.35), transparent 50%);

  --text-1:      #0D1026;
  --text-2:      #4B4F6B;
  --text-3:      #8A8EA8;
  --line:        #E6E8F0;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 10px rgba(13,16,38,.06);
  --shadow-md:   0 12px 32px rgba(13,16,38,.10);
  --shadow-lg:   0 24px 60px rgba(13,16,38,.16);
  --shadow-glow: 0 20px 60px rgba(120,44,191,.25);

  --container:   1240px;
  --ff-display:  'Poppins', sans-serif;
  --ff-body:     'Poppins', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--text-1);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,h5{ font-family: var(--ff-display); margin:0; line-height:1.15; letter-spacing:-.01em; color: var(--ink); }
p{ margin:0; color: var(--text-2); line-height:1.7; }
section{ position:relative; }

.container{ max-width: var(--container); margin:0 auto; padding: 0 32px; }
.container-wide{ max-width: 1400px; margin:0 auto; padding: 0 32px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color: var(--purple);
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(120,44,191,.25);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(233,24,197,.08), rgba(0,119,255,.08));
}
.eyebrow::before{
  content:''; width:6px; height:6px; border-radius:50%; background: var(--grad-brand);
  box-shadow: 0 0 0 4px rgba(233,24,197,.15);
}
.eyebrow.light{ color:#fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }

.grad-text{
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-weight:600; font-size:15px; letter-spacing:.01em;
  border:none; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; transition: transform .3s; }
.btn-primary{ background: var(--grad-brand); color:#fff; box-shadow: 0 10px 30px rgba(233,24,197,.28); }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px rgba(233,24,197,.4); }
.btn-primary:hover svg{ transform: translateX(3px); }
.btn-ghost{ background: transparent; color:#fff; border:1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover{ background: rgba(255,255,255,.12); border-color:#fff; transform: translateY(-3px); }
.btn-outline{ background:#fff; color: var(--ink); border:1.5px solid var(--line); }
.btn-outline:hover{ border-color: var(--purple); color: var(--purple); transform: translateY(-3px); }
.btn-sm{ padding: 11px 22px; font-size:13.5px; }
.btn-block{ width:100%; }

/* ================= HEADER / NAV ================= */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  padding: 18px 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(13,16,38,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(13,16,38,.25);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand svg{ height:34px; width:auto; }
.brand-word{ font-family: var(--ff-display); font-weight:700; font-size:21px; color:#fff; letter-spacing:-.01em; }
.brand-word b{ font-weight:800; background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.brand-tag{ display:block; font-size:9px; letter-spacing:.3em; color: rgba(255,255,255,.55); font-weight:600; margin-top:1px; }

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav > li{ position:relative; }
.main-nav > li > a{
  display:flex; align-items:center; gap:5px;
  padding: 10px 16px; font-size:14.5px; font-weight:500; color: rgba(255,255,255,.85);
  border-radius: var(--radius-pill); transition: color .25s, background .25s;
}
.main-nav > li > a:hover, .main-nav > li.active > a{ color:#fff; background: rgba(255,255,255,.08); }
.main-nav > li > a svg{ width:12px; height:12px; opacity:.7; transition: transform .25s; }
.main-nav > li:hover > a svg{ transform: rotate(180deg); }

.mega{
  position:absolute; top: calc(100% + 14px); left:50%; transform: translateX(-50%) translateY(8px);
  width: 620px; background:#fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 22px; opacity:0; visibility:hidden; transition: opacity .25s ease, transform .25s ease;
  border: 1px solid var(--line);
}
.main-nav > li:hover .mega{ opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
.mega-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:4px 18px; }
.mega-item{ display:flex; align-items:flex-start; gap:12px; padding:10px; border-radius: var(--radius-sm); transition: background .2s; }
.mega-item:hover{ background: var(--mist); }
.mega-ico{ width:38px; height:38px; flex:none; border-radius:10px; background: linear-gradient(135deg, rgba(233,24,197,.12), rgba(0,119,255,.12)); display:flex; align-items:center; justify-content:center; }
.mega-ico svg{ width:19px; height:19px; }
.mega-item h5{ font-size:13.5px; font-weight:600; color: var(--ink); margin-bottom:2px; }
.mega-item p{ font-size:12px; color: var(--text-3); line-height:1.4; margin:0; }
.mega-foot{ margin-top:14px; padding-top:14px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; }
.mega-foot a{ font-size:13px; font-weight:600; color: var(--purple); display:flex; align-items:center; gap:6px; }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-burger{ display:none; width:42px; height:42px; border-radius:50%; background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); align-items:center; justify-content:center; flex:none; }
.nav-burger span, .nav-burger::before, .nav-burger::after{ content:''; display:block; width:18px; height:2px; background:#fff; border-radius:2px; }
.nav-burger{ flex-direction:column; gap:4px; }

/* ================= FOOTER ================= */
.site-footer{ background: var(--grad-ink); position:relative; overflow:hidden; padding: 90px 0 0; color:#fff; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand p{ color: rgba(255,255,255,.55); font-size:14px; margin-top:16px; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; transition: all .25s; }
.footer-social a:hover{ background: var(--grad-brand); border-color:transparent; transform: translateY(-3px); }
.footer-social svg{ width:15px; height:15px; }
.footer-col h5{ color:#fff; font-size:13px; letter-spacing:.1em; text-transform:uppercase; font-weight:600; margin-bottom:20px; opacity:.9; }
.footer-col li{ margin-bottom:12px; }
.footer-col a{ color: rgba(255,255,255,.62); font-size:14.5px; transition: color .2s, padding-left .2s; }
.footer-col a:hover{ color:#fff; padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; color: rgba(255,255,255,.65); font-size:14px; }
.footer-contact svg{ width:16px; height:16px; flex:none; margin-top:3px; color: var(--pink-2); }
.footer-sub{ margin-top:8px; }
.footer-sub form{ display:flex; margin-top:10px; border-radius: var(--radius-pill); overflow:hidden; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); padding:4px; }
.footer-sub input{ flex:1; background:transparent; border:none; outline:none; padding:10px 14px; color:#fff; font-size:13.5px; }
.footer-sub input::placeholder{ color: rgba(255,255,255,.4); }
.footer-sub button{ background: var(--grad-brand); border:none; color:#fff; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
.footer-sub button svg{ width:15px; height:15px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 26px 0; flex-wrap:wrap; gap:12px; }
.footer-bottom p{ color: rgba(255,255,255,.45); font-size:13px; }
.footer-legal{ display:flex; gap:22px; flex-wrap:wrap; }
.footer-legal a{ color: rgba(255,255,255,.45); font-size:13px; }
.footer-legal a:hover{ color:#fff; }
.footer-glow{ position:absolute; inset:0; background: var(--grad-mesh); opacity:.5; pointer-events:none; }

/* ================= UTILITIES / SECTIONS ================= */
.section{ padding: 110px 0; }
.section-tight{ padding: 80px 0; }
.section-head{ max-width: 680px; margin-bottom: 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(30px, 3.6vw, 44px); margin: 16px 0 16px; font-weight:700; }
.section-head p{ font-size:17px; }
.bg-mist{ background: var(--mist); }
.bg-ink{ background: var(--grad-ink); color:#fff; }
.bg-ink h1,.bg-ink h2,.bg-ink h3,.bg-ink h4{ color:#fff; }
.bg-ink p{ color: rgba(255,255,255,.65); }

.pill-tag{ display:inline-block; font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 12px; border-radius: var(--radius-pill); background: rgba(120,44,191,.08); color: var(--purple); }

/* card grid */
.grid{ display:grid; gap:26px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.value-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding: 34px 28px; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
  position:relative; overflow:hidden;
}
.value-card::before{ content:''; position:absolute; inset:0; opacity:0; background: var(--grad-brand); transition: opacity .4s; z-index:0; }
.value-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color:transparent; }
.value-card:hover::before{ opacity:1; }
.value-card > *{ position:relative; z-index:1; }
.value-card:hover h4, .value-card:hover p{ color:#fff; }
.value-ico{ width:52px; height:52px; border-radius:14px; background: linear-gradient(135deg, rgba(233,24,197,.1), rgba(0,119,255,.1)); display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition: background .4s; }
.value-card:hover .value-ico{ background: rgba(255,255,255,.18); }
.value-ico svg{ width:24px; height:24px; }
.value-card:hover .value-ico svg{ color:#fff !important; }
.value-card h4{ font-size:18px; font-weight:600; margin-bottom:10px; }
.value-card p{ font-size:14.5px; }

/* glass card variant — for use on dark/ink backgrounds */
.quick-card{
  display:block; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md); padding:22px 24px; backdrop-filter: blur(6px);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.quick-card:hover{ background: rgba(255,255,255,.12); transform: translateY(-6px); border-color: rgba(255,255,255,.3); }
.quick-card .value-ico{ background: rgba(255,255,255,.14); margin-bottom:14px; }
.quick-card .value-ico svg{ color:#fff; }
.quick-card h4{ color:#fff; font-size:15px; margin-bottom:4px; font-weight:600; }
.quick-card p{ color: rgba(255,255,255,.6); font-size:13.5px; margin:0; }

/* service/solution card */
.svc-card{ background:#fff; border-radius: var(--radius-lg); border:1px solid var(--line); overflow:hidden; transition: all .4s cubic-bezier(.2,.8,.2,1); position:relative; }
.svc-card:hover{ box-shadow: var(--shadow-glow); transform: translateY(-6px); border-color: transparent; }
.svc-card-top{ padding: 30px 30px 20px; }
.svc-ico{ width:56px; height:56px; border-radius:16px; background: var(--grad-brand); display:flex; align-items:center; justify-content:center; margin-bottom:22px; box-shadow: 0 10px 24px rgba(233,24,197,.28); }
.svc-ico svg{ width:26px; height:26px; color:#fff; }
.svc-card h3{ font-size:20px; font-weight:600; margin-bottom:10px; }
.svc-card p{ font-size:14.5px; margin-bottom:18px; }
.svc-tags{ display:flex; flex-wrap:wrap; gap:7px; padding: 0 30px 26px; }
.svc-tags span{ font-size:11.5px; font-weight:600; color: var(--text-3); background: var(--mist); padding:5px 11px; border-radius: var(--radius-pill); }
.svc-link{ display:flex; align-items:center; justify-content:space-between; padding: 18px 30px; border-top:1px solid var(--line); font-weight:600; font-size:14px; color: var(--ink); }
.svc-link svg{ width:16px; height:16px; transition: transform .3s; }
.svc-card:hover .svc-link svg{ transform: translateX(5px); color: var(--purple); }

/* stat strip */
.stat-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap:30px; }
.stat b{ font-family: var(--ff-display); font-size: clamp(30px,3vw,44px); font-weight:700; background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; display:block; }
.stat span{ font-size:13.5px; color: rgba(255,255,255,.55); font-weight:500; }

/* image frame placeholders */
.img-frame{
  border-radius: var(--radius-lg); overflow:hidden; position:relative;
  background: linear-gradient(135deg, #171A34, #0D1026);
  display:flex; align-items:center; justify-content:center; color: rgba(255,255,255,.35);
  text-align:center; font-size:13px; line-height:1.6; padding:24px;
}
.img-frame img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.img-frame .frame-note{ position:relative; z-index:2; font-weight:600; letter-spacing:.02em; }
.img-frame .frame-note b{ display:block; font-size:14px; color: rgba(255,255,255,.7); margin-bottom:6px; }
.img-frame::after{ content:''; position:absolute; inset:0; border:1.5px dashed rgba(255,255,255,.18); border-radius: var(--radius-lg); pointer-events:none; }

/* breadcrumb + page banner */
.page-banner{ position:relative; padding: 190px 0 90px; overflow:hidden; }
.page-banner .crumb{ display:flex; align-items:center; gap:8px; font-size:13px; color: rgba(255,255,255,.5); margin-bottom:22px; }
.page-banner .crumb a{ color: rgba(255,255,255,.7); }
.page-banner .crumb svg{ width:12px; height:12px; }
.page-banner h1{ font-size: clamp(34px, 4.5vw, 56px); max-width:820px; }
.page-banner p.lead{ font-size:18px; margin-top:18px; max-width:640px; color: rgba(255,255,255,.62); }
.banner-decor{ position:absolute; inset:0; z-index:0; }

/* content columns */
.two-col{ display:grid; grid-template-columns: 1.05fr .95fr; gap:70px; align-items:center; }
.two-col.reverse{ grid-template-columns: .95fr 1.05fr; }
.two-col.reverse .col-media{ order:2; }

.check-list li{ display:flex; gap:12px; align-items:flex-start; padding:10px 0; font-size:15px; color: var(--text-2); }
.check-list svg{ width:20px; height:20px; flex:none; color: var(--purple); margin-top:1px; }
.bg-ink .check-list p, .bg-ink .check-list li{ color: rgba(255,255,255,.75); }

.include-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:14px; }
.include-item{ display:flex; gap:14px; align-items:center; padding:16px 18px; background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); font-weight:500; font-size:14.5px; transition: all .3s; }
.include-item:hover{ border-color: var(--purple); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.include-dot{ width:9px; height:9px; border-radius:50%; background: var(--grad-brand); flex:none; }

/* process / engagement steps */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; counter-reset:step; }
.step{ position:relative; padding: 30px 26px; background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); }
.step-num{ font-family: var(--ff-display); font-size:38px; font-weight:800; background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; opacity:.85; margin-bottom:14px; display:block; }
.step h4{ font-size:16px; font-weight:600; margin-bottom:8px; }
.step p{ font-size:13.5px; }

/* logos strip */
.logo-strip{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; opacity:.55; }
.logo-strip .logo-slot{ height:30px; display:flex; align-items:center; font-weight:700; letter-spacing:.02em; color: var(--text-3); font-size:15px; }

/* CTA band */
.cta-band{ border-radius: var(--radius-lg); background: var(--grad-brand-2); padding: 60px; position:relative; overflow:hidden; }
.cta-band-inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band h3{ color:#fff; font-size: clamp(24px,3vw,32px); max-width:440px; }
.cta-band p{ color: rgba(255,255,255,.8); margin-top:10px; max-width:440px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* testimonial / industries */
.industry-card{ position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 4/5; }
.industry-card .img-frame{ position:absolute; inset:0; border-radius:0; }
.industry-card .ind-label{ position:absolute; left:0; right:0; bottom:0; padding: 26px 22px; background: linear-gradient(0deg, rgba(13,16,38,.92), transparent); z-index:2; }
.industry-card .ind-label h4{ color:#fff; font-size:17px; font-weight:600; }
.industry-card .ind-label span{ color: rgba(255,255,255,.55); font-size:12.5px; }

/* accordion (FAQ) */
.acc-item{ border-bottom:1px solid var(--line); }
.acc-q{ display:flex; justify-content:space-between; align-items:center; padding: 22px 4px; cursor:pointer; font-weight:600; font-size:15.5px; }
.acc-q svg{ width:18px; height:18px; transition: transform .3s; flex:none; }
.acc-item.open .acc-q svg{ transform: rotate(45deg); }
.acc-a{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.acc-item.open .acc-a{ max-height:300px; }
.acc-a p{ padding: 0 4px 22px; font-size:14.5px; max-width:640px; }

/* forms */
.form-card{ background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 44px; border:1px solid var(--line); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13px; font-weight:600; color: var(--text-1); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding: 14px 16px; border-radius: var(--radius-sm); border:1.5px solid var(--line);
  font-family: inherit; font-size:14.5px; color: var(--text-1); transition: border-color .25s, box-shadow .25s; outline:none; background:#fbfbfd;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--purple); box-shadow: 0 0 0 4px rgba(120,44,191,.12); background:#fff; }
.field textarea{ resize: vertical; min-height:120px; }
.chip-group{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{ padding:10px 18px; border-radius: var(--radius-pill); border:1.5px solid var(--line); font-size:13.5px; font-weight:600; color: var(--text-2); transition: all .25s; background:#fff; }
.chip input{ display:none; }
.chip.active, .chip:has(input:checked){ background: var(--grad-brand); border-color:transparent; color:#fff; }

/* meeting booker */
.booker{ background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow:hidden; border:1px solid var(--line); display:grid; grid-template-columns: 1fr 1.3fr; }
.booker-side{ background: var(--grad-ink); color:#fff; padding: 36px 32px; position:relative; }
.booker-side h4{ color:#fff; font-size:19px; margin-bottom:8px; }
.booker-side p{ color: rgba(255,255,255,.6); font-size:13.5px; }
.booker-meta{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.booker-meta li{ display:flex; gap:12px; align-items:center; font-size:13.5px; color: rgba(255,255,255,.75); }
.booker-meta svg{ width:17px; height:17px; color: var(--pink-2); }
.booker-main{ padding: 32px; }
.cal-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.cal-head .m-label{ font-weight:600; font-size:15px; }
.cal-nav{ display:flex; gap:8px; }
.cal-nav button{ width:30px; height:30px; border-radius:50%; border:1px solid var(--line); background:#fff; display:flex; align-items:center; justify-content:center; }
.cal-nav .cal-prev svg{ transform: rotate(180deg); }
.cal-grid{ display:grid; grid-template-columns: repeat(7,1fr); gap:6px; text-align:center; }
.cal-grid .dow{ font-size:11px; color: var(--text-3); font-weight:700; padding-bottom:6px; }
.cal-day{ aspect-ratio:1; display:flex; align-items:center; justify-content:center; border-radius:10px; font-size:13.5px; font-weight:500; color: var(--text-2); cursor:pointer; transition: all .2s; }
.cal-day:hover{ background: var(--mist); }
.cal-day.muted{ color: var(--text-3); opacity:.3; pointer-events:none; }
.cal-day.selected{ background: var(--grad-brand); color:#fff; font-weight:700; }
.slot-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.slot{ padding:9px 16px; border-radius: var(--radius-pill); border:1.5px solid var(--line); font-size:13px; font-weight:600; color: var(--text-2); transition: all .2s; }
.slot:hover{ border-color: var(--purple); color: var(--purple); }
.slot.selected{ background: var(--grad-brand); border-color:transparent; color:#fff; }
.booker-foot{ margin-top:24px; padding-top:20px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.booker-foot .sel-info{ font-size:13px; color: var(--text-3); }
.booker-foot .sel-info b{ color: var(--text-1); }

/* map */
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; height:100%; min-height:320px; border:1px solid var(--line); }

/* misc animation */
[data-reveal]{ opacity:0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in{ opacity:1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay:.08s; }
[data-reveal-delay="2"]{ transition-delay:.16s; }
[data-reveal-delay="3"]{ transition-delay:.24s; }
[data-reveal-delay="4"]{ transition-delay:.32s; }

.marquee{ display:flex; gap:60px; white-space:nowrap; animation: marquee 30s linear infinite; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* back to top */
.to-top{ position:fixed; bottom:28px; right:28px; width:48px; height:48px; border-radius:50%; background: var(--grad-brand); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lg); opacity:0; visibility:hidden; transform: translateY(10px); transition: all .3s; z-index:900; }
.to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.to-top svg{ width:18px; height:18px; color:#fff; }

/* ================= HERO SLIDER ================= */
.hero-slider{ position:relative; height:100vh; min-height:680px; max-height:980px; overflow:hidden; background: var(--grad-ink); }
.hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden; transition: opacity 1.1s ease, visibility 1.1s;
  background-size: cover; background-position:center; display:flex; align-items:center;
}
.hero-slide.active{ opacity:1; visibility:visible; }
.hero-slide-overlay{
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(13,16,38,.94) 10%, rgba(13,16,38,.75) 45%, rgba(13,16,38,.4) 75%), var(--grad-mesh);
}
.hero-slide-content{ position:relative; z-index:2; max-width:680px; padding-top:70px; }
.hero-slide-content h1{ color:#fff; font-size: clamp(36px, 5.2vw, 64px); margin:20px 0 22px; font-weight:700; }
.hero-slide-content p.lead{ color: rgba(255,255,255,.68); font-size:18px; max-width:560px; }
.hero-slide.active .hero-slide-content{ animation: heroUp .9s cubic-bezier(.2,.8,.2,1) both; }
@keyframes heroUp{ from{ opacity:0; transform: translateY(24px);} to{ opacity:1; transform:translateY(0);} }

.hero-controls{ position:absolute; left:0; right:0; bottom:44px; z-index:3; display:flex; align-items:center; justify-content:space-between; }
.hero-dots{ display:flex; gap:10px; }
.hero-dot{ width:34px; height:4px; border-radius:2px; background: rgba(255,255,255,.25); border:none; transition: background .3s, width .3s; }
.hero-dot.active{ background: var(--grad-brand); width:50px; }
.hero-arrows{ display:flex; gap:10px; }
.hero-arrow{ width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; color:#fff; transition: all .25s; }
.hero-arrow:hover{ background: var(--grad-brand); border-color:transparent; }
.hero-arrow.prev svg{ transform: rotate(180deg); }
.hero-scroll-cue{ position:absolute; right:44px; top:50%; transform: translateY(-50%) rotate(0deg); z-index:3; display:none; }

@media (max-width: 900px){
  .hero-slider{ height:92vh; min-height:560px; }
}

/* mobile nav panel */
.mobile-nav{
  position:fixed; inset:0 0 0 auto; width:min(340px,84vw); background: var(--grad-ink); z-index:1100;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  padding: 100px 30px 30px; display:flex; flex-direction:column; gap:6px; overflow-y:auto;
}
.mobile-nav.open{ transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.4); }
.mobile-nav a{ color: rgba(255,255,255,.85); font-size:17px; font-weight:500; padding:12px 4px; border-bottom:1px solid rgba(255,255,255,.08); }
body.no-scroll{ overflow:hidden; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .stat-strip{ grid-template-columns: repeat(2,1fr); gap:26px 20px; }
  .booker{ grid-template-columns: 1fr; }
}
@media (max-width: 900px){
  .main-nav, .nav-cta .btn{ display:none; }
  .nav-burger{ display:flex; }
  .two-col, .two-col.reverse{ grid-template-columns: 1fr; gap:40px; }
  .two-col.reverse .col-media{ order:0; }
  .include-grid{ grid-template-columns: 1fr; }
  .cta-band-inner{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 640px){
  .container, .container-wide{ padding: 0 20px; }
  .section{ padding: 70px 0; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap:34px; }
  .form-row{ grid-template-columns: 1fr; }
  .page-banner{ padding: 150px 0 60px; }
  .cta-band{ padding: 40px 26px; }
}
