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

:root {
  --purple:       #6D28D9;
  --purple-mid:   #7C3AED;
  --purple-pale:  #EDE9FE;
  --orange:       #F97316;
  --orange-light: #FED7AA;
  --dark:         #0F172A;
  --dark-2:       #1E293B;
  --text:         #334155;
  --muted:        #64748B;
  --border:       #E2E8F0;
  --bg:           #F8FAFC;
  --white:        #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--purple); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--purple); }

.nav-cta {
  background: var(--dark);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .4px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--purple); }

/* ─── HERO ───────────────────────────────── */
.hero {
  background: var(--purple);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: var(--purple-mid);
  border-radius: 50%;
  opacity: .35;
}
.hero-blob-2 {
  position: absolute;
  bottom: -180px; right: 160px;
  width: 380px; height: 380px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .12;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn-cta {
  background: var(--orange);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249,115,22,.45);
}

.btn-ghost-white {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.btn-ghost-white:hover { color: var(--white); }

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-photo {
  width: 100%;
  height: 62vh;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hero-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 24px 28px;
  color: white;
  text-align: center;
}
.hero-card-num {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
}
.hero-card-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
}
.hero-card-sub {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-pill {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  text-align: left;
}
.hero-pill strong { display: block; color: white; font-size: 14px; }

/* ─── SUB-HERO (COMMON) ──────────────────── */
.sub-hero {
  padding: 160px 60px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.sub-hero-inner { max-width: 800px; }
.sub-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 24px;
}
.sub-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.sub-hero h1 em { font-style: normal; color: var(--purple); }
.sub-hero p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}


/* ─── SERVICES BAR ───────────────────────── */
.services-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  padding: 44px 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.service-item:last-child { border-right: none; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--purple-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-item h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* ─── ABOUT ──────────────────────────────── */
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: 16px;
  margin-top: 28px;
  object-fit: cover;
  max-height: 300px;
  display: block;
}

.about-word {
  font-size: clamp(90px, 14vw, 180px);
  font-weight: 900;
  color: var(--purple);
  line-height: .85;
  letter-spacing: -6px;
}
.about-word span { color: var(--orange); }

.about-right h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.about-right p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-top: 12px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -2px;
  display: block;
}
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── WORK ───────────────────────────────── */
.work {
  padding: 80px 60px;
  background: var(--bg);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}

.filter-tabs { display: flex; gap: 6px; }
.ftab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.ftab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.ftab:hover:not(.active) { border-color: var(--purple); color: var(--purple); }

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

.work-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.work-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s;
}
.work-item:hover .work-img { transform: scale(1.06); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background .3s;
}
.work-item:hover .work-overlay { background: rgba(15,23,42,.72); }

.work-meta {
  transform: translateY(16px);
  opacity: 0;
  transition: all .3s;
  color: white;
}
.work-item:hover .work-meta { transform: translateY(0); opacity: 1; }
.work-meta h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.work-meta span { font-size: 11px; opacity: .65; letter-spacing: 1.2px; text-transform: uppercase; }


/* ─── PROCESS ────────────────────────────── */
.process {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.process-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-wrap {
  width: 260px;
  height: 520px;
  background: var(--dark);
  border-radius: 36px;
  border: 8px solid var(--dark-2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(15,23,42,.25);
}
.phone-screen {
  height: 100%;
  overflow: hidden;
}

.phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.process-badge {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 110px;
  height: 110px;
  background: var(--orange);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(249,115,22,.4);
}
.process-badge .big { font-size: 40px; font-weight: 900; color: white; line-height: 1; }
.process-badge .sm  { font-size: 10px; color: rgba(255,255,255,.7); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.process-right h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 48px;
}
.process-right h2 em { font-style: normal; color: var(--purple); }

.steps { display: flex; flex-direction: column; gap: 30px; }

.step { display: flex; gap: 20px; align-items: flex-start; }

.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  background: var(--purple-pale);
  color: var(--purple);
}
.step.active .step-num { background: var(--purple); color: white; }

.step-body h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-body p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── CTA BANNER ─────────────────────────── */
.cta-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 60px;
  text-align: center;
}
.cta-strip p { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.cta-strip h3 { font-size: 26px; font-weight: 800; color: var(--dark); letter-spacing: -.5px; }
.cta-strip h3 a { color: var(--purple); text-decoration: underline; text-underline-offset: 4px; }

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials {
  padding: 120px 60px;
}
.testimonials > h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 56px;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
}

.quote-mark {
  font-size: 52px;
  font-family: Georgia, serif;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ─── FAQ ────────────────────────────────── */
.faq {
  padding: 100px 60px;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.7; }


.testi-author { display: flex; align-items: center; gap: 14px; }

.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 700; color: var(--dark); display: block; }
.author-role { font-size: 13px; color: var(--muted); }

/* ─── PARTNERS ───────────────────────────── */
.partners {
  padding: 70px 60px;
  border-top: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.partner {
  font-size: 18px;
  font-weight: 800;
  color: #CBD5E1;
  letter-spacing: -.3px;
  text-transform: uppercase;
  transition: color .2s;
}
.partner:hover { color: var(--muted); }

/* ─── BLOG ───────────────────────────────── */
.blog {
  padding: 100px 60px;
  background: var(--bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0,0,0,.08);
}

.blog-thumb {
  height: 188px;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-body { padding: 28px; }

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.blog-card .link-arrow { margin-top: 0; }

/* ─── PRE-FOOTER ─────────────────────────── */
.pre-footer {
  background: var(--purple);
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.pre-footer::before {
  content: '';
  position: absolute;
  top: -100px; right: 300px;
  width: 400px; height: 400px;
  background: var(--purple-mid);
  border-radius: 50%;
  opacity: .25;
}

.pf-brand {
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 900;
  color: rgba(255,255,255,.12);
  letter-spacing: -6px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.pf-right {
  text-align: right;
  position: relative;
  z-index: 1;
}
.pf-right h3 {
  font-size: 36px;
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.pf-right p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 30px;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--dark);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}
.footer-brand-name span { color: var(--purple-mid); }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 250px;
}
.footer-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 24px;
}
.footer-email-row span { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }

.socials { display: flex; gap: 10px; }
.social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: all .2s;
}
.social svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.social:hover { background: var(--purple); color: white; }


   /* RESPONSIVE — TABLET  (≤ 1024px) */

@media (max-width: 1024px) {
  nav { padding: 0 32px; }

  .hero { padding: 120px 32px 80px; grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }

  .services-bar { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(2) { border-right: none; }
  .service-item:nth-child(3) { border-right: 1px solid var(--border); }
  .service-item:nth-child(3),
  .service-item:nth-child(4) { border-bottom: none; }

  .about { padding: 80px 32px; gap: 48px; align-items: start; }
  .about-word { font-size: clamp(80px, 12vw, 140px); }

  .work { padding: 60px 32px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item.wide { grid-column: span 2; }

  .process { padding: 80px 32px; gap: 60px; }
  .phone-wrap { width: 220px; height: 440px; }

  .cta-strip { padding: 40px 32px; }

  .testimonials { padding: 80px 32px; }

  .partners { padding: 60px 32px; }
  .partners-row { gap: 36px; }

  .blog { padding: 80px 32px; }

  .pre-footer { padding: 80px 32px; }
  .pf-right h3 { font-size: 28px; }

  footer { padding: 60px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
/* 
   RESPONSIVE — MOBILE  (≤ 768px) */

@media (max-width: 768px) {
  /* ── Navbar ── */
  nav {
    padding: 0 20px;
    height: 64px;
  }
  .nav-links { display: none; }

  /* ── Hero ── */
  .hero {
    padding: 104px 20px 64px;
    min-height: auto;
  }
  .hero h1 { letter-spacing: -1.5px; }
  .hero p { font-size: 15px; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-cta { width: 100%; justify-content: center; }

  /* ── Services bar ── */
  .services-bar { grid-template-columns: repeat(2, 1fr); }
  .service-item { padding: 28px 16px; }
  .service-item:nth-child(2) { border-right: none; }
  .service-item:nth-child(3) { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .service-item:nth-child(4) { border-right: none; border-bottom: none; }

  /* ── About ── */
  .about {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 32px;
  }
  .about-word { font-size: clamp(72px, 22vw, 120px); letter-spacing: -4px; }
  .about-right h2 { font-size: 26px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-num { font-size: 34px; }

  /* ── Work ── */
  .work { padding: 48px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  /* Always show work labels on mobile (no hover) */
  .work-overlay { background: rgba(15,23,42,.55); }
  .work-meta { transform: translateY(0); opacity: 1; }

  /* ── Process ── */
  .process {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 60px;
  }
  .process-visual { order: 2; }
  .process-right { order: 1; }
  .process-right h2 { font-size: 26px; margin-bottom: 32px; }
  .phone-wrap { width: 200px; height: 400px; }
  .process-badge { right: calc(50% - 170px); }

  /* ── CTA strip ── */
  .cta-strip { padding: 40px 20px; }
  .cta-strip h3 { font-size: 20px; }

  /* ── Testimonials ── */
  .testimonials { padding: 60px 20px; }
  .testimonials > h2 { font-size: 26px; margin-bottom: 36px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px; }

  /* ── Partners ── */
  .partners { padding: 48px 20px; }
  .partners-row { gap: 24px; }
  .partner { font-size: 15px; }

  /* ── Blog ── */
  .blog { padding: 60px 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── Pre-footer ── */
  .pre-footer {
    flex-direction: column;
    text-align: center;
    padding: 64px 20px;
    gap: 28px;
  }
  .pf-brand { font-size: clamp(52px, 18vw, 100px); letter-spacing: -4px; }
  .pf-right { text-align: center; }
  .pf-right h3 { font-size: 26px; }
  .pf-right .btn-cta { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .sub-hero { padding: 120px 20px 48px; }
  .sub-hero h1 { letter-spacing: -1.5px; }

  footer { padding: 48px 20px 28px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-top > div:first-child { grid-column: span 2; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}


   /* RESPONSIVE — SMALL MOBILE  (≤ 480px) */

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }

  .services-bar { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .service-item:last-child { border-bottom: none !important; }

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

  .filter-tabs { flex-wrap: wrap; }

  .process-badge { right: 10px; width: 90px; height: 90px; }
  .process-badge .big { font-size: 32px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: span 1; }
}
