/* ============================================================
   JarvisNextGen — Brand Stylesheet
   Brand v1.1 locked: Navy #16213E · Royal Blue #4361EE ·
   Cyan Spark #00C2FF · Poppins · "Ideas, Engineered."
   ============================================================ */

:root {
  --navy: #16213E;
  --navy-deep: #0F1B3D;
  --blue: #4361EE;
  --cyan: #00C2FF;
  --off-white: #F8FAFC;
  --charcoal: #1E293B;
  --slate: #64748B;
  --success: #10B981;
  --white: #ffffff;
  --border: rgba(22, 33, 62, 0.10);
  --grad: linear-gradient(90deg, var(--blue), var(--cyan));
  --grad-soft: linear-gradient(135deg, rgba(67, 97, 238, 0.12), rgba(0, 194, 255, 0.08));
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(22, 33, 62, 0.08);
  --shadow-lg: 0 24px 70px rgba(22, 33, 62, 0.14);
  --font: 'Poppins', 'Segoe UI', sans-serif;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(1160px, 92%); margin-inline: auto; }

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700; color: var(--navy); line-height: 1.22; letter-spacing: -0.5px;
}

.section-sub { margin-top: 14px; color: var(--slate); font-size: 1.05rem; font-weight: 400; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
}
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-small { padding: 9px 20px; font-size: 13.5px; }
.btn-primary { background: var(--grad); color: var(--white); box-shadow: 0 8px 24px rgba(67, 97, 238, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(67, 97, 238, 0.45); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.scrolled { box-shadow: 0 6px 30px rgba(22, 33, 62, 0.08); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand-logo { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { font-size: 14.5px; font-weight: 500; color: var(--charcoal); position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--grad); border-radius: 2px; transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .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; min-height: 100vh; display: flex; align-items: center; padding: calc(var(--nav-h) + 40px) 0 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15, 27, 61, 0.94) 0%, rgba(15, 27, 61, 0.78) 45%, rgba(15, 27, 61, 0.45) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero .eyebrow { color: var(--cyan); }
.hero-title {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -1px;
}
.hero-sub { margin: 22px 0 34px; color: rgba(248, 250, 252, 0.88); font-size: clamp(1rem, 1.6vw, 1.13rem); max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: clamp(24px, 5vw, 56px); margin-top: 56px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.16);
  flex-wrap: wrap;
}
.stat strong { display: block; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--white); }
.stat span { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(248,250,252,0.65); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-deep); padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.trust-label { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(248,250,252,0.5); }
.trust-item { font-size: 15px; font-weight: 600; color: var(--white); }
.dot { color: var(--cyan); }

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

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(67,97,238,0.3); }
.card-icon { font-size: 26px; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--grad-soft); margin-bottom: 20px; }
.card h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: #4A5568; }
.card-meta { margin-top: 16px; font-size: 0.82rem !important; font-weight: 500; color: var(--blue) !important; letter-spacing: 0.3px; }
.card-usp { margin-top: 14px; font-size: 0.92rem !important; color: var(--navy) !important; font-weight: 500; border-left: 3px solid var(--cyan); padding-left: 12px; line-height: 1.6; }
.card-usp strong { color: var(--blue); }

/* ---------- Services (dark Navy band, P9) ---------- */
.services {
  background: radial-gradient(620px circle at 12% 12%, rgba(67,97,238,0.14), transparent 62%),
              radial-gradient(520px circle at 88% 88%, rgba(0,194,255,0.12), transparent 62%),
              #16213E;
  position: relative;
  overflow: hidden;
}
/* smooth edge transition: light section -> navy -> light section */
.services::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 96px; background: linear-gradient(180deg, #F9F8F3 0%, rgba(249,248,243,0) 100%); pointer-events: none; z-index: 1; }
.services::after  { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 96px; background: linear-gradient(0deg, #F9F8F3 0%, rgba(249,248,243,0) 100%); pointer-events: none; z-index: 1; }
.services .section-head { position: relative; z-index: 2; }
.services .eyebrow { color: var(--cyan); }
.services .section-title { color: var(--white); }
.services .section-sub { color: rgba(248,250,252,0.72); }
.services .grid { position: relative; z-index: 2; }
/* glass cards */
.services .card {
  background: linear-gradient(#1B2A4A, #1B2A4A) padding-box,
              linear-gradient(135deg, #4361EE, #00C2FF) border-box;
  border: 1px solid transparent;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(67,97,238,0.25);
  padding: 32px 28px;
}
.services .card-icon {
  background: rgba(67,97,238,0.14);
  border-radius: 50%;
  width: 56px; height: 56px;
  color: var(--cyan);
  margin-bottom: 20px;
}
.services .card-icon svg { width: 26px; height: 26px; }
.services .card h3 { color: var(--white); font-weight: 700; font-size: 1.06rem; }
.services .card p { color: rgba(248,250,252,0.75); line-height: 1.6; }
.services .card-meta {
  color: var(--cyan) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  letter-spacing: 0.6px;
  margin-top: 18px;
}
.services .card-usp { color: rgba(248,250,252,0.85) !important; border-left-color: var(--cyan); }
.services .card-usp strong { color: var(--cyan); }
@media (hover: hover) {
  .services .card { transition: transform .25s ease, box-shadow .25s ease; }
  .services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(67,97,238,0.42);
  }
  .services .card:hover .card-icon { box-shadow: 0 0 18px rgba(0,194,255,0.45); transition: box-shadow .25s ease; }
}

/* ---------- Prospectus (dark band) ---------- */
.prospectus { background: var(--navy); position: relative; overflow: hidden; }
.prospectus::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(0,194,255,0.16), transparent 70%); top: -200px; left: -140px; }
.prospectus::after { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(67,97,238,0.22), transparent 70%); bottom: -200px; right: -120px; }
.prospectus-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 50px; align-items: center; }
.prospectus .section-title { color: var(--white); }
.prospectus .section-sub { color: rgba(248,250,252,0.78); }
.prospectus .section-sub strong { color: var(--cyan); font-weight: 600; }
.prospectus-cta { text-align: left; }
.prospectus-note { margin-top: 16px; font-size: 0.85rem; color: rgba(248,250,252,0.6); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15, 27, 61, 0.78); backdrop-filter: blur(4px); }
.modal-box { position: relative; z-index: 2; background: var(--white); border-radius: 20px; padding: 36px 32px; max-width: 430px; width: 100%; box-shadow: var(--shadow-lg); animation: modalPop .3s ease; }
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--off-white); color: var(--navy); font-size: 1.2rem; line-height: 1; cursor: pointer; transition: background .2s; }
.modal-close:hover { background: var(--grad-soft); }
.modal-box h3 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.modal-sub { font-size: 0.92rem; color: var(--slate); margin-bottom: 22px; }
.modal-box .form-field label { color: var(--navy); }
.modal-box .form-field input { color: var(--navy); border: 1px solid var(--border); background: var(--off-white); }
.modal-box .form-field input:focus { border-color: var(--cyan); background: var(--white); }
.modal-box .form-field input::placeholder { color: var(--slate); opacity: 0.6; }
.modal-success { text-align: center; }
.modal-success .big { font-size: 2rem; margin-bottom: 10px; }
.modal-box .form-note { color: var(--slate); }
body.modal-lock { overflow: hidden; }

/* ---------- Why ---------- */
.why { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: start; }
.why-list { margin-top: 32px; display: grid; gap: 20px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-list strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.why-list div:not(.check) { color: var(--slate); font-size: 0.95rem; }

.why-quote {
  background: var(--navy); border-radius: 20px; padding: 40px 34px; color: var(--white);
  position: sticky; top: calc(var(--nav-h) + 30px);
  box-shadow: var(--shadow-lg);
}
.why-quote blockquote p { font-size: 1.05rem; font-weight: 400; line-height: 1.7; color: rgba(248,250,252,0.92); }
.why-quote blockquote footer { margin-top: 20px; font-size: 0.85rem; color: var(--cyan); letter-spacing: 0.5px; }
.why-badge { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.14); }
.why-badge strong { display: block; font-size: 1.6rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.why-badge span { font-size: 0.9rem; color: rgba(248,250,252,0.7); }

/* ---------- Process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; position: relative; transition: transform .25s, box-shadow .25s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num { font-size: 2.2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.step h3 { margin: 14px 0 8px; font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.step p { font-size: 0.92rem; color: var(--slate); }

/* ---------- Work ---------- */
.work { background: var(--off-white); }
.work-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.work-info { padding: 48px; }
.work-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: var(--grad-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.work-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.work-info p { color: var(--slate); font-size: 0.98rem; }
.work-points { margin: 22px 0; display: grid; gap: 12px; }
.work-points li { display: flex; gap: 12px; align-items: center; font-size: 0.95rem; color: var(--charcoal); font-weight: 500; }
.work-points .check { width: 20px; height: 20px; font-size: 11px; margin: 0; }
.work-note { font-size: 0.85rem !important; color: var(--slate); font-style: italic; }

.work-visual { background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 40px; position: relative; overflow: hidden; }
.work-visual::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(0,194,255,0.22), transparent 70%); top: -80px; right: -80px; }
.mock-phone { width: 210px; background: #0c1633; border-radius: 26px; padding: 12px; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; z-index: 2; }
.mock-screen { background: var(--navy-deep); border-radius: 18px; padding: 18px 14px; display: grid; gap: 10px; }
.mock-status { display: flex; align-items: center; gap: 8px; font-size: 10px; color: rgba(248,250,252,0.75); letter-spacing: 0.5px; margin-bottom: 6px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); }
.mock-line { height: 9px; border-radius: 5px; background: rgba(248,250,252,0.16); }
.mock-line.w70 { width: 70%; } .mock-line.w90 { width: 90%; } .mock-line.w60 { width: 60%; }
.mock-card { height: 46px; border-radius: 8px; background: linear-gradient(135deg, rgba(67,97,238,0.55), rgba(0,194,255,0.35)); }
.mock-card.short { height: 34px; }
.mock-btn { height: 30px; border-radius: 8px; background: var(--grad); margin-top: 4px; }

/* GSSMP real app mockup (iframe) */
.gssmp-frame { width: 332px; height: 690px; border: none; border-radius: 44px; background: #1A1A2E; box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; z-index: 2; overflow: hidden; }
@media (max-width: 480px) { .gssmp-frame { width: 320px; height: 665px; } }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); }
.price { font-size: 1.7rem; font-weight: 700; color: var(--navy); margin: 10px 0 4px; }
.price-card-accent { border: 1px solid rgba(67,97,238,0.4); background: linear-gradient(180deg, rgba(67,97,238,0.06), rgba(0,194,255,0.05)); }
.price-card-accent .price { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-desc { font-size: 0.87rem; color: #4A5568; }
.pricing-note { margin-top: 40px; background: var(--grad-soft); border: 1px solid rgba(67,97,238,0.2); border-radius: var(--radius); padding: 24px 28px; font-size: 0.95rem; color: var(--charcoal); }
.pricing-note strong { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq { background: var(--off-white); }
.faq-container { max-width: 820px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .25s; }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--navy); font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 500; color: var(--blue); transition: transform .25s; flex: 0 0 auto; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--slate); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(0,194,255,0.14), transparent 70%); top: -160px; right: -120px; }
.contact .section-title, .contact .section-sub, .contact .eyebrow { position: relative; z-index: 2; }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: rgba(248,250,252,0.72); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; z-index: 2; }
.contact-row { margin-top: 34px; display: grid; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: center; }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 19px; flex: 0 0 auto; }
.contact-label { display: block; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(248,250,252,0.5); }
.contact-item a, .contact-item span:last-child { color: var(--white); font-weight: 500; font-size: 0.98rem; }
.contact-item a:hover { color: var(--cyan); }

.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 34px; backdrop-filter: blur(8px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 12.5px; font-weight: 500; color: rgba(248,250,252,0.75); margin-bottom: 7px; letter-spacing: 0.4px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.07);
  color: var(--white); font-family: var(--font); font-size: 14.5px; outline: none;
  transition: border-color .2s, background .2s;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-field select option { color: var(--charcoal); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--cyan); background: rgba(255,255,255,0.1); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(248,250,252,0.4); }
.form-note { margin-top: 14px; font-size: 0.82rem; color: rgba(248,250,252,0.55); text-align: center; }
.form-success { text-align: center; padding: 26px 10px; color: var(--white); }
.form-success .big { font-size: 2rem; margin-bottom: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(248,250,252,0.75); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 46px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; color: rgba(248,250,252,0.6); max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; color: rgba(248,250,252,0.65); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(248,250,252,0.5); }
.footer-bottom .tagline { font-weight: 600; color: rgba(248,250,252,0.7); letter-spacing: 0.5px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3, .process-steps, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-quote { position: static; }
  .work-card { grid-template-columns: 1fr; }
  .work-visual { min-height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .prospectus-inner { grid-template-columns: 1fr; gap: 30px; }
  .prospectus-cta { text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--off-white); flex-direction: column; align-items: stretch;
    padding: 20px 6%; gap: 4px; border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(22,33,62,0.12);
    transform: translateY(-130%); transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a:not(.btn) { padding: 13px 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 14px; justify-content: center; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 50px); }
  .hero-stats { gap: 20px; margin-top: 40px; }
  .stat { flex: 1 1 40%; min-width: 40%; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .work-info { padding: 32px 24px; }
}

@media (max-width: 560px) {
  .grid-3, .process-steps, .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-inner { gap: 12px; }
  .trust-item { font-size: 13.5px; }
  .contact-form { padding: 24px 18px; }
  .stat { flex: 1 1 45%; min-width: 45%; }
  .container { width: 90%; }
}

/* ============================================================
   P10–P14 PREMIUM UPGRADE (style.v4)
   ============================================================ */

/* ---------- Hero grid pattern + orbs (P10) ---------- */
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,194,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 30%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; z-index: 1; pointer-events: none; filter: blur(10px); }
.orb-cyan { width: 380px; height: 380px; right: -60px; top: -80px; background: radial-gradient(circle, rgba(0,194,255,0.22), transparent 65%); animation: orbFloat 9s ease-in-out infinite; }
.orb-royal { width: 460px; height: 460px; left: 32%; bottom: -160px; background: radial-gradient(circle, rgba(67,97,238,0.28), transparent 65%); animation: orbFloat 11s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* ---------- Hero layout: copy + phone demo (P10) ---------- */
.hero-inner { max-width: 1160px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-demo { position: relative; z-index: 2; display: flex; justify-content: center; }
.phone-stage { position: relative; width: 392px; }
.phone-glow {
  position: absolute; inset: 8% 4%; border-radius: 60px; z-index: 0;
  background: radial-gradient(circle, rgba(0,194,255,0.35), transparent 70%);
  filter: blur(26px);
}
.hero-phone {
  position: relative; z-index: 2;
  width: 392px; height: 806px; border: none; border-radius: 46px;
  background: #0F172A;
  box-shadow: 0 30px 80px rgba(0,194,255,0.25), 0 18px 50px rgba(0,0,0,0.55);
}
.float-chip {
  position: absolute; z-index: 3; font-size: 12.5px; font-weight: 600; color: #fff;
  background: rgba(22,33,62,0.82); border: 1px solid rgba(0,194,255,0.45);
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,194,255,0.22);
  white-space: nowrap; animation: chipFloat 5s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-chip:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(0,194,255,0.4); }
.chip-gps { top: 14%; left: -74px; animation-delay: 0s; }
.chip-reports { top: 42%; right: -88px; animation-delay: 1.2s; }
.chip-approved { bottom: 12%; left: -58px; animation-delay: 2.1s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- P12a: Stats band ---------- */
.stats-band { background: var(--navy-deep); padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(560px circle at 50% 0%, rgba(67,97,238,0.16), transparent 70%); pointer-events: none; }
.stats-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; text-align: center; }
.stats-item strong { display: block; font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; }
.stats-item span { display: block; margin-top: 6px; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(248,250,252,0.62); }
.trusted-row { position: relative; z-index: 1; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.trusted-label { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(248,250,252,0.45); }
.trusted-name { font-size: 16px; font-weight: 700; color: var(--white); }
.trusted-dot { color: var(--cyan); }
.trusted-more { font-size: 14.5px; color: rgba(248,250,252,0.7); }

/* ---------- P13a: Services tabs ---------- */
.services .section-head.center { margin-inline: auto; }
.svc-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; position: relative; z-index: 2; }
.svc-tab {
  font-family: var(--font); font-size: 14px; font-weight: 600; color: rgba(248,250,252,0.72);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  transition: all .25s ease;
}
.svc-tab:hover { color: var(--white); border-color: rgba(0,194,255,0.5); transform: translateY(-2px); }
.svc-tab.active { background: var(--grad); color: var(--white); border-color: transparent; box-shadow: 0 8px 24px rgba(67,97,238,0.4); }
.svc-panel { display: none; position: relative; z-index: 2; animation: panelIn .35s ease; }
.svc-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.svc-panel-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.svc-copy h3 { font-size: 1.55rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.svc-copy p { color: rgba(248,250,252,0.78); font-size: 0.98rem; line-height: 1.65; }
.svc-usp { margin-top: 12px; border-left: 3px solid var(--cyan); padding-left: 14px; color: rgba(248,250,252,0.88) !important; }
.svc-usp strong { color: var(--cyan); }
.svc-meta { margin-top: 14px; color: var(--cyan) !important; font-size: 0.78rem !important; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
.svc-points { margin-top: 18px; display: grid; gap: 10px; }
.svc-points li { display: flex; gap: 12px; align-items: center; font-size: 0.93rem; color: rgba(248,250,252,0.85); }
.svc-points .check { width: 20px; height: 20px; font-size: 11px; margin: 0; flex: 0 0 auto; }
/* visual chips */
.svc-visual { display: flex; align-items: center; justify-content: center; min-height: 300px; }
/* --- phone mockup --- */
.mini-phone { width: 168px; background: #0c1633; border: 1px solid rgba(255,255,255,0.16); border-radius: 22px; padding: 10px 10px 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.45); display: grid; gap: 7px; }
.mp-status { display: flex; justify-content: space-between; align-items: center; font-size: 8px; letter-spacing: 0.5px; color: rgba(255,255,255,0.55); padding: 0 2px 2px; }
.mp-status span:last-child { letter-spacing: 2px; }
.mp-head { font-size: 11px; font-weight: 700; color: #fff; }
.mp-kpi { background: linear-gradient(135deg, rgba(67,97,238,0.55), rgba(0,194,255,0.4)); border-radius: 10px; padding: 7px 10px; }
.mp-kpi b { display: block; font-size: 14px; font-weight: 700; color: #fff; line-height: 1.1; }
.mp-kpi small { font-size: 7px; letter-spacing: 0.4px; color: rgba(255,255,255,0.75); text-transform: uppercase; }
.mp-row { display: flex; align-items: center; gap: 7px; font-size: 9px; color: rgba(248,250,252,0.85); background: rgba(255,255,255,0.05); border-radius: 7px; padding: 5px 8px; }
.mp-row i { width: 13px; height: 13px; border-radius: 4px; flex: 0 0 auto; }
.ico-gps { background: rgba(0,194,255,0.35); }
.ico-rep { background: rgba(67,97,238,0.45); }
.ico-ok { background: rgba(16,185,129,0.35); }
.mp-nav { display: flex; justify-content: center; gap: 8px; padding-top: 1px; }
.mp-nav span { width: 14px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.22); }
.mp-nav span.on { width: 20px; background: var(--cyan); }
/* --- browser dashboard mockup --- */
.mini-browser { width: 260px; background: #0c1633; border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.mini-bar { display: flex; align-items: center; gap: 5px; padding: 9px 11px; background: rgba(255,255,255,0.07); }
.mini-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.mini-bar i { flex: 1; height: 10px; border-radius: 5px; background: rgba(255,255,255,0.14); margin-left: 8px; }
.mini-side { width: 22%; height: 120px; background: rgba(67,97,238,0.22); }
.mw-body { display: flex; }
.mw-side { width: 30px; background: rgba(67,97,238,0.28); padding: 8px 6px; display: grid; gap: 7px; align-content: start; }
.mw-side span { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.3); }
.mw-main { flex: 1; padding: 9px; display: grid; gap: 7px; min-width: 0; }
.mw-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mw-kpis div { background: rgba(255,255,255,0.06); border-radius: 7px; padding: 5px 8px; }
.mw-kpis b { display: block; font-size: 11px; color: #fff; line-height: 1.1; }
.mw-kpis small { font-size: 7px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.3px; }
.mw-chart { display: flex; align-items: flex-end; gap: 5px; height: 50px; padding: 6px; background: rgba(255,255,255,0.04); border-radius: 7px; }
.mw-chart i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--cyan), rgba(67,97,238,0.75)); }
.mw-row { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.14); }
.mw-row.w70 { width: 70%; }
.mini-main { padding: 10px; display: grid; gap: 8px; }
.mini-chart { height: 46px; border-radius: 7px; background: linear-gradient(180deg, rgba(0,194,255,0.35), rgba(67,97,238,0.25)); }
.mini-row { height: 8px; border-radius: 4px; background: rgba(248,250,252,0.18); }
.mini-row.w70 { width: 70%; }
/* --- website mockup --- */
.ws-nav { display: flex; align-items: center; gap: 6px; padding: 8px 10px; background: rgba(255,255,255,0.04); }
.ws-logo { width: 15px; height: 15px; border-radius: 5px; background: var(--grad); flex: 0 0 auto; }
.ws-nav span { width: 20px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.2); }
.ws-nav b { width: 34px; height: 11px; border-radius: 6px; background: var(--grad); margin-left: auto; }
.ws-hero { margin: 8px 10px 0; padding: 9px 10px; background: linear-gradient(135deg, rgba(67,97,238,0.5), rgba(0,194,255,0.3)); border-radius: 8px; display: grid; gap: 5px; }
.ws-hero b { height: 6px; width: 82%; border-radius: 3px; background: rgba(255,255,255,0.85); }
.ws-hero b.w60 { width: 55%; background: rgba(255,255,255,0.5); }
.ws-hero i { width: 38px; height: 11px; border-radius: 6px; background: var(--grad); margin-top: 2px; }
.ws-cards { margin-top: 8px; }
.ws-cards div { display: grid; gap: 5px; align-content: center; justify-items: center; }
.ws-cards span { width: 13px; height: 13px; border-radius: 4px; background: rgba(0,194,255,0.4); }
.ws-cards em { width: 70%; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); }
.mini-hero { height: 52px; border-radius: 7px; margin: 10px; background: linear-gradient(135deg, rgba(67,97,238,0.55), rgba(0,194,255,0.35)); }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 10px 12px; }
.mini-cards div { height: 40px; border-radius: 7px; background: rgba(248,250,252,0.12); }
/* --- automation flow mockup --- */
.mini-flow { display: flex; align-items: center; gap: 12px; }
.flow-node { background: rgba(255,255,255,0.06); border: 1px solid rgba(0,194,255,0.4); border-radius: 14px; padding: 14px 14px; text-align: center; font-size: 12.5px; font-weight: 600; color: #fff; min-width: 84px; }
.flow-node span { display: block; margin-bottom: 6px; }
.flow-node span svg { width: 20px; height: 20px; color: var(--cyan); margin: 0 auto; }
.flow-node.hot { border-color: rgba(67,97,238,0.7); background: rgba(67,97,238,0.18); }
.flow-node.hot span svg { color: #818cf8; }
.flow-node.ok { border-color: rgba(16,185,129,0.6); background: rgba(16,185,129,0.12); }
.flow-node.ok span svg { color: #10b981; }
.flow-arrow { position: relative; width: 26px; height: 2px; background: rgba(0,194,255,0.45); border-radius: 2px; flex: 0 0 auto; }
.flow-arrow::after { content: ''; position: absolute; right: -1px; top: -3px; border: 4px solid transparent; border-left-color: var(--cyan); }
.flow-arrow i { position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px rgba(0,194,255,0.9); animation: flowPulse 1.6s linear infinite; }
@keyframes flowPulse { 0% { left: 0; opacity: 1; } 100% { left: calc(100% - 8px); opacity: 1; } }
/* --- care shield mockup --- */
.mini-shield { width: 200px; border-radius: 18px; padding: 20px 18px; flex-direction: column; gap: 14px; background: rgba(0,194,255,0.06); border: 1px solid rgba(0,194,255,0.4); box-shadow: 0 0 40px rgba(0,194,255,0.2); display: flex; align-items: center; justify-content: center; }
.ms-svg { width: 44px; height: 44px; }
.ms-list { display: grid; gap: 7px; width: 100%; }
.ms-list span { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: rgba(248,250,252,0.9); background: rgba(255,255,255,0.05); border-radius: 8px; padding: 7px 10px; }
.ms-list i { position: relative; width: 13px; height: 13px; border-radius: 50%; background: rgba(16,185,129,0.18); border: 1px solid rgba(16,185,129,0.7); flex: 0 0 auto; }
.ms-list i::after { content: ''; position: absolute; left: 3.5px; top: 1.5px; width: 3.5px; height: 6.5px; border: solid #10b981; border-width: 0 1.6px 1.6px 0; transform: rotate(45deg); }
/* --- consulting doc mockup --- */
.mini-doc { width: 200px; background: #0c1633; border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; padding: 16px 14px; display: grid; gap: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.md-head { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 1px; }
.md-row { display: flex; align-items: center; gap: 8px; font-size: 10px; color: rgba(248,250,252,0.88); background: rgba(255,255,255,0.05); border-radius: 8px; padding: 7px 10px; }
.md-row i { position: relative; width: 13px; height: 13px; border-radius: 50%; background: rgba(16,185,129,0.18); border: 1px solid rgba(16,185,129,0.7); flex: 0 0 auto; }
.md-row i::after { content: ''; position: absolute; left: 3.5px; top: 1.5px; width: 3.5px; height: 6.5px; border: solid #10b981; border-width: 0 1.6px 1.6px 0; transform: rotate(45deg); }

/* ---------- P13b: Use-case cards ---------- */
.usecases { background: var(--off-white); }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.use-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.use-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,194,255,0.5); }
.use-icon { font-size: 28px; width: 56px; height: 56px; border-radius: 14px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.use-card h3 { font-size: 1.08rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.use-card p { font-size: 0.92rem; color: var(--slate); }
.use-cta { text-align: center; margin-top: 44px; }

/* ---------- P11: Flow diagram ---------- */
.flow { background: var(--white); position: relative; }
.flow-diagram { display: flex; align-items: center; justify-content: center; gap: 0; margin: 20px 0 44px; }
.flow-node-card {
  flex: 0 0 auto; width: 216px; text-align: center;
  background: var(--white); border-radius: 18px; padding: 28px 20px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.flow-node-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.flow-node-card.input { border-top: 3px solid var(--cyan); }
.flow-node-card.engine { border-top: 3px solid var(--blue); background: linear-gradient(180deg, rgba(67,97,238,0.05), rgba(0,194,255,0.04)); }
.flow-node-card.output { border-top: 3px solid var(--success); }
.flow-icon { font-size: 30px; margin-bottom: 10px; }
.flow-node-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.flow-node-card p { font-size: 0.85rem; color: var(--slate); }
.flow-connector { flex: 1 1 90px; max-width: 130px; height: 3px; background: linear-gradient(90deg, rgba(67,97,238,0.55), rgba(0,194,255,0.55)); border-radius: 2px; position: relative; margin: 0 14px; }
.flow-dot { position: absolute; top: -4px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: flowDot 2.2s linear infinite; }
@keyframes flowDot { 0% { left: 0; opacity: 1; } 100% { left: calc(100% - 11px); opacity: 1; } }
.flow-explainer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin-inline: auto; }
.flow-step { display: flex; gap: 14px; align-items: flex-start; background: var(--off-white); border-radius: 14px; padding: 20px 18px; }
.flow-num { flex: 0 0 auto; font-size: 1.15rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.flow-step strong { display: block; color: var(--navy); font-size: 0.98rem; margin-bottom: 4px; }
.flow-step p { font-size: 0.86rem; color: var(--slate); }

/* ---------- P12b: Case study ---------- */
.case-row { display: grid; gap: 14px; margin: 18px 0; }
.case-block { background: var(--off-white); border-radius: 12px; padding: 14px 16px; border-left: 3px solid var(--cyan); }
.case-block h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.case-block p { font-size: 0.92rem !important; color: var(--charcoal) !important; line-height: 1.55; }
.case-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.case-chip { font-size: 12.5px; font-weight: 600; color: var(--navy); background: var(--grad-soft); border: 1px solid rgba(67,97,238,0.25); border-radius: 999px; padding: 7px 14px; }

/* ---------- P12c: Trust badges ---------- */
.trust-badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.badge {
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 18px; box-shadow: 0 4px 16px rgba(22,33,62,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0,194,255,0.5); }

/* ---------- P14: Micro-interactions ---------- */
.btn:active { transform: scale(0.97); }
.card, .step, .price-card, .use-card, .faq-item, .work-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.nav.scrolled { background: rgba(248,250,252,0.92); border-bottom: 1px solid rgba(67,97,238,0.18); }

/* custom cursor glow (desktop only) */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 340px; height: 340px;
  border-radius: 50%; pointer-events: none; z-index: 5;
  background: radial-gradient(circle, rgba(0,194,255,0.08), transparent 65%);
  transform: translate(-50%, -50%); display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow { display: block; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE ADDITIONS (P10–P14)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-demo { order: 2; padding-top: 34px; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 34px 20px; }
  .svc-panel-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-visual { min-height: 220px; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-diagram { flex-direction: column; gap: 18px; }
  .flow-connector { width: 3px; height: 44px; max-width: none; margin: 0; background: linear-gradient(180deg, rgba(67,97,238,0.55), rgba(0,194,255,0.55)); }
  .flow-dot { top: 0; left: -4px; animation: flowDotV 2.2s linear infinite; }
  @keyframes flowDotV { 0% { top: 0; opacity: 1; } 100% { top: calc(100% - 11px); opacity: 1; } }
  .flow-explainer { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 768px) {
  .float-chip { font-size: 11px; padding: 6px 11px; }
  .chip-gps { left: 0; top: -24px; }
  .chip-reports { right: 8px; top: 34%; }
  .chip-approved { left: 0; bottom: -10px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .svc-tabs::-webkit-scrollbar { display: none; }
  .svc-tab { flex: 0 0 auto; }
  .use-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-phone { width: 340px; height: 700px; border-radius: 40px; }
  .phone-stage { width: 340px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  .badge { font-size: 12.5px; padding: 8px 14px; }
}

/* ============ CLAUDE v1 — AUTOMATION FLOW (jngf) ============ */
.jngf{
  position:relative;padding:88px 24px 96px;overflow:hidden;font-family:var(--font);
  background:
    radial-gradient(900px 520px at 78% 12%, rgba(67,97,238,.30), transparent 62%),
    radial-gradient(700px 460px at 14% 92%, rgba(0,194,255,.14), transparent 60%),
    linear-gradient(165deg,#0B1226 0%, var(--navy) 55%, #1D2E5C 100%);
}
/* dot lattice */
.jngf::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:radial-gradient(rgba(143,180,255,.24) 1.5px, transparent 1.5px);
  background-size:34px 34px;
  -webkit-mask-image:linear-gradient(105deg,transparent 0%, rgba(0,0,0,.45) 38%, #000 78%);
          mask-image:linear-gradient(105deg,transparent 0%, rgba(0,0,0,.45) 38%, #000 78%);
}
.jngf-in{position:relative;max-width:1140px;margin:0 auto;z-index:2}

/* ---------- heading ---------- */
.jngf-eyebrow{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--cyan);
  font-weight:500;text-align:center}
.jngf h2{font-size:clamp(28px,4.2vw,44px);line-height:1.18;letter-spacing:-.02em;font-weight:700;
  color:#fff;text-align:center;margin:14px 0 12px}
.jngf-sub{font-size:16px;line-height:1.65;color:#AFBBD4;text-align:center;
  max-width:560px;margin:0 auto 54px;font-weight:300}

/* ---------- rail ---------- */
.jngf-rail{display:flex;align-items:stretch;justify-content:center;gap:0}

/* ---------- node ---------- */
.jngf-node{flex:1 1 0;min-width:0;display:flex;flex-direction:column;align-items:center;text-align:center}
.jngf-node .jngf-card{flex:1 0 auto;display:flex;flex-direction:column;justify-content:center}
.jngf-card{
  position:relative;width:100%;padding:30px 24px 26px;border-radius:22px;
  background:linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  box-shadow:0 22px 48px -26px rgba(0,0,0,.85);
  transition:transform .45s cubic-bezier(.2,.9,.3,1), box-shadow .45s ease;
}
/* gradient border, cyan → royal */
.jngf-card::before{
  content:"";position:absolute;inset:0;border-radius:22px;padding:1.4px;
  background:linear-gradient(145deg, rgba(0,194,255,.75), rgba(67,97,238,.55) 48%, rgba(67,97,238,.12));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;
  transition:opacity .45s ease;
}
/* glow bloom on hover */
.jngf-card::after{
  content:"";position:absolute;inset:-2px;border-radius:24px;pointer-events:none;opacity:0;
  box-shadow:0 0 46px -6px rgba(0,194,255,.55), 0 0 90px -14px rgba(67,97,238,.5);
  transition:opacity .45s ease;
}
.jngf-node:hover .jngf-card{transform:translateY(-7px)}
.jngf-node:hover .jngf-card::after{opacity:1}

.jngf-ico{width:60px;height:60px;margin:0 auto 18px;border-radius:19px;display:grid;place-items:center;
  color:var(--cyan);
  background:linear-gradient(150deg, rgba(0,194,255,.20), rgba(67,97,238,.16));
  border:1px solid rgba(0,194,255,.28);
  box-shadow:0 10px 26px -14px rgba(0,194,255,.9);
  transition:transform .45s cubic-bezier(.2,.9,.3,1)}
.jngf-node:hover .jngf-ico{transform:scale(1.07)}

.jngf-card h3{font-size:19px;font-weight:600;color:#fff;letter-spacing:-.2px;margin-bottom:12px}
.jngf-chips{display:flex;flex-wrap:wrap;gap:7px;justify-content:center}
.jngf-chip{font-size:11.5px;font-weight:500;color:#CFE0F7;padding:5px 12px;border-radius:100px;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.13);white-space:nowrap}
.jngf-note{font-size:13px;line-height:1.6;color:#93A3C2;margin-top:16px;max-width:250px;font-weight:300;min-height:62px}
.jngf-step{position:absolute;top:16px;right:18px;font-size:10.5px;font-weight:700;letter-spacing:.14em;
  color:rgba(255,255,255,.22)}

/* ---------- connector ---------- */
.jngf-conn{flex:0 0 108px;display:grid;place-items:center;padding-bottom:78px}
.jngf-conn svg{overflow:visible}
.jngf-track{stroke:rgba(143,180,255,.30);stroke-width:2.4;stroke-linecap:round;stroke-dasharray:9 9;
  animation:jngfDash 1.5s linear infinite}
@keyframes jngfDash{to{stroke-dashoffset:-18}}
.jngf-pulse{fill:var(--cyan);filter:drop-shadow(0 0 7px rgba(0,194,255,.95))}
.jngf-arrow{stroke:rgba(143,180,255,.65);stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;fill:none}
.jngf-conn-h{display:grid}
.jngf-conn-v{display:none}
/* hover anywhere on the rail speeds the flow up */
.jngf-rail:hover .jngf-track{animation-duration:.55s}
.jngf-rail:hover .jngf-pulse{animation-duration:1.1s}
.jngf-dotmove-h{animation:jngfRunH 2.4s cubic-bezier(.55,0,.45,1) infinite}
@keyframes jngfRunH{0%{transform:translateX(0);opacity:0}12%{opacity:1}86%{opacity:1}100%{transform:translateX(84px);opacity:0}}
.jngf-dotmove-v{animation:jngfRunV 2.4s cubic-bezier(.55,0,.45,1) infinite}
@keyframes jngfRunV{0%{transform:translateY(0);opacity:0}12%{opacity:1}86%{opacity:1}100%{transform:translateY(56px);opacity:0}}
.jngf-conn:nth-of-type(4) .jngf-dotmove-h,
.jngf-conn:nth-of-type(4) .jngf-dotmove-v{animation-delay:-1.2s}

/* ---------- footer strip ---------- */
.jngf-foot{margin-top:52px;display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.jngf-fchip{display:inline-flex;align-items:center;gap:9px;font-size:13px;font-weight:500;color:#DCE7F9;
  padding:10px 18px;border-radius:100px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);backdrop-filter:blur(10px)}
.jngf-fchip svg{color:var(--cyan);flex:none}

/* ---------- responsive ---------- */
@media (max-width:860px){
  .jngf{padding:64px 20px 72px}
  .jngf-rail{flex-direction:column;align-items:stretch;max-width:420px;margin:0 auto}
  .jngf-conn{flex:0 0 auto;padding:14px 0}
  .jngf-conn-h{display:none}
  .jngf-conn-v{display:grid}
  .jngf-note{max-width:none;min-height:0}
  .jngf-conn{padding-bottom:0}
  .jngf-sub{margin-bottom:38px}
}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition-duration:.01ms!important}
}


/* ============ CLAUDE v1 — USE-CASE ICONS (jngi) ============ */
.jngi-chip{
  width:56px;height:56px;border-radius:50%;display:grid;place-items:center;flex:none;
  color:var(--cyan);
  background:linear-gradient(150deg, rgba(67,97,238,.12), rgba(0,194,255,.12));
  border:1px solid rgba(0,194,255,.22);
  transition:transform .4s cubic-bezier(.2,.9,.3,1), box-shadow .4s ease, border-color .4s ease;
}
.jngi-card:hover .jngi-chip,
.jngi-chip:hover{
  transform:translateY(-3px) scale(1.05);
  border-color:rgba(0,194,255,.55);
  box-shadow:0 0 0 6px rgba(0,194,255,.07), 0 14px 34px -16px rgba(0,194,255,.85);
}
.jngi-chip svg{display:block}
/* light-background variant */
.jngi-chip.on-light{
  background:linear-gradient(150deg, rgba(67,97,238,.12), rgba(0,194,255,.12));
  border-color:rgba(67,97,238,.20);color:#0284A6;
}



/* ============ CLAUDE v1 — HERO CHIP SVG ICONS ============ */
.float-chip svg { flex: none; color: var(--cyan); }
