/* =========================================================
   BiyamTech — Main Stylesheet
   Colors, fonts sab yahan variables me hain — easily change kar sakte hain
   ========================================================= */

:root {
  --bg: #070b14;
  --bg-soft: #0b1120;
  --surface: #0f172a;
  --card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #e6edf7;
  --text-muted: #94a3b8;
  --accent-1: #3b82f6;
  --accent-2: #22d3ee;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --whatsapp: #25d366;
  --radius: 16px;
  --font-head: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --shadow-glow: 0 10px 40px rgba(59, 130, 246, 0.25);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: 700;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 45px rgba(34, 211, 238, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: #0f172a;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3); }

.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.brand span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 30%, var(--bg) 85%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-glow-1 { width: 480px; height: 480px; background: var(--accent-1); top: -120px; left: -120px; }
.hero-glow-2 { width: 420px; height: 420px; background: var(--accent-2); bottom: -140px; right: -100px; opacity: 0.22; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
}

.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-text > p {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust > div:not(.divider) { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-head); font-size: 1.25rem; }
.hero-trust span { color: var(--text-muted); font-size: 0.82rem; }
.hero-trust .divider { width: 1px; height: 36px; background: var(--card-border); }

/* --- Hero code card --- */
.hero-visual { position: relative; }

.code-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  animation: floaty 6s ease-in-out infinite;
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--card-border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.code-title { margin-left: 10px; color: var(--text-muted); font-size: 0.8rem; font-family: monospace; }

.code-body {
  padding: 22px;
  font-family: "SF Mono", "Fira Code", Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  overflow-x: auto;
}
.c-key { color: #c084fc; }
.c-var { color: #e6edf7; }
.c-fn { color: #60a5fa; }
.c-prop { color: #7dd3fc; }
.c-str { color: #86efac; }
.c-cmt { color: #64748b; }

.float-chip {
  position: absolute;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--card-border);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}
.chip-1 { top: -18px; right: 8px; animation: floaty 5s ease-in-out infinite 0.5s; }
.chip-2 { bottom: -16px; left: 10px; animation: floaty 5.5s ease-in-out infinite 1s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding: 100px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.section-head h2, .about-text h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-head p { color: var(--text-muted); }

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.05);
}

.icon-wrap {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--accent-2);
  margin-bottom: 22px;
}
.icon-wrap svg { width: 26px; height: 26px; }

.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--bg-soft); }

.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text > p { color: var(--text-muted); margin-bottom: 24px; }

.checklist {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-size: 0.97rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, 0.4); }
.stat h3 {
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.stat p { color: var(--text-muted); font-size: 0.88rem; }

/* =========================================================
   WHY US
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(59, 130, 246, 0.45); }

.why-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  opacity: 0.12;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--bg-soft); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px dashed var(--card-border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.process-step:hover { border-color: var(--accent-1); transform: translateY(-4px); }

.step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.35);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.4); }

.stars { color: #fbbf24; letter-spacing: 3px; font-size: 0.95rem; }
.testimonial-card > p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }

.t-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.95rem; }
.t-author span { color: var(--text-muted); font-size: 0.82rem; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-section { padding-top: 20px; }

.cta-banner {
  background: var(--gradient);
  border-radius: 24px;
  text-align: center;
  padding: 70px 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: grid; gap: 16px; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
a.info-card:hover { border-color: rgba(59, 130, 246, 0.5); transform: translateX(4px); }

.info-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}
.info-card strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.info-card span { color: var(--text-muted); font-size: 0.9rem; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #5b6b82; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--card-border);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 18px 0 22px;
  max-width: 300px;
}

.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.socials a:hover { color: var(--accent-2); border-color: var(--accent-2); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-contact li { color: var(--text-muted); font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* =========================================================
   FLOATING BUTTONS / TOAST
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  backdrop-filter: blur(6px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--accent-2); color: var(--accent-2); }

.toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--text);
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 0.92rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  text-align: center;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* grid items me halka sa stagger */
.services-grid .reveal:nth-child(2), .why-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2), .testimonial-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3), .why-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3), .testimonial-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4), .why-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.2s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .nav-menu { gap: 20px; }
  .nav-link { font-size: 0.88rem; }
  .navbar .btn { padding: 10px 20px; font-size: 0.88rem; }

  .hero-inner { grid-template-columns: 1fr; gap: 70px; text-align: center; }
  .hero-text > p { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 480px; margin-inline: auto; width: 100%; }

  .services-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 82%);
    height: 100vh;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 36px;
    gap: 26px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--card-border);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1.05rem; }
  .nav-cta-mobile { display: block; margin-top: 10px; }

  .section { padding: 70px 0; }
  .hero { padding: 110px 0 70px; }
}

@media (max-width: 560px) {
  .services-grid, .why-grid, .process-grid, .testimonial-grid,
  .stats-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }

  .hero-trust { gap: 14px; }
  .hero-trust .divider { display: none; }
  .contact-form { padding: 26px 20px; }
  .cta-banner { padding: 50px 22px; }
  .float-chip { display: none; }
}

/* Reduced motion — jinke system me animation off hai */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
