/* ============================================================
   freeminds.in — Arvind Ramachandran
   Premium consulting / transformation practice site
   ============================================================ */

:root {
  --ink:        #0a0e17;
  --ink-2:      #0d1220;
  --surface:    #111726;
  --surface-2:  #161d2e;
  --line:       rgba(255,255,255,0.09);
  --line-2:     rgba(255,255,255,0.14);

  --text:       #eef1f6;
  --muted:      #9aa6bd;
  --muted-2:    #6f7c95;

  --gold:       #e0b15e;
  --gold-soft:  #f0d29a;
  --teal:       #58d3c8;
  --violet:     #8a7bf0;
  --sky:        #5aa6f0;

  --maxw: 1180px;
  --r: 18px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #1a1205; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }

.section { padding: 120px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); margin: 18px 0 0; }
.section-head p { color: var(--muted); margin-top: 20px; font-size: 18px; }

.text-grad {
  background: linear-gradient(100deg, var(--gold-soft) 0%, var(--gold) 40%, var(--teal) 110%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #0b1e40;
  font-weight: 700;
  box-shadow: 0 10px 30px -10px rgba(224,177,94,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(224,177,94,0.7); }
.btn-ghost { background: rgba(255,255,255,0.04); border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8,12,20,0.6) 0%, rgba(8,12,20,0) 100%);
}
.nav.scrolled {
  background: rgba(8,12,20,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.nav-logo { height: 66px; filter: brightness(0) invert(1); opacity: 0.97; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn { padding: 11px 22px; }
.nav-links a.btn-primary { color: #0b1e40; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 120px 0 72px; overflow: hidden; }
.aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; animation: drift 22s ease-in-out infinite; }
.blob.b1 { width: 520px; height: 520px; top: 14%; right: -100px; background: radial-gradient(circle, rgba(224,177,94,0.45), transparent 70%); }
.blob.b2 { width: 480px; height: 480px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(138,123,240,0.45), transparent 70%); animation-delay: -7s; }
.blob.b3 { width: 420px; height: 420px; top: 40%; left: 45%; background: radial-gradient(circle, rgba(88,211,200,0.30), transparent 70%); animation-delay: -13s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-30px,25px) scale(0.96); }
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; opacity: 0.4;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.32fr 0.88fr; gap: 56px; align-items: center; width: 100%; }
.hero-copy { min-width: 0; }
.hero-logo { height: 78px; width: auto; filter: brightness(0) invert(1); opacity: 0.97; margin-bottom: 30px; }
/* What I do quick-nav panel */
.hero-nav { align-self: center; }
.hero-nav-label { font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.hero-nav-label::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-nav-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 18px; border-radius: 14px; margin-bottom: 10px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  transition: border-color .3s, background .3s, transform .3s;
}
.hero-nav-item:last-child { margin-bottom: 0; }
.hero-nav-item:hover { border-color: var(--line-2); background: rgba(255,255,255,0.06); transform: translateX(5px); }
.hero-nav-item .t { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.2; }
.hero-nav-item .d { font-size: 12px; color: var(--muted-2); margin-top: 3px; }
.hero-nav-item .arw { width: 18px; height: 18px; stroke: var(--muted-2); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .25s, stroke .25s; }
.hero-nav-item:hover .arw { transform: translateX(3px); stroke: var(--gold); }
.hero-nav-item.hl { border-color: rgba(88,211,200,0.32); background: rgba(88,211,200,0.06); }
.hero-nav-item.hl .t { color: var(--teal); }
.hero-nav-item.hl:hover .arw { stroke: var(--teal); }
.hero-nav-item .badge-new { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(88,211,200,0.4); border-radius: 100px; padding: 2px 8px; margin-left: 8px; }
/* offset for fixed nav when jumping to anchors */
section[id], article[id] { scroll-margin-top: 100px; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 100px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.03);
  font-size: 13px; color: var(--muted); margin-bottom: 30px;
}
.hero .tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.hero h1 { font-size: clamp(34px, 3.8vw, 48px); line-height: 1.06; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; }
.hero-sub { font-size: clamp(18px, 2.2vw, 22px); color: var(--muted); margin-top: 30px; max-width: 640px; line-height: 1.55; }
.hero-cta { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 16px; margin-top: 30px; }
.hero-meta .item .n { font-family: var(--serif); font-size: 34px; color: var(--text); line-height: 1; }
.hero-meta .item .l { font-size: 13px; color: var(--muted-2); margin-top: 8px; letter-spacing: 0.02em; }
.hero-meta .item .n .text-grad { font-style: italic; }

/* ---------- Marquee credentials ---------- */
.cred-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); padding: 26px 0; }
.cred-strip .label { text-align: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .mk-chip {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  height: 66px; padding: 0 22px; border-radius: 14px;
  background: #ffffff; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px -16px rgba(0,0,0,0.6);
}
.marquee-track .mk-chip img { height: 40px; width: auto; display: block; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Intro / the shift ---------- */
.shift { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); }
.shift-lead { font-family: var(--serif); font-size: clamp(26px, 3.6vw, 42px); line-height: 1.3; letter-spacing: -0.01em; max-width: 900px; }
.shift-lead .hl { color: var(--gold); font-style: italic; }
.shift-lead .dim { color: var(--muted-2); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc {
  position: relative; padding: 38px 34px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--surface) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, box-shadow .4s;
}
.svc::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(224,177,94,0.14), transparent 60%);
}
.svc:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
.svc:hover::before { opacity: 1; }
.svc.feature { grid-column: span 2; background: linear-gradient(110deg, #14110a 0%, #11131f 55%, #0f1420 100%); border-color: rgba(224,177,94,0.28); }
.svc-ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(224,177,94,0.12); border: 1px solid rgba(224,177,94,0.25); margin-bottom: 22px;
}
.svc-ico svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.svc h3 { font-size: 24px; margin-bottom: 12px; }
.svc p { color: var(--muted); font-size: 15.5px; }
.svc .pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.svc .pills span { font-size: 12.5px; color: var(--muted); padding: 5px 12px; border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.svc.feature .badge { position: absolute; top: 26px; right: 28px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(224,177,94,0.3); border-radius: 100px; padding: 5px 12px; }
.svc.feature .svc-ico { background: rgba(88,211,200,0.12); border-color: rgba(88,211,200,0.3); }
.svc.feature .svc-ico svg { stroke: var(--teal); }

/* ---------- Stats ---------- */
.stats { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 16px; }
.stat .n { font-family: var(--serif); font-size: clamp(40px, 5vw, 62px); line-height: 1; }
.stat .l { color: var(--muted); font-size: 14.5px; margin-top: 14px; }

/* ---------- Clients ---------- */
.clients { text-align: center; }
.clients-card {
  margin: 40px auto 0; max-width: 880px; background: #fbfbfd; border-radius: 22px;
  padding: 44px 40px; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8);
}
.clients-card img { width: 100%; height: auto; }
.clients .note { color: var(--muted-2); font-size: 13.5px; margin-top: 24px; max-width: 720px; margin-left: auto; margin-right: auto; }
/* ---------- Testimonials ---------- */
.tmonials { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); }
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tm {
  position: relative; padding: 34px 30px 30px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--surface) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line); transition: transform .35s, border-color .35s;
}
.tm:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tm .quote-mark { font-family: var(--serif); font-size: 56px; line-height: 0.6; color: var(--gold); opacity: 0.5; height: 24px; }
.tm p { color: var(--text); font-size: 16px; line-height: 1.6; margin: 8px 0 24px; }
.tm .who { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.tm .who .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 18px; color: var(--ink); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); flex-shrink: 0; }
.tm .who .nm { font-size: 15px; font-weight: 600; color: var(--text); }
.tm .who .rl { font-size: 13px; color: var(--muted); margin-top: 2px; }
.tm-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 32px; }
.senja-wall { min-height: 40px; }
.tm-cta { text-align: center; margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.tm-cta p { color: var(--muted); font-size: 17px; }

/* ---------- Approach ---------- */
.approach { background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  padding: 30px 26px; border-radius: var(--r); border: 1px solid var(--line);
  background: var(--surface); position: relative; transition: transform .35s, border-color .35s;
}
.step:hover { transform: translateY(-4px); border-color: var(--line-2); }
.step .num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: 0.1em; }
.step h4 { font-family: var(--serif); font-weight: 400; font-size: 21px; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step::after { content: ""; position: absolute; top: 36px; right: -10px; width: 20px; height: 1px; background: var(--line-2); }
.step:last-child::after { display: none; }

/* ---------- Agentic AI for Agility ---------- */
.agility { background: linear-gradient(180deg, var(--ink) 0%, #0b1220 100%); position: relative; overflow: hidden; }
.agility::before { content: ""; position: absolute; top: -120px; right: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(88,211,200,0.14), transparent 70%); filter: blur(70px); pointer-events: none; }
.ag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.ag-card {
  position: relative; padding: 34px 30px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--surface) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line); transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, box-shadow .4s;
  display: flex; flex-direction: column;
}
.ag-card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
.ag-card .ag-k { font-family: var(--serif); font-size: 15px; color: var(--teal); letter-spacing: 0.14em; }
.ag-card h3 { font-size: 25px; margin: 14px 0 12px; }
.ag-card p { color: var(--muted); font-size: 15.5px; }
.ag-card .ag-tag { margin-top: auto; padding-top: 20px; font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.04em; text-transform: uppercase; }
.ag-card.feature { background: linear-gradient(160deg, #0c1a1e 0%, #101827 60%, #0e1626 100%); border-color: rgba(88,211,200,0.3); }
.ag-card.feature .ag-k { color: var(--gold); }
.ag-stat { margin-top: 22px; padding: 20px; border-radius: 14px; background: rgba(88,211,200,0.08); border: 1px solid rgba(88,211,200,0.25); }
.ag-stat .ag-stat-n { font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--teal); }
.ag-stat .ag-stat-n span { font-size: 17px; color: var(--muted); font-family: var(--sans); margin-left: 4px; }
.ag-stat .ag-stat-l { font-size: 13.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.ag-loop { margin-top: 26px; position: relative; }
.ag-loop-label { text-align: center; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin: 40px 0 22px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ag-loop-label b { color: var(--teal); font-weight: 600; }
.ag-events { display: grid; grid-template-columns: repeat(auto-fit, minmax(192px, 1fr)); gap: 14px; }
.ag-event { padding: 22px 20px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); transition: transform .35s, border-color .35s; }
.ag-event:hover { transform: translateY(-4px); border-color: rgba(88,211,200,0.3); }
.ag-event h4 { font-family: var(--serif); font-weight: 400; font-size: 18px; margin-bottom: 12px; color: var(--text); }
.ag-event ul { list-style: none; }
.ag-event li { font-size: 13px; color: var(--muted); padding-left: 16px; position: relative; margin-bottom: 9px; line-height: 1.45; }
.ag-event li:last-child { margin-bottom: 0; }
.ag-event li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); opacity: 0.75; }
.ag-cta { margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; text-align: center; }
.ag-cta p { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 27px); color: var(--text); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo .frame {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line-2);
  position: relative; background: var(--surface); aspect-ratio: 4/4.4;
}
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; filter: grayscale(0.08) contrast(1.03); background: #eef0f3; }
.about-photo .frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,23,0.10) 0%, transparent 22%, transparent 60%, rgba(10,14,23,0.92) 100%); }
.about-photo .glow { position: absolute; inset: -30px -30px auto auto; width: 200px; height: 200px; background: radial-gradient(circle, rgba(224,177,94,0.4), transparent 70%); filter: blur(50px); z-index: -1; }
.about-photo .sig { position: absolute; left: 24px; bottom: 22px; z-index: 2; }
.about-photo .sig .nm { font-family: var(--serif); font-size: 22px; }
.about-photo .sig .rl { font-size: 12.5px; color: var(--gold-soft); letter-spacing: 0.04em; }
.about-body h2 { font-size: clamp(30px, 4vw, 46px); margin: 18px 0 24px; }
.about-body p { color: var(--muted); margin-bottom: 18px; font-size: 16.5px; }
.about-body p strong { color: var(--text); font-weight: 600; }
.about-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-creds .c { font-size: 13px; color: var(--text); padding: 8px 15px; border-radius: 100px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); display: inline-flex; gap: 8px; align-items: center; }
.about-creds .c b { color: var(--gold); font-weight: 600; }

/* ---------- Credentials band image ---------- */
.creds-band { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.creds-band .label { text-align: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 30px; }
.creds-card { max-width: 920px; margin: 0 auto; background: #ffffff; border-radius: 20px; padding: 36px 30px; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }
.creds-card img { width: 100%; }

/* ---------- Resumes / engage ---------- */
.engage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.engage {
  padding: 32px 28px; border-radius: var(--r); border: 1px solid var(--line); background: var(--surface);
  transition: transform .35s, border-color .35s, background .35s;
}
.engage:hover { transform: translateY(-4px); border-color: rgba(224,177,94,0.35); }
.engage .k { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.engage h4 { font-family: var(--serif); font-weight: 400; font-size: 23px; margin: 12px 0 10px; }
.engage p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.engage a.dl { font-size: 14px; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 8px; }
.engage a.dl svg { width: 15px; height: 15px; transition: transform .25s; }
.engage:hover a.dl svg { transform: translateY(2px); }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta-card {
  position: relative; border-radius: 28px; padding: 80px 60px; text-align: center; overflow: hidden;
  background: linear-gradient(120deg, #14110a 0%, #121524 60%, #0e1626 100%);
  border: 1px solid rgba(224,177,94,0.22);
}
.cta-card .cglow { position: absolute; inset: auto auto -120px 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(circle, rgba(224,177,94,0.35), transparent 70%); filter: blur(60px); }
.cta-card h2 { font-size: clamp(34px, 5vw, 58px); position: relative; }
.cta-card p { color: var(--muted); font-size: 19px; margin: 22px auto 38px; max-width: 560px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-contacts { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 44px; position: relative; }
.cta-contacts a { color: var(--muted); font-size: 14.5px; display: inline-flex; align-items: center; gap: 9px; transition: color .2s; }
.cta-contacts a:hover { color: var(--gold-soft); }
.cta-contacts svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--ink-2); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-logo { height: 48px; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 16px; }
.footer-top .blurb { color: var(--muted); font-size: 14.5px; max-width: 340px; }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-col h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col span { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 13px; }
.footer-bottom .tag { font-family: var(--serif); font-style: italic; color: var(--muted); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Float WhatsApp ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 92px; left: 0; right: 0; padding: 24px 28px 30px;
    background: rgba(8,12,20,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
  }
  .section { padding: 84px 0; }
  .hero { min-height: 0; padding: 116px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .hero-logo { height: 60px; margin-bottom: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc.feature { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 380px; }
  .engage-grid { grid-template-columns: 1fr; }
  .tm-grid { grid-template-columns: 1fr; }
  .ag-grid { grid-template-columns: 1fr; }
  .ag-cta { flex-direction: column; gap: 20px; }
  .cta-card { padding: 56px 26px; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero-meta { gap: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .clients-card, .creds-card { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
