/* Rashida Enterprises Services — Innovation Hub */
:root {
  --primary: #FF7849;
  --primary-2: #FFB36B;
  --indigo: #5A67FF;
  --indigo-2: #8B9DFF;
  --emerald: #39D98A;
  --emerald-2: #8AF5C4;
  --yellow: #FFD166;
  --bg: #FFFDFC;
  --bg-soft: #F8F7FF;
  --card: rgba(255,255,255,0.78);
  --text: #1A2238;
  --muted: #667085;
  --border: #E8EAF2;
  --grad-primary: linear-gradient(135deg, #FF7849 0%, #FFB36B 100%);
  --grad-indigo: linear-gradient(135deg, #5A67FF 0%, #8B9DFF 100%);
  --grad-growth: linear-gradient(135deg, #39D98A 0%, #8AF5C4 100%);
  --grad-hero: linear-gradient(180deg, #FFFDFC 0%, #F8F7FF 100%);
  --shadow-sm: 0 4px 14px rgba(26,34,56,.06);
  --shadow-md: 0 18px 40px -12px rgba(90,103,255,.18);
  --shadow-lg: 0 30px 80px -20px rgba(26,34,56,.18);
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 8px; }

h1, h2, h3, h4 { font-family: 'Clash Display', 'Manrope', sans-serif; font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.eyebrow { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--indigo); display: inline-flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--grad-primary); border-radius: 2px; }
p.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(255,253,252,.72);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(255,253,252,.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--container); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.15rem; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--grad-primary);
  display: grid; place-items: center; color: #fff; font-weight: 700;
  box-shadow: 0 8px 20px rgba(255,120,73,.35);
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 9px 16px; border-radius: 999px;
  font-size: .94rem; color: var(--text); font-weight: 500;
  transition: all .2s ease;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--indigo); }
.nav-links a.active { background: var(--text); color: #fff; }
.nav-cta { padding: 10px 20px !important; background: var(--grad-primary); color: #fff !important; font-weight: 600; box-shadow: 0 8px 20px rgba(255,120,73,.3); }
.nav-cta:hover { transform: translateY(-1px); }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; background: var(--bg-soft); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: all .25s; }
.hamburger span::before, .hamburger span::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--text); transition: all .25s; }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.nav.open .hamburger span { background: transparent; }
.nav.open .hamburger span::before { top: 0; transform: rotate(45deg); }
.nav.open .hamburger span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 70px 16px auto 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
    padding: 16px; box-shadow: var(--shadow-lg);
    transform: translateY(-12px) scale(.98); opacity: 0; pointer-events: none;
    transition: all .25s ease;
  }
  .nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; }
}

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .98rem; transition: all .25s ease; white-space: nowrap; }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: 0 14px 30px -8px rgba(255,120,73,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(255,120,73,.6); }
.btn-ghost { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: var(--indigo); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(40px, 6vw, 90px) 0 clamp(80px, 12vw, 140px); background: var(--grad-hero); overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .55; }
.blob { position: absolute; filter: blur(60px); opacity: .55; border-radius: 50%; z-index: 0; animation: morph 18s ease-in-out infinite; }
.blob.b1 { width: 420px; height: 420px; background: radial-gradient(circle, #FFB36B 0%, transparent 70%); top: -120px; right: -100px; }
.blob.b2 { width: 380px; height: 380px; background: radial-gradient(circle, #8B9DFF 0%, transparent 70%); bottom: -160px; left: -80px; animation-delay: -6s; }
.blob.b3 { width: 280px; height: 280px; background: radial-gradient(circle, #8AF5C4 0%, transparent 70%); top: 40%; right: 30%; animation-delay: -12s; }
@keyframes morph {
  0%,100% { border-radius: 50% 50% 50% 50%; transform: translate(0,0) scale(1); }
  33% { border-radius: 60% 40% 30% 70%; transform: translate(20px,-30px) scale(1.08); }
  66% { border-radius: 30% 70% 60% 40%; transform: translate(-20px,20px) scale(.95); }
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } }
.hero-copy h1 { margin: 16px 0 20px; }
.hero-copy h1 .accent { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: .9rem; }
.hero-trust .dots { display: flex; }
.hero-trust .dots span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: var(--grad-indigo); }
.hero-trust .dots span:nth-child(2) { background: var(--grad-primary); }
.hero-trust .dots span:nth-child(3) { background: var(--grad-growth); }

/* Floating hero cards */
.hero-stage { position: relative; min-height: 520px; }
.float-card {
  position: absolute; background: var(--card); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.fc-1 { top: 0; left: 0; width: 260px; }
.fc-2 { top: 30%; right: 0; width: 240px; animation-delay: -2s; }
.fc-3 { bottom: 0; left: 12%; width: 280px; animation-delay: -4s; }
.fc-pulse { position: absolute; top: 12%; right: 18%; width: 130px; height: 130px; border-radius: 50%; background: var(--grad-indigo); display: grid; place-items: center; color: #fff; box-shadow: 0 20px 50px rgba(90,103,255,.5); animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 20px 50px rgba(90,103,255,.5), 0 0 0 0 rgba(90,103,255,.5); } 50% { box-shadow: 0 20px 50px rgba(90,103,255,.5), 0 0 0 24px rgba(90,103,255,0); } }
.fc-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; margin-bottom: 10px; }
.fc-icon.a { background: var(--grad-primary); }
.fc-icon.b { background: var(--grad-indigo); }
.fc-icon.c { background: var(--grad-growth); }
.float-card h4 { font-size: 1rem; margin-bottom: 4px; font-family: 'Manrope', sans-serif; font-weight: 600; }
.float-card p { font-size: .82rem; color: var(--muted); }
.fc-bar { margin-top: 10px; height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.fc-bar > i { display: block; height: 100%; width: 72%; background: var(--grad-growth); border-radius: 999px; animation: fill 2.4s ease-out forwards; transform-origin: left; transform: scaleX(0); }
@keyframes fill { to { transform: scaleX(1); } }

@media (max-width: 960px) {
  .hero-stage { min-height: 440px; max-width: 520px; margin: 0 auto; }
}

/* ===== Section heading ===== */
.sec-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.sec-head h2 { margin: 14px 0 14px; }
.sec-head.left { margin-left: 0; text-align: left; }

/* ===== Story scroll ===== */
.story-section { background: var(--bg-soft); position: relative; }
.story-grid { display: grid; gap: 24px; }
.story-row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 22px;
  align-items: center; padding: 26px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  transition: all .35s ease;
}
.story-row:hover { transform: translateX(6px); border-color: var(--indigo); box-shadow: var(--shadow-md); }
.story-num { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-family: 'Clash Display'; font-size: 1.4rem; font-weight: 700; color: #fff; background: var(--grad-indigo); }
.story-row:nth-child(1) .story-num { background: var(--grad-primary); }
.story-row:nth-child(3) .story-num { background: var(--grad-growth); }
.story-row:nth-child(5) .story-num { background: linear-gradient(135deg, var(--yellow), #FFB36B); }
.story-row h3 { margin-bottom: 4px; }
.story-arrow { color: var(--muted); font-size: 1.5rem; }
@media (max-width: 640px) { .story-row { grid-template-columns: 48px 1fr; } .story-arrow { display: none; } }

/* ===== Cards (services) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-hero); opacity: 0; transition: opacity .35s;
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center; color: #fff;
  background: var(--grad-indigo); margin-bottom: 22px;
  box-shadow: 0 12px 26px rgba(90,103,255,.3);
}
.card:nth-child(6n+1) .card-icon { background: var(--grad-primary); box-shadow: 0 12px 26px rgba(255,120,73,.32); }
.card:nth-child(6n+3) .card-icon { background: var(--grad-growth); box-shadow: 0 12px 26px rgba(57,217,138,.32); }
.card:nth-child(6n+4) .card-icon { background: linear-gradient(135deg, var(--yellow), var(--primary)); }
.card:nth-child(6n+5) .card-icon { background: var(--grad-indigo); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 18px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--indigo); font-weight: 600; font-size: .92rem; }
.card-link:hover .arrow { transform: translateX(4px); }
.arrow { transition: transform .25s; }

/* Why-us asymmetric */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-grid .card:nth-child(1), .why-grid .card:nth-child(5) { grid-row: span 1; }
@media (max-width: 880px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== Roadmap ===== */
.roadmap { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.roadmap-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: 18px; padding: 30px 4px 40px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.roadmap-track::-webkit-scrollbar { height: 8px; }
.roadmap-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.road-step {
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: relative;
  transition: all .3s ease;
}
.road-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--indigo); }
.road-num { font-family: 'Clash Display'; font-weight: 700; font-size: 1.2rem; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.road-step h4 { font-family: 'Clash Display'; font-size: 1.4rem; margin: 6px 0 6px; }
.road-step p { color: var(--muted); font-size: .92rem; }
.road-dot { position: absolute; top: -8px; right: 20px; width: 16px; height: 16px; border-radius: 50%; background: var(--grad-indigo); box-shadow: 0 0 0 6px #fff, 0 4px 14px rgba(90,103,255,.3); }

/* Stats */
.stats { background: var(--text); color: #fff; border-radius: var(--radius-lg); padding: 50px clamp(24px,5vw,60px); display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,120,73,.35) 0%, transparent 70%); }
.stat { position: relative; }
.stat strong { font-family: 'Clash Display'; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.stat span { color: rgba(255,255,255,.7); font-size: .92rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all .25s; }
.faq-item.open { border-color: var(--indigo); box-shadow: var(--shadow-md); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 600; text-align: left; font-size: 1.02rem; }
.faq-q .ic { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; flex-shrink: 0; transition: all .25s; }
.faq-item.open .faq-q .ic { background: var(--grad-primary); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* CTA band */
.cta-band { background: var(--grad-indigo); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ''; position: absolute; border-radius: 50%; filter: blur(40px); }
.cta-band::before { top: -50px; left: -50px; width: 200px; height: 200px; background: rgba(255,209,102,.4); }
.cta-band::after { bottom: -80px; right: -80px; width: 260px; height: 260px; background: rgba(57,217,138,.35); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0 auto 28px; max-width: 560px; }
.cta-band .btn-primary { background: #fff; color: var(--text); box-shadow: 0 14px 40px rgba(0,0,0,.2); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* Curved divider */
.divider { display: block; width: 100%; height: 80px; }

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

/* ===== Footer ===== */
.footer { background: var(--text); color: rgba(255,255,255,.75); padding: 70px 0 30px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { font-family: 'Manrope'; color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer a { display: block; padding: 6px 0; color: rgba(255,255,255,.7); font-size: .94rem; transition: color .2s; }
.footer a:hover { color: var(--primary-2); }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer p { font-size: .94rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; }

/* Forms */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font: inherit; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--text); transition: all .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(90,103,255,.12); }
.field textarea { min-height: 120px; resize: vertical; }
.field .err { color: #e23636; font-size: .8rem; min-height: 1em; }
.form-success { display: none; padding: 18px; background: rgba(57,217,138,.14); color: #157a4f; border-radius: 14px; margin-bottom: 16px; font-weight: 500; }
.form-success.show { display: block; }

.info-cards { display: grid; gap: 16px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: all .25s; }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--indigo); }
.info-card .ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--grad-primary); flex-shrink: 0; }
.info-card:nth-child(2) .ic { background: var(--grad-indigo); }
.info-card:nth-child(3) .ic { background: var(--grad-growth); }
.info-card:nth-child(4) .ic { background: linear-gradient(135deg, var(--yellow), var(--primary)); }
.info-card h4 { font-size: 1rem; margin-bottom: 2px; font-family: 'Manrope'; }
.info-card a, .info-card p { color: var(--muted); font-size: .94rem; }
.info-card a:hover { color: var(--indigo); }

.map-wrap { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 260px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px rgba(37,211,102,.45); animation: floaty 4s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.08); }

/* Service detail blocks */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 50px 0; }
.svc-block.alt { direction: rtl; }
.svc-block.alt > * { direction: ltr; }
@media (max-width: 880px) { .svc-block, .svc-block.alt { grid-template-columns: 1fr; direction: ltr; } }
.svc-art { background: var(--grad-hero); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden; min-height: 320px; display: grid; place-items: center; }
.svc-art .blob { width: 220px; height: 220px; opacity: .5; filter: blur(50px); animation: morph 14s ease-in-out infinite; }
.svc-art svg { position: relative; z-index: 1; max-width: 280px; }
.svc-list { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.svc-list li { display: flex; gap: 10px; align-items: flex-start; padding: 10px 14px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.svc-list li::before { content: ''; width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--grad-primary); flex-shrink: 0; }

/* AI Solutions */
.sol-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 24px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 880px) { .sol-block { grid-template-columns: 1fr; } }
.sol-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 20px; }
.metric { background: var(--bg-soft); border-radius: 14px; padding: 16px; text-align: center; }
.metric strong { display: block; font-family: 'Clash Display'; font-size: 1.6rem; color: var(--indigo); }
.metric span { font-size: .8rem; color: var(--muted); }
.ba-toggle { background: var(--bg-soft); border-radius: 18px; padding: 22px; }
.ba-tabs { display: flex; gap: 6px; background: #fff; padding: 4px; border-radius: 999px; margin-bottom: 16px; }
.ba-tab { flex: 1; padding: 10px 14px; border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--muted); transition: all .25s; }
.ba-tab.active { background: var(--text); color: #fff; }
.ba-panel { display: none; }
.ba-panel.active { display: block; animation: fadein .35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.ba-list { display: grid; gap: 8px; }
.ba-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--text); }
.ba-list li::before { content: '✓'; color: var(--emerald); font-weight: 700; }
.ba-panel.before .ba-list li::before { content: '×'; color: #e23636; }

/* Value chips */
.values { display: flex; flex-wrap: wrap; gap: 14px; }
.chip { padding: 14px 22px; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-weight: 600; transition: all .25s; }
.chip:hover { background: var(--grad-primary); color: #fff; border-color: transparent; transform: translateY(-3px); }
.chip:nth-child(2):hover { background: var(--grad-indigo); }
.chip:nth-child(3):hover { background: var(--grad-growth); }
.chip:nth-child(4):hover { background: linear-gradient(135deg, var(--yellow), var(--primary)); }

/* About split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }
.about-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-primary); }
.about-card:nth-child(2)::before { background: var(--grad-indigo); }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.6rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal ul { margin-bottom: 14px; color: var(--text); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }

/* Page hero */
.page-hero { padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px); background: var(--grad-hero); position: relative; overflow: hidden; }
.page-hero .blob { animation: morph 16s ease-in-out infinite; }
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { margin: 14px 0 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }

/* Progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-primary); z-index: 99; transition: width .1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
