/* ============================================================
   FirstStepIntern — Premium Stylesheet
   Brand: Royal Blue + Orange (from logo)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Blues */
  --blue-950: #071634;
  --blue-900: #0b2154;
  --blue-800: #122c6d;
  --blue-700: #1a3c94;
  --blue-600: #2050c0;
  --blue-500: #2b63e0;
  --blue-400: #4d82f0;
  --blue-100: #dbe7ff;
  --blue-50:  #eef4ff;

  /* Oranges */
  --orange-700: #cc540b;
  --orange-600: #e8620e;
  --orange-500: #f5821f;
  --orange-400: #ff9f33;
  --orange-100: #ffe9d3;
  --orange-50:  #fff4ea;

  /* Ink / neutrals */
  --ink-900: #0d1b3d;
  --ink-800: #1a2a4f;
  --ink-700: #33416b;
  --ink-500: #5a6688;
  --ink-400: #8a94b0;

  --bg:      #ffffff;
  --bg-soft: #f5f8ff;
  --bg-tint: #eef3fe;
  --border:  #e4ebf7;
  --white:   #ffffff;

  /* Colored, layered shadows for depth */
  --shadow-xs: 0 1px 2px rgba(11,33,84,.06);
  --shadow-sm: 0 4px 14px rgba(11,33,84,.08);
  --shadow-md: 0 14px 36px rgba(11,33,84,.12);
  --shadow-lg: 0 30px 70px rgba(11,33,84,.18);
  --shadow-orange: 0 14px 30px rgba(245,130,31,.34);
  --shadow-blue:   0 14px 30px rgba(32,80,192,.30);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1200px;
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Signature brand gradients */
  --grad-brand:  linear-gradient(100deg, #1a3c94 0%, #2b63e0 42%, #f5821f 108%);
  --grad-orange: linear-gradient(135deg, #ff9f33 0%, #f5821f 52%, #e8620e 100%);
  --grad-blue:   linear-gradient(135deg, #2b63e0 0%, #1a3c94 100%);
  --grad-navy:   linear-gradient(150deg, #0b2154 0%, #122c6d 55%, #16307a 100%);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--orange-100); color: var(--orange-700); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--blue-700); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 26px; height: 3px; border-radius: 3px; background: var(--grad-orange); }
.eyebrow.center { justify-content: center; }

h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.14; font-weight: 800; letter-spacing: -0.6px; }
h1 { font-size: clamp(2.35rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; }
.section-head { max-width: 660px; margin: 0 auto 60px; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; margin-top: 16px; }
.lead { font-size: 1.18rem; color: var(--ink-500); }
.gt { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.go { background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 0.98rem; padding: 15px 28px; border-radius: 999px;
  cursor: pointer; border: none; font-family: var(--font); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary::after { content:''; position:absolute; inset:0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .6s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(245,130,31,.45); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-blue { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(32,80,192,.42); }
.btn-ghost { background: #fff; color: var(--blue-700); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--blue-700); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.28rem; color: var(--blue-800); letter-spacing: -0.6px; }
.brand img { height: 40px; width: auto; }
.brand .wm b { color: var(--orange-500); }
.brand .wm { font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; font-weight: 600; font-size: 0.97rem; color: var(--ink-700);
  padding: 9px 16px; border-radius: 999px; transition: all .18s ease;
}
.nav-links a:hover { color: var(--blue-700); background: var(--blue-50); }
.nav-links a.active { color: var(--blue-700); }
.nav-links a.active::after { content:''; position:absolute; left:16px; right:16px; bottom:2px; height:3px; border-radius:3px; background: var(--grad-orange); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink-900); border-radius: 3px; margin: 5px 0; transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 88px 0 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(46% 46% at 84% 6%, rgba(245,130,31,.16) 0%, transparent 60%),
  radial-gradient(50% 50% at 6% 22%, rgba(43,99,224,.16) 0%, transparent 58%),
  radial-gradient(60% 60% at 50% 108%, rgba(43,99,224,.08) 0%, transparent 60%),
  var(--bg); }
.hero-bg::before { content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(26,60,148,.06) 1px, transparent 1px);
  background-size: 26px 26px; -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%); mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 60px; align-items: center; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 8px 7px 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  box-shadow: var(--shadow-xs); font-size: 0.84rem; font-weight: 600; color: var(--ink-700); margin-bottom: 24px;
}
.badge-pill b { background: var(--grad-orange); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: .4px; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; }
.hero h1 { margin-bottom: 22px; }
.hero p.lead { max-width: 528px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--ink-500); font-size: 0.9rem; font-weight: 600; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span { width: 36px; height: 36px; border-radius: 50%; margin-left: -11px; border: 2.5px solid #fff; display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 700; box-shadow: var(--shadow-xs); }
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .avatars span:nth-child(odd){ background: var(--grad-blue); }
.hero-trust .avatars span:nth-child(even){ background: var(--grad-orange); }
.stars { color: var(--orange-500); letter-spacing: 2px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual .glow { position: absolute; inset: 8% 4% 8% 4%; background: var(--grad-brand); filter: blur(60px); opacity: .28; border-radius: 40px; z-index: -1; }
.hero-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px; position: relative; }
.hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 0 4px; }
.hc-title { font-weight: 800; color: var(--ink-900); font-size: 0.98rem; }
.hc-badge { font-size: 11px; font-weight: 800; color: var(--orange-600); background: var(--orange-50); border: 1px solid var(--orange-100); padding: 5px 11px; border-radius: 999px; }
.hc-badge .dot { display:inline-block;width:7px;height:7px;border-radius:50%;background:var(--orange-500);margin-right:5px;vertical-align:middle; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.hc-course { display: flex; align-items: center; gap: 13px; padding: 13px; border-radius: 14px; border: 1px solid var(--border); margin-bottom: 11px; transition: .2s; background:#fff; }
.hc-course:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.hc-course .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; color:#fff; }
.hc-course h4 { font-size: 0.95rem; color: var(--ink-900); }
.hc-course p { font-size: 0.78rem; color: var(--ink-400); margin: 0; }
.hc-course .meta { margin-left: auto; text-align: right; }
.hc-course .meta b { color: var(--blue-600); font-size: 0.9rem; }
.hc-course .meta small { display:block; color: var(--ink-400); font-size: 0.7rem; }
.hc-bar { height: 6px; border-radius: 6px; background: var(--bg-tint); margin-top: 8px; overflow: hidden; }
.hc-bar i { display:block; height:100%; border-radius:6px; background: var(--grad-orange); }
.floaty { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 15px; box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 0.85rem; color: var(--ink-900); }
.floaty .fi { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 17px; }
.floaty small { display: block; font-weight: 500; color: var(--ink-400); font-size: 0.72rem; }
.floaty.f1 { top: -22px; left: -28px; animation: float 5s ease-in-out infinite; }
.floaty.f2 { bottom: -20px; right: -22px; animation: float 5s ease-in-out infinite 1.2s; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-9px) } }

/* ---------- Partners strip ---------- */
.partners { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); padding: 30px 0; }
.partners .lbl { text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-400); margin-bottom: 18px; }
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 44px; }
.partner-row span { font-weight: 800; font-size: 1.15rem; color: #b7c1da; letter-spacing: -0.5px; transition: color .2s; }
.partner-row span:hover { color: var(--blue-600); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 24px 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs); transition: .25s; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat .num { font-size: clamp(1.9rem,3vw,2.5rem); font-weight: 800; letter-spacing: -1.2px; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { color: var(--ink-500); font-weight: 600; font-size: 0.9rem; margin-top: 4px; }

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

.card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ic-box { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 25px; margin-bottom: 20px; color: #fff; box-shadow: var(--shadow-xs); }
.ic-blue { background: var(--grad-blue); }
.ic-orange { background: var(--grad-orange); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-500); font-size: 0.96rem; }

/* Track card */
.track-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.track-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.track-top { padding: 24px 24px 0; display: flex; align-items: flex-start; justify-content: space-between; }
.track-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 24px; color: #fff; box-shadow: var(--shadow-xs); }
.track-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 5px 11px; border-radius: 999px; background: var(--orange-50); color: var(--orange-600); border: 1px solid var(--orange-100); }
.track-card .body { padding: 16px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.track-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.track-card p { color: var(--ink-500); font-size: 0.92rem; margin-bottom: 16px; }
.track-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--border); font-size: 0.82rem; color: var(--ink-500); font-weight: 600; }
.track-meta span { display: flex; align-items: center; gap: 6px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
.step { position: relative; padding: 32px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: .25s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .n { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 18px; box-shadow: var(--shadow-blue); }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: 0.9rem; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { width: 28px; height: 28px; border-radius: 9px; background: var(--grad-orange); color: #fff; display: grid; place-items: center; flex-shrink: 0; font-weight: 800; margin-top: 2px; font-size: 0.85rem; box-shadow: var(--shadow-xs); }
.feature-list b { color: var(--ink-900); display: block; font-size: 1.02rem; }
.feature-list span.d { color: var(--ink-500); font-size: 0.92rem; }
.visual-panel { background: var(--grad-navy); border-radius: var(--radius-lg); padding: 42px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.visual-panel::after { content:''; position:absolute; width:240px;height:240px;border-radius:50%; background: radial-gradient(circle, rgba(245,130,31,.4), transparent 70%); top:-70px;right:-70px; }
.visual-panel::before { content:''; position:absolute; width:200px;height:200px;border-radius:50%; background: radial-gradient(circle, rgba(43,99,224,.5), transparent 70%); bottom:-60px;left:-50px; }
.visual-panel > * { position: relative; }
.mini-stat { display: flex; align-items: center; gap: 14px; padding: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); border-radius: 15px; margin-bottom: 12px; backdrop-filter: blur(4px); }
.mini-stat .mi { width: 44px;height:44px;border-radius:12px;background: var(--grad-orange);display:grid;place-items:center;font-size:19px; flex-shrink:0; }
.mini-stat b { font-size: 1.12rem; }
.mini-stat small { opacity: .78; font-size: 0.82rem; }

/* ---------- Testimonials ---------- */
.testi { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; transition: .25s; }
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi .quote { position: absolute; top: 18px; right: 24px; font-size: 3.4rem; line-height: 1; font-family: Georgia, serif; color: var(--blue-100); }
.testi .stars { margin-bottom: 14px; font-size: 0.95rem; }
.testi p { color: var(--ink-700); font-size: 0.98rem; margin-bottom: 22px; position: relative; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av { width: 46px;height:46px;border-radius:50%;color:#fff;display:grid;place-items:center;font-weight:700; }
.testi .who .av.b { background: var(--grad-blue); }
.testi .who .av.o { background: var(--grad-orange); }
.testi .who b { color: var(--ink-900); font-size: 0.95rem; display:block; }
.testi .who small { color: var(--ink-400); font-size: 0.82rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
.price { position: relative; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px 30px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.featured { border-color: transparent; box-shadow: var(--shadow-lg); background:
  linear-gradient(#fff,#fff) padding-box, var(--grad-brand) border-box; border: 2px solid transparent; }
.price.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-orange); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .5px; padding: 7px 18px; border-radius: 999px; text-transform: uppercase; box-shadow: var(--shadow-orange); }
.price h3 { font-size: 1.18rem; margin-bottom: 6px; }
.price .desc { color: var(--ink-400); font-size: 0.88rem; margin-bottom: 20px; }
.price .amt { font-size: 2.7rem; font-weight: 800; color: var(--ink-900); letter-spacing: -1.5px; }
.price .amt small { font-size: 0.95rem; font-weight: 600; color: var(--ink-400); }
.price ul { margin: 24px 0 28px; display: grid; gap: 13px; }
.price ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-700); }
.price ul li::before { content: '✓'; color: #fff; background: var(--orange-500); width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.price ul li.off { color: var(--ink-400); }
.price ul li.off::before { content: '×'; background: #d5deee; }
.price .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-navy); border-radius: var(--radius-lg); padding: 64px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; width:300px;height:300px;border-radius:50%; background: radial-gradient(circle, rgba(245,130,31,.5), transparent 70%); top:-120px; right:-40px; }
.cta-band::after { content:''; position:absolute; width:260px;height:260px;border-radius:50%; background: radial-gradient(circle, rgba(43,99,224,.55), transparent 70%); bottom:-120px; left:-40px; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto 30px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; padding: 74px 0 62px; text-align: center; border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero .hero-bg { z-index: -1; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--ink-500); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-400); margin-bottom: 18px; font-weight: 600; }
.breadcrumb a:hover { color: var(--orange-500); }

/* ---------- Values ---------- */
.value { position: relative; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); transition: .25s; overflow: hidden; }
.value::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-orange); transform: scaleX(0); transform-origin:left; transition: transform .3s; }
.value:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.value:hover::before { transform: scaleX(1); }
.value .ic-box { width: 50px; height: 50px; font-size: 22px; border-radius: 14px; display:grid; place-items:center; color:#fff; margin-bottom: 16px; }
.value h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value p { color: var(--ink-500); font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; margin-bottom: 16px; transition: .2s; }
.info-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.info-card .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; color: #fff; }
.info-card b { color: var(--ink-900); display: block; }
.info-card p { color: var(--ink-500); font-size: 0.92rem; margin: 2px 0 0; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink-900); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--font); font-size: 0.95rem; color: var(--ink-900); background: var(--bg-soft); transition: .18s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); background: #fff; box-shadow: 0 0 0 4px rgba(43,99,224,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: var(--orange-50); color: var(--orange-700); font-weight: 600; font-size: 0.92rem; border: 1px solid var(--orange-100); }
.form-note.show { display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 15px; margin-bottom: 14px; overflow: hidden; background: #fff; transition: .2s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue-100); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--ink-900); font-size: 1rem; }
.faq-q .plus { flex-shrink: 0; width: 28px; height: 28px; border-radius: 9px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; font-size: 18px; transition: .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--grad-orange); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--ink-500); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-950); color: #a9b7d6; padding: 66px 0 26px; position: relative; overflow: hidden; }
.footer::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-brand); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 46px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand .wm b { color: var(--orange-400); }
.footer .brand img { filter: drop-shadow(0 4px 10px rgba(0,0,0,.3)); }
.footer p.about { color: #8595bd; font-size: 0.92rem; max-width: 300px; }
.footer h4 { color: #fff; font-size: 0.98rem; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a { color: #8595bd; font-size: 0.92rem; transition: .18s; }
.footer ul li a:hover { color: var(--orange-400); padding-left: 3px; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #a9b7d6; transition: .2s; font-weight: 700; }
.social a:hover { background: var(--grad-orange); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #6f7ea6; font-size: 0.86rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .grid-4, .steps, .stats { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 470px; margin: 0 auto; }
  .split .visual-panel { order: 2 !important; }
  .floaty.f1 { left: 0; } .floaty.f2 { right: 0; }
}
@media (max-width: 640px) {
  .section { padding: 66px 0; }
  .grid-2, .grid-3, .grid-4, .steps, .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .visual-panel { padding: 30px; }
  .brand .wm { display: none; }
  .brand img { height: 42px; }
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); transform: translateY(-145%); transition: transform .3s ease; z-index: 99; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; }
  .nav-links a.active::after { display: none; }
  .nav .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}
