/* ============================================================
   Gadget Bytes Corp. — Main Stylesheet
   Professional IT services theme
   ============================================================ */
:root {
  --ink: #0b1220;
  --ink-2: #101b31;
  --navy: #0e1a2f;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #22d3ee;
  --text: #33415c;
  --muted: #64748b;
  --line: #e3e9f4;
  --bg: #ffffff;
  --bg-alt: #f5f8fd;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 18, 32, .08);
  --shadow-lg: 0 20px 50px rgba(11, 18, 32, .16);
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.icon, .icon-sm, .icon-lg, .icon-xs { display: inline-block; vertical-align: middle; flex: none; }
.icon { width: 26px; height: 26px; }
.icon-xs { width: 15px; height: 15px; }
.icon-sm { width: 21px; height: 21px; }
.icon-lg { width: 34px; height: 34px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  text-align: center;
}
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-block { display: block; width: 100%; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(37, 99, 235, .35); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); color: var(--blue-dark); }
.btn-whatsapp { background: #22c55e; color: #fff; margin-top: 18px; }
.btn-whatsapp:hover { background: #1aa44d; color: #fff; transform: translateY(-2px); }

/* ---------------- Topbar ---------------- */
.topbar { background: var(--ink); color: #b9c6dd; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; gap: 16px; }
.topbar-left { display: flex; gap: 22px; }
.topbar a { color: #b9c6dd; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a { font-weight: 600; letter-spacing: .3px; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(11,18,32,.10); }
.nav-inner { display: flex; align-items: center; gap: 28px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--blue), #7c3aed);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(37,99,235,.4);
}
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1.1; display: flex; flex-direction: column; }
.brand-text small { font-family: var(--font-body); font-weight: 500; font-size: 10.5px; color: var(--muted); letter-spacing: .4px; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.main-nav > a, .nav-dropdown > a {
  padding: 10px 15px; border-radius: 9px;
  color: var(--ink); font-weight: 600; font-size: 15px;
}
.main-nav > a:hover, .nav-dropdown > a:hover, .main-nav > a.active, .nav-dropdown > a.active {
  color: var(--blue); background: rgba(37,99,235,.07);
}
.nav-dropdown { position: relative; }
.caret { font-size: 10px; opacity: .6; margin-left: 2px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--text); font-weight: 500; font-size: 14.5px; }
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--blue); }
.nav-cta { white-space: nowrap; padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------------- Slider ---------------- */
.slider { position: relative; overflow: hidden; background: var(--ink); }
.slide {
  display: none; min-height: 620px;
  background-size: cover; background-position: center;
  align-items: center;
}
.slide.active { display: flex; animation: fadeSlide .8s ease; }
@keyframes fadeSlide { from { opacity: 0; } to { opacity: 1; } }
.slide-content { padding: 110px 0; max-width: 100%; }
.slide-kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 18px;
  padding: 7px 16px; border: 1px solid rgba(34,211,238,.4); border-radius: 100px;
  background: rgba(34,211,238,.08);
}
.slide h1 { color: #fff; font-size: clamp(30px, 4.6vw, 56px); max-width: 780px; margin-bottom: 20px; letter-spacing: -.5px; }
.slide p { color: #c5d2ea; font-size: clamp(16px, 1.6vw, 19px); max-width: 640px; margin-bottom: 32px; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: rgba(11,18,32,.4); color: #fff;
  font-size: 18px; cursor: pointer; z-index: 5; transition: .2s; backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--blue); border-color: var(--blue); }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }
.slider-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 5; }
.slider-dots button {
  width: 30px; height: 5px; border-radius: 4px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35); transition: .25s; padding: 0;
}
.slider-dots button.active { background: var(--cyan); width: 44px; }

/* ---------------- Sections ---------------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head.left { text-align: left; margin: 0 0 30px; }
.section-kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-kicker.light { color: var(--cyan); }
.section-head h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; letter-spacing: -.4px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-dark .section-head p { color: #a9b8d4; }

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

/* ---------------- Cards ---------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.35); }
.card-icon {
  width: 58px; height: 58px; border-radius: 14px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.12));
  color: var(--blue); display: flex; align-items: center; justify-content: center;
}
.card-icon.sm { width: 46px; height: 46px; border-radius: 11px; margin-bottom: 14px; }
.card-icon.lg { width: 68px; height: 68px; margin-bottom: 24px; }
.service-card { display: block; color: inherit; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.card-link { color: var(--blue); font-weight: 600; font-size: 14.5px; }
.value-card { position: relative; overflow: hidden; }
.value-num { position: absolute; right: 18px; top: 8px; font-family: var(--font-head); font-weight: 700; font-size: 46px; color: rgba(37,99,235,.10); }
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--muted); }

/* ---------------- Why us ---------------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.why-badge, .story-badge {
  position: absolute; right: -14px; bottom: -18px;
  background: linear-gradient(135deg, var(--blue), #7c3aed);
  color: #fff; padding: 18px 26px; border-radius: 14px; text-align: center;
  box-shadow: 0 16px 40px rgba(37,99,235,.4);
}
.why-badge strong, .story-badge strong { display: block; font-family: var(--font-head); font-size: 30px; line-height: 1; }
.why-badge span, .story-badge span { font-size: 12.5px; opacity: .92; }
.section-head.left p { color: var(--muted); margin-top: 6px; }
.points { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.point { display: flex; gap: 14px; }
.point-icon {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #4f46e5);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(37,99,235,.32);
}
.point h4 { font-size: 16px; margin-bottom: 4px; }
.point p { font-size: 13.8px; color: var(--muted); }

/* ---------------- Stats band ---------------- */
.stats-band {
  background: linear-gradient(120deg, var(--ink) 0%, #14245c 55%, #1e3a8a 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(34,211,238,.16), transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(124,58,237,.20), transparent 45%);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; color: #fff; }
.stat .icon-lg { color: var(--cyan); margin-bottom: 10px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 42px; font-weight: 700; letter-spacing: -.5px; }
.stat span { color: #b7c5e2; font-size: 14.5px; }

/* ---------------- Process ---------------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; position: relative; transition: .25s;
}
.step:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  display: inline-flex; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  color: #fff; background: linear-gradient(135deg, var(--blue), #7c3aed);
  width: 42px; height: 42px; border-radius: 11px; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); }

/* ---------------- Testimonials ---------------- */
.t-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 32px 30px; backdrop-filter: blur(6px);
  display: flex; flex-direction: column; gap: 16px; height: 100%;
}
.t-stars { color: #fbbf24; font-size: 15px; letter-spacing: 2px; }
.t-card blockquote { color: #d6e0f2; font-size: 15.5px; flex: 1; }
.t-card figcaption strong { display: block; color: #fff; font-size: 15.5px; }
.t-card figcaption span { color: #93a5c6; font-size: 13px; }

/* ---------------- CTA band ---------------- */
.cta-band { background: linear-gradient(120deg, #1e3a8a, var(--blue) 55%, #7c3aed); padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 16.5px; max-width: 560px; }

/* ---------------- Page hero ---------------- */
.page-hero {
  background: linear-gradient(115deg, var(--ink) 20%, #132348 65%, #1e3a8a 130%);
  padding: 76px 0; text-align: center; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(34,211,238,.12), transparent 40%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero p { color: #b7c5e2; max-width: 640px; margin: 0 auto; font-size: 17px; position: relative; z-index: 1; }
.crumbs { margin-top: 20px; font-size: 13.5px; color: #8fa2c4; position: relative; z-index: 1; }
.crumbs a { color: #c5d2ea; }
.crumbs a:hover { color: #fff; }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ---------------- About page ---------------- */
.story-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.story-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.story-text p { margin-bottom: 14px; color: var(--text); }
.mv-grid { align-items: stretch; }
.mv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow); }
.mv-card h3 { font-size: 22px; margin-bottom: 12px; }
.mv-card p { color: var(--text); }
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.founder-media img { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.45); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.founder-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 10px; }
.founder-role {
  color: var(--cyan); font-weight: 700; font-size: 15px; letter-spacing: .6px;
  text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-head);
}
.founder-text p { color: #c5d2ea; margin-bottom: 14px; }
.founder-text .btn { margin-top: 14px; }

/* ---------------- Services listing ---------------- */
.service-rows { display: flex; flex-direction: column; gap: 56px; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; box-shadow: var(--shadow);
}
.service-row.flip .service-row-media { order: 2; }
.service-row-media { height: 100%; min-height: 340px; }
.service-row-media img { width: 100%; height: 100%; object-fit: cover; }
.service-row-body { padding: 44px 44px 44px 8px; }
.service-row.flip .service-row-body { padding: 44px 8px 44px 44px; }
.service-row-body h2 { font-size: 26px; margin-bottom: 12px; }
.service-row-body > p { color: var(--muted); margin-bottom: 18px; }
.row-btns { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.ticks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; }
.ticks li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--text); }
.ticks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: #fff; background: var(--blue); width: 17px; height: 17px; border-radius: 50%;
  font-size: 10.5px; display: flex; align-items: center; justify-content: center; margin-top: 3px;
}

/* ---------------- Service detail ---------------- */
.service-hero { text-align: left; }
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.detail-body h2 { font-size: 28px; margin-bottom: 18px; }
.detail-body p { margin-bottom: 16px; }
.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.side-card h3 { font-size: 18px; margin-bottom: 16px; }
.side-cta { background: linear-gradient(150deg, var(--ink), #14245c); border: 0; }
.side-cta h3, .side-cta p { color: #fff; }
.side-cta p { color: #b7c5e2; font-size: 14.5px; margin-bottom: 18px; }
.side-cta .btn { margin-bottom: 10px; }
.other-links { display: flex; flex-direction: column; gap: 10px; }
.other-links a { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 500; font-size: 14.5px; padding: 9px 12px; border-radius: 9px; background: var(--bg-alt); }
.other-links a:hover { color: var(--blue); background: rgba(37,99,235,.08); }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2, .contact-form-wrap h2 { font-size: 26px; margin-bottom: 12px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; }
.info-card { display: flex; gap: 16px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px; }
.info-card h4 { font-size: 15px; margin-bottom: 3px; }
.info-card p { font-size: 14.5px; color: var(--muted); }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 40px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 13.5px; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fbfcfe;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.12); background: #fff;
}
.form-note { margin-top: 14px; font-size: 13px; color: var(--muted); text-align: center; }
.alert { border-radius: 12px; padding: 16px 20px; margin-bottom: 22px; font-size: 14.5px; }
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-error ul { margin: 6px 0 0 18px; }
.map-section { padding: 0 0 88px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: #9fb0cc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr; gap: 44px; padding: 70px 0 50px; }
.brand-light .brand-text { color: #fff; font-size: 18px; }
.footer-about p { font-size: 14.5px; margin: 18px 0 20px; line-height: 1.75; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); color: #cdd9ee; font-weight: 700; font-size: 14px; transition: .2s;
}
.socials a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2.5px; border-radius: 2px; background: var(--cyan); }
.footer-col a { display: block; color: #9fb0cc; font-size: 14.5px; padding: 5.5px 0; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.f-line { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; margin-bottom: 12px; }
.f-line .icon-xs { margin-top: 4px; color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: #7e90b2; }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .why-grid, .story-grid, .founder-grid, .contact-grid, .detail-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-row, .service-row.flip { grid-template-columns: 1fr; }
  .service-row.flip .service-row-media { order: 0; }
  .service-row-body, .service-row.flip .service-row-body { padding: 32px; }
  .service-row-media { min-height: 260px; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 90px 24px 30px; gap: 6px;
    transform: translateX(100%); transition: transform .3s ease;
    box-shadow: -20px 0 60px rgba(11,18,32,.2); z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a, .nav-dropdown > a { padding: 13px 16px; font-size: 16px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 14px; }
  .nav-toggle { display: block; margin-left: auto; z-index: 1001; }
  .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); }
  .topbar-right { display: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .points, .form-row, .ticks { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .slide { min-height: 540px; }
  .slide-content { padding: 84px 0; }
  .slider-arrow { display: none; }
  .topbar-left { flex-wrap: wrap; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 40px; }
  .contact-form-wrap { padding: 28px 22px; }
  .why-badge, .story-badge { right: 10px; }
}
