/* ============================================================
   Neha App Development — Design System
   ============================================================ */
:root {
  --primary: #7C8CFF;
  --secondary: #B8A8FF;
  --accent: #8FD8D2;
  --highlight: #FFC8A2;
  --bg: #FAFAFC;
  --bg-section: #F3F4F8;
  --card-bg: rgba(255, 255, 255, 0.75);
  --text: #23263A;
  --text-muted: #6E738C;
  --border: #E6E8F0;

  --grad-hero: linear-gradient(135deg, #F9F7FF 0%, #EEF2FF 50%, #F6FCFF 100%);
  --grad-primary: linear-gradient(135deg, #7C8CFF 0%, #B8A8FF 100%);
  --grad-secondary: linear-gradient(135deg, #8FD8D2 0%, #C8F2EE 100%);
  --grad-accent: linear-gradient(135deg, #FFC8A2 0%, #FFDDBF 100%);

  --shadow-sm: 0 4px 14px rgba(35, 38, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(124, 140, 255, 0.12);
  --shadow-lg: 0 25px 60px rgba(124, 140, 255, 0.18);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 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, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 252, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: #fff; font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto; transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .hamburger { display: block; }
  .nav-mobile {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px; display: none; flex-direction: column; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 8px 0; font-weight: 600; color: var(--text); }
}
@media (min-width: 901px) { .nav-mobile { display: none !important; } }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-section); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(124,140,255,0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--grad-hero);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero p.lead { font-size: 1.15rem; margin-bottom: 32px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .stat .num {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.6rem;
  background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-trust .stat .lbl { font-size: 0.85rem; color: var(--text-muted); }

.hero-visual { position: relative; height: 560px; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.7; pointer-events: none; }
.orb-1 { width: 320px; height: 320px; background: var(--primary); top: -40px; right: -40px; opacity: 0.35; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 260px; height: 260px; background: var(--accent); bottom: -20px; left: -40px; opacity: 0.4; animation: float 10s ease-in-out infinite reverse; }
.orb-3 { width: 200px; height: 200px; background: var(--highlight); top: 40%; left: 50%; opacity: 0.35; animation: float 12s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

/* Phone mockup */
.phone {
  position: absolute;
  width: 280px; height: 560px;
  background: linear-gradient(145deg, #2a2d44, #1a1c2e);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.06);
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
  padding: 36px 18px 18px;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; background: #1a1c2e; border-radius: 14px; z-index: 3;
}
.phone-app-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding: 0 6px;
}
.phone-app-bar .dot { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-primary); }
.phone-app-bar .lines { flex: 1; margin: 0 12px; }
.phone-app-bar .lines span { display: block; height: 6px; border-radius: 3px; background: rgba(35,38,58,0.1); margin-bottom: 4px; }
.phone-app-bar .lines span:last-child { width: 60%; }
.phone-card {
  background: #fff; border-radius: 16px; padding: 14px;
  box-shadow: 0 4px 14px rgba(35,38,58,0.05); margin-bottom: 10px;
}
.phone-card.hl { background: var(--grad-primary); color: #fff; }
.phone-card .t { font-weight: 700; font-size: 0.8rem; margin-bottom: 4px; }
.phone-card .v { font-family: 'Poppins'; font-weight: 800; font-size: 1.3rem; }
.phone-card.hl .v { color: #fff; }
.phone-card .s { font-size: 0.65rem; color: var(--text-muted); }
.phone-card.hl .s { color: rgba(255,255,255,0.8); }
.phone-bars { display: flex; gap: 6px; align-items: flex-end; height: 50px; margin-top: 8px; }
.phone-bars span { flex: 1; background: rgba(124,140,255,0.5); border-radius: 4px 4px 0 0; }
.phone-bars span:nth-child(1) { height: 40%; }
.phone-bars span:nth-child(2) { height: 70%; }
.phone-bars span:nth-child(3) { height: 55%; background: var(--accent); }
.phone-bars span:nth-child(4) { height: 90%; }
.phone-bars span:nth-child(5) { height: 60%; background: var(--highlight); }

/* Floating glass cards */
.glass-card {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex; gap: 12px; align-items: center;
}
.glass-card .icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad-primary); display: grid; place-items: center; color: #fff;
  flex-shrink: 0;
}
.glass-card .icon.green { background: var(--grad-secondary); }
.glass-card .icon.orange { background: var(--grad-accent); }
.glass-card .t { font-weight: 700; font-size: 0.9rem; }
.glass-card .s { font-size: 0.75rem; color: var(--text-muted); }

.glass-card.gc-1 { top: 60px; left: -10px; animation: float 6s ease-in-out infinite; }
.glass-card.gc-2 { bottom: 80px; right: -10px; animation: float 7s ease-in-out infinite reverse; }
.glass-card.gc-3 { bottom: 200px; left: -30px; animation: float 8s ease-in-out infinite; }

@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 480px; max-width: 360px; margin: 0 auto; }
  .glass-card.gc-3 { display: none; }
}

/* ============================================================
   Cards / Grids
   ============================================================ */
.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); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.card .icon-box.green { background: var(--grad-secondary); }
.card .icon-box.orange { background: var(--grad-accent); }
.card .icon-box.purple { background: linear-gradient(135deg, #B8A8FF, #7C8CFF); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card .learn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--primary); font-weight: 600; font-size: 0.9rem;
}
.card .learn:hover { gap: 10px; }

/* Glass variant */
.card-glass {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
}

/* ============================================================
   Process timeline
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
}
.process::before {
  content: ''; position: absolute; top: 28px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--highlight));
  opacity: 0.4; z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
  background: var(--bg); padding: 0 4px;
}
.step .num {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: grid; place-items: center; margin: 0 auto 14px;
  font-family: 'Poppins'; font-weight: 800; color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.step .t { font-weight: 700; font-size: 0.9rem; }
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
}

/* ============================================================
   Benefits / Stats
   ============================================================ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 800px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  background: var(--card-bg); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit .check {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-secondary); display: grid; place-items: center; color: #fff;
}
.benefit h4 { margin-bottom: 4px; }
.benefit p { font-size: 0.88rem; margin: 0; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-big { text-align: center; }
.stat-big .num { font-family: 'Poppins'; font-weight: 800; font-size: 2.6rem; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-big .lbl { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* ============================================================
   Portfolio
   ============================================================ */
.portfolio-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-visual {
  height: 220px; background: var(--grad-hero); position: relative;
  display: grid; place-items: center; overflow: hidden;
}
.portfolio-visual.v2 { background: linear-gradient(135deg, #E0F7F4, #F0FAFC); }
.portfolio-visual.v3 { background: linear-gradient(135deg, #FFE8D6, #FFF4EA); }
.portfolio-visual.v4 { background: linear-gradient(135deg, #EEF2FF, #F0F4FF); }
.portfolio-visual.v5 { background: linear-gradient(135deg, #FCE7F3, #FFF0F7); }
.portfolio-visual.v6 { background: linear-gradient(135deg, #DCFCE7, #F0FDF4); }
.mini-phone {
  width: 110px; height: 200px; background: #1a1c2e;
  border-radius: 18px; padding: 6px;
  box-shadow: var(--shadow-md);
  transform: rotate(-6deg);
  transition: transform var(--transition);
}
.portfolio-card:hover .mini-phone { transform: rotate(0deg) scale(1.05); }
.mini-phone .scr {
  width: 100%; height: 100%; border-radius: 14px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  position: relative;
}
.mini-phone .scr::before {
  content:''; position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:30px; height:6px; background:#1a1c2e; border-radius:4px;
}
.portfolio-body { padding: 24px; }
.portfolio-body .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--primary); background: rgba(124,140,255,0.1);
  padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 10px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial {
  background: var(--card-bg); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}
.testimonial .quote { font-size: 4rem; color: var(--primary); opacity: 0.15; line-height: 1; font-family: 'Poppins'; }
.testimonial p { color: var(--text); font-size: 1rem; margin-bottom: 24px; }
.testimonial .who { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.testimonial .who .name { font-weight: 700; font-size: 0.95rem; }
.testimonial .who .role { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 1.05rem; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.25); }
.cta-band .btn-primary { background: #fff; color: var(--primary); }
.cta-band .btn-primary:hover { background: #fff; }
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4;
}
.cta-band::before { width: 300px; height: 300px; background: var(--accent); top: -100px; left: -100px; }
.cta-band::after { width: 300px; height: 300px; background: var(--highlight); bottom: -100px; right: -100px; }
.cta-band .inner { position: relative; z-index: 1; }
@media (max-width: 700px) { .cta-band { padding: 40px 24px; } }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { margin-bottom: 18px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 700; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--text-muted); font-size: 0.92rem; }
.footer ul li a:hover { color: var(--primary); }
.footer .desc { color: var(--text-muted); font-size: 0.92rem; margin: 16px 0; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: var(--text-muted);
}

/* ============================================================
   Forms
   ============================================================ */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: all var(--transition);
  font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(124,140,255,0.12);
}
.field textarea { resize: vertical; min-height: 130px; font-family: inherit; }
.field .err { color: #E53E5E; font-size: 0.8rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #E53E5E; }
.field.invalid .err { display: block; }
.form-success {
  display: none;
  padding: 18px; border-radius: var(--radius-sm);
  background: rgba(143,216,210,0.2); color: #2A6F69;
  font-weight: 600; margin-top: 12px;
}
.form-success.show { display: block; }

/* ============================================================
   Contact Info
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--card-bg); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
}
.contact-item .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-primary); display: grid; place-items: center; color: #fff;
  flex-shrink: 0;
}
.contact-item .ico.green { background: var(--grad-secondary); }
.contact-item .ico.orange { background: var(--grad-accent); }
.contact-item .t { font-weight: 700; margin-bottom: 4px; }
.contact-item .v { color: var(--text-muted); font-size: 0.92rem; }
.contact-item a:hover { color: var(--primary); }

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

/* ============================================================
   Floating actions
   ============================================================ */
.float-actions { position: fixed; right: 20px; bottom: 20px; z-index: 50; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.wa { background: #25D366; }
.float-btn.call { background: var(--grad-primary); }
.float-btn.top { background: #fff; color: var(--primary); border: 1px solid var(--border); display: none; }
.float-btn.top.show { display: grid; }

/* ============================================================
   Tech stack
   ============================================================ */
.tech-group { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.tech-group h4 { margin-bottom: 16px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--bg-section); color: var(--text);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
}
.tech-tag:hover { background: var(--grad-primary); color: #fff; }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 14px;
  overflow: hidden; transition: all var(--transition);
}
.faq-q {
  width: 100%; text-align: left; padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-weight: 600; font-size: 1rem;
}
.faq-q .ic { transition: transform var(--transition); color: var(--primary); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 26px; }
.faq-a p { padding-bottom: 22px; font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ============================================================
   Service detail blocks
   ============================================================ */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 100px;
}
.service-block:nth-child(even) .service-visual { order: -1; }
@media (max-width: 900px) { .service-block { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .service-block:nth-child(even) .service-visual { order: 0; } }
.service-visual {
  background: var(--grad-hero); border-radius: var(--radius-lg);
  padding: 50px; min-height: 340px; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.service-visual .big-icon {
  width: 120px; height: 120px; border-radius: 28px;
  background: var(--grad-primary); display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-lg);
}
.service-visual .big-icon.g { background: var(--grad-secondary); }
.service-visual .big-icon.o { background: var(--grad-accent); }
.service-body h2 { margin-bottom: 16px; }
.service-body .lead { margin-bottom: 24px; font-size: 1.05rem; }
.service-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
@media (max-width: 500px) { .service-lists { grid-template-columns: 1fr; } }
.service-lists h4 { margin-bottom: 10px; color: var(--text); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.service-lists ul li { padding: 6px 0; color: var(--text-muted); font-size: 0.92rem; display: flex; gap: 8px; }
.service-lists ul li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal { padding: 60px 0 100px; }
.legal-container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal-container h1 { margin-bottom: 12px; }
.legal-container .meta { color: var(--text-muted); margin-bottom: 40px; font-size: 0.9rem; }
.legal-container h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal-container p, .legal-container li { color: var(--text-muted); margin-bottom: 12px; font-size: 0.98rem; }
.legal-container ul { padding-left: 22px; list-style: disc; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 80px 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero .eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(124,140,255,0.12); color: var(--primary);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 18px;
}
.page-hero p { max-width: 640px; margin: 18px auto 0; font-size: 1.05rem; }
.page-hero .orb { opacity: 0.25; }

/* ============================================================
   Values
   ============================================================ */
.value-card { text-align: center; padding: 32px 24px; }
.value-card .icon-box { margin: 0 auto 18px; }

/* ============================================================
   BENTO LAYOUT SYSTEM (v2)
   ============================================================ */
.bento-page { padding-top: 32px; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.bento-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.bento-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.bento-tile .eyebrow-mini {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); font-weight: 700; margin-bottom: 10px;
}
.bento-tile h2, .bento-tile h3 { margin-bottom: 10px; }

/* Column spans */
.c-2 { grid-column: span 2; }
.c-3 { grid-column: span 3; }
.c-4 { grid-column: span 4; }
.c-6 { grid-column: span 6; }
.r-2 { grid-row: span 2; }

/* Tile variants */
.tile-grad { background: var(--grad-primary); color: #fff; border: none; }
.tile-grad h1, .tile-grad h2, .tile-grad h3, .tile-grad p { color: #fff; }
.tile-grad p { color: rgba(255,255,255,0.92); }
.tile-grad .eyebrow-mini { color: rgba(255,255,255,0.85); }

.tile-mint { background: linear-gradient(135deg, #E8F8F5, #F5FCFB); }
.tile-peach { background: linear-gradient(135deg, #FFE9D6, #FFF6EC); }
.tile-lilac { background: linear-gradient(135deg, #EEEAFF, #F6F3FF); }
.tile-dark { background: linear-gradient(135deg, #1F2235, #2A2E4A); color: #fff; border: none; }
.tile-dark h1, .tile-dark h2, .tile-dark h3, .tile-dark p { color: #fff; }
.tile-dark p { color: rgba(255,255,255,0.75); }
.tile-dark .eyebrow-mini { color: #B8A8FF; }

.tile-pattern::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle at 1px 1px, rgba(124,140,255,0.18) 1px, transparent 0);
  background-size: 18px 18px; opacity: 0.6; pointer-events:none;
}

/* Hero tile content */
.tile-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
  line-height: 1.1;
}
.tile-hero p { font-size: 1.05rem; max-width: 540px; margin-bottom: 24px; }
.tile-hero .row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stat tile */
.tile-stat { justify-content: center; align-items: flex-start; }
.tile-stat .big {
  font-family: 'Poppins'; font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tile-stat.tile-dark .big, .tile-stat.tile-grad .big {
  background: #fff; -webkit-text-fill-color: transparent;
  background-clip: text; -webkit-background-clip: text;
}
.tile-stat .lbl { margin-top: 8px; color: var(--text-muted); font-size: 0.95rem; }
.tile-dark .tile-stat .lbl, .tile-grad .lbl { color: rgba(255,255,255,0.8); }

/* Icon chip */
.chip-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; margin-bottom: 16px;
  font-size: 1.2rem;
}
.chip-icon.green { background: var(--grad-secondary); }
.chip-icon.orange { background: var(--grad-accent); }
.chip-icon.purple { background: linear-gradient(135deg, #B8A8FF, #7C8CFF); }
.chip-icon.dark { background: #1F2235; }

/* Tile arrow link */
.tile-link {
  margin-top: auto; padding-top: 16px;
  font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.tile-grad .tile-link, .tile-dark .tile-link { color: #fff; }
.tile-link:hover { gap: 10px; }

/* Tech chip strip */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip-pill {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(124,140,255,0.1);
  color: var(--primary); font-size: 0.8rem; font-weight: 600;
}
.tile-dark .chip-pill { background: rgba(255,255,255,0.1); color: #fff; }

/* Process mini-list inside tile */
.mini-steps { display: grid; gap: 10px; margin-top: 14px; }
.mini-steps li {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 14px; background: rgba(124,140,255,0.06);
  border-radius: 12px; font-size: 0.9rem;
}
.mini-steps li b {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-size: 0.75rem; flex-shrink: 0;
}
.tile-dark .mini-steps li { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }

/* Mini phone for bento */
.bento-phone {
  width: 100%; max-width: 220px; aspect-ratio: 9/19;
  margin: 0 auto;
  background: linear-gradient(145deg, #2a2d44, #1a1c2e);
  border-radius: 28px; padding: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.bento-phone::before {
  content:''; position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width: 60px; height: 14px; background:#1a1c2e; border-radius:8px; z-index:2;
}
.bento-phone .scr {
  width: 100%; height: 100%; border-radius: 22px;
  background: var(--grad-hero); position: relative;
  display: flex; flex-direction: column; gap: 8px; padding: 28px 12px 12px;
}
.bento-phone .scr .row { background:#fff; border-radius: 10px; padding:10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.bento-phone .scr .row.hl { background: var(--grad-primary); color:#fff; }
.bento-phone .scr .row b { display:block; font-family:'Poppins'; font-size:1rem; }
.bento-phone .scr .row s { display:block; font-size:0.65rem; color: var(--text-muted); text-decoration:none; }
.bento-phone .scr .row.hl s { color: rgba(255,255,255,0.8); }

/* Floating pill nav variant */
.pill-nav {
  position: sticky; top: 16px; z-index: 100;
  max-width: 1100px; margin: 16px auto 0;
  padding: 10px 14px 10px 18px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.pill-nav .nav-links { gap: 24px; }
.pill-nav .nav-links a { font-size: 0.9rem; }
.pill-nav .brand { font-size: 1.05rem; }
.pill-nav .brand-mark { width: 32px; height: 32px; border-radius: 8px; }

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .c-4 { grid-column: span 4; }
  .c-3 { grid-column: span 2; }
  .c-2 { grid-column: span 2; }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .c-6, .c-4, .c-3, .c-2 { grid-column: span 2; }
  .r-2 { grid-row: span 1; }
  .bento-tile { padding: 22px; min-height: 160px; }
}

/* Bento page wrapper container */
.bento-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px 80px; }

/* Section header inside bento (smaller, left-aligned) */
.bento-sec-head { margin: 40px 0 18px; }
.bento-sec-head .eyebrow {
  display:inline-block; padding:6px 14px; border-radius:999px;
  background: rgba(124,140,255,0.1); color: var(--primary);
  font-size:0.75rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  margin-bottom:10px;
}
.bento-sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.bento-sec-head p { margin-top: 8px; max-width: 640px; }


.c-1 { grid-column: span 1; }
@media (max-width: 1100px) { .c-1 { grid-column: span 1; } }
@media (max-width: 700px) { .c-1 { grid-column: span 2; } }

