/* ==========================================================
   SYNCHUB — Global Stylesheet
   Mobile-first · Light theme · Black + Red accents · Glassmorphism
   Breakpoints: base = mobile (<640px), 640px = tablet, 1024px = desktop
   ========================================================== */

:root {
  --black: #0b0b0d;
  --charcoal: #1c1c21;
  --red: #e21b3c;
  --red-dark: #a5122a;
  --red-light: #ff5470;
  --bg: #f6f6f8;
  --bg-alt: #eeeef2;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(11, 11, 13, 0.08);
  --shadow-sm: 0 4px 16px rgba(11, 11, 13, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 11, 13, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 11, 13, 0.14);
  --shadow-red: 0 12px 28px rgba(226, 27, 60, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --tap: 46px; /* minimum comfortable touch target */
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(11,11,13,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  background-attachment: local;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  font-size: 15px;
}

/* soft red glow blobs floating over the dotted grid */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
body::before {
  width: 280px; height: 280px;
  background: rgba(226, 27, 60, 0.16);
  top: -100px; right: -100px;
}
body::after {
  width: 260px; height: 260px;
  background: rgba(11, 11, 13, 0.08);
  bottom: -120px; left: -110px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--black);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.accent { color: var(--red); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-dark);
  background: rgba(226, 27, 60, 0.10);
  border: 1px solid rgba(226, 27, 60, 0.18);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.section-head h2 { font-size: clamp(1.6rem, 6vw, 2.6rem); margin-bottom: 12px; }
.section-head p { color: #55555f; font-size: 0.96rem; }

/* ---------- Glass card base ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  min-height: var(--tap);
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(226,27,60,0.34); }

.btn-dark {
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: rgba(255,255,255,0.4);
  color: var(--black);
  border: 1.5px solid rgba(11,11,13,0.18);
}
.btn-outline:hover { border-color: var(--red); color: var(--red-dark); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246, 246, 248, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: relative;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo span { color: var(--red); }
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  flex-shrink: 0;
}

/* Mobile nav: hidden drop panel toggled by hamburger */
.nav-links {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(250, 250, 251, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  padding: 10px 18px 18px;
  font-weight: 500;
  font-size: 0.98rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.28s ease, opacity 0.2s ease;
  z-index: 150;
}
.nav-links.open {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
}
.nav-links a {
  color: var(--charcoal);
  padding: 13px 4px;
  border-bottom: 1px solid rgba(11,11,13,0.06);
}
.nav-links a:hover { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn-outline { display: none; }
.nav-cta .btn-primary { padding: 11px 18px; font-size: 0.86rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  order: -1;
  margin-right: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 40px 0 44px;
  position: relative;
  z-index: 1;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 8vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero p.lead {
  font-size: 0.98rem;
  color: #4c4c56;
  max-width: 500px;
  margin-bottom: 26px;
}
.hero-cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.hero-cta .btn { width: 100%; }

.hero-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--black);
}
.hero-stats div span { font-size: 0.76rem; color: #6b6b74; }

.hero-visual {
  position: relative;
  padding: 26px 22px;
  text-align: left;
  overflow: hidden;
}
.hero-visual .badge-float {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--black);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.hero-visual .badge-float.two {
  top: auto;
  bottom: -14px;
  right: auto;
  left: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.code-line { font-family: 'Courier New', monospace; font-size: 0.78rem; color: #3a3a42; margin: 6px 0; word-break: break-word; }
.code-line .k { color: var(--red-dark); font-weight: 700; }
.code-line .s { color: #1c7a4d; }

/* ---------- Logos strip ---------- */
.logos-strip {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow-x: auto;
}
.logos-strip .container {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #8a8a92;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Product / service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  color: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { color: #57575f; font-size: 0.9rem; margin-bottom: 18px; flex-grow: 1; }
.service-card ul { margin-bottom: 20px; }
.service-card ul li {
  font-size: 0.86rem;
  color: #3a3a42;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.service-card .price-tag {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 16px;
}
.service-card .price-tag span { font-size: 0.78rem; color: #8a8a92; font-weight: 400; }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.step-card { padding: 22px 20px; text-align: center; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 auto 14px;
  font-size: 0.9rem;
}
.step-card h4 { font-size: 0.98rem; margin-bottom: 6px; }
.step-card p { font-size: 0.84rem; color: #6b6b74; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.testi-card { padding: 24px 22px; }
.testi-stars { color: var(--red); margin-bottom: 12px; letter-spacing: 2px; font-size: 0.9rem; }
.testi-card p.quote { font-size: 0.9rem; color: #3a3a42; margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.86rem;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 0.86rem; color: var(--black); }
.testi-person span { font-size: 0.74rem; color: #8a8a92; }

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 42px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  background: rgba(226,27,60,0.35);
  filter: blur(70px);
  top: -80px; right: -50px;
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.4rem, 6vw, 2.2rem); }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 0.92rem; }
.cta-banner .btn-primary { position: relative; z-index: 1; width: 100%; max-width: 320px; }

/* ---------- Footer ---------- */
footer {
  padding: 44px 0 22px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-brand p { color: #6b6b74; font-size: 0.88rem; margin: 12px 0 16px; max-width: 320px; }
.footer-col h4 { font-size: 0.9rem; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #6b6b74; font-size: 0.86rem; display: inline-block; padding: 3px 0; }
.footer-col ul li a:hover { color: var(--red); }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: var(--tap); height: var(--tap);
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.social-row a:hover { background: var(--red); color: #fff; }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: #8a8a92;
}

/* ---------- Modal (Order Now popup) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,11,13,0.45);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
  padding: 0;
}
.modal-overlay.active { display: flex; }
.modal-box {
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 22px 22px 0 0;
  box-shadow: var(--shadow-lg);
  padding: 30px 22px 26px;
  position: relative;
  animation: pop-in 0.25s ease;
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(11,11,13,0.06);
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--red); color: #fff; }
.modal-box h3 { font-size: 1.2rem; margin-bottom: 6px; padding-right: 30px; }
.modal-box .modal-sub { font-size: 0.86rem; color: #6b6b74; margin-bottom: 22px; }
.modal-box .modal-sub strong { color: var(--red-dark); }

/* ---------- Email marketing popup ---------- */
.promo-modal-box { text-align: center; padding-top: 34px; }
.promo-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(214,34,34,0.35);
}
.promo-modal-box h3 { text-align: center; padding-right: 0; font-size: 1.25rem; }
.promo-modal-text { font-size: 0.92rem; color: #55555f; line-height: 1.5; margin-bottom: 22px; }
.promo-modal-skip {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: #8a8a92;
  text-decoration: underline;
  cursor: pointer;
}
.promo-modal-skip:hover { color: var(--charcoal); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(11,11,13,0.12);
  background: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 16px; /* prevents iOS auto-zoom on focus */
  color: var(--black);
  min-height: var(--tap);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(226,27,60,0.12);
}
.form-note {
  font-size: 0.74rem;
  color: #8a8a92;
  margin-top: 14px;
  text-align: center;
}
.alert-box {
  background: rgba(226,27,60,0.08);
  border: 1px solid rgba(226,27,60,0.2);
  color: var(--red-dark);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  margin-bottom: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 6px 0 4px;
}
.form-success.active { display: block; }
.form-success .icon-check {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-red);
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: #6b6b74; font-size: 0.88rem; margin-bottom: 20px; }

/* ---------- Checkout page ---------- */
.checkout-wrap {
  padding: 36px 0 60px;
  position: relative;
  z-index: 1;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
.checkout-card { padding: 26px 22px; order: 2; }
.checkout-card h2 { font-size: 1.22rem; margin-bottom: 6px; }
.checkout-card .sub { color: #6b6b74; font-size: 0.86rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

.tv-field-hint {
  font-size: 0.76rem;
  color: var(--red-dark);
  margin-top: 6px;
}

.pay-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 6px;
  flex-wrap: wrap;
}
.pay-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(11,11,13,0.05);
  color: #55555f;
  border: 1px solid var(--glass-border);
}

.summary-card { padding: 22px; order: 1; position: static; }
.summary-card h3 { font-size: 1rem; margin-bottom: 16px; }

.original-price-strike { color: #a3a3ab; margin-right: 4px; font-weight: 400; }
.discount-chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  vertical-align: middle;
  margin-right: 4px;
  letter-spacing: 0.2px;
}
.savings-badge {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(226,27,60,0.32);
  letter-spacing: 0.1px;
  animation: savings-pulse 1.8s ease-in-out infinite;
}
@keyframes savings-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}
.summary-plan {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(11,11,13,0.14);
}
.summary-plan .name { font-weight: 600; color: var(--black); font-size: 0.94rem; }
.summary-plan .duration { font-size: 0.78rem; color: #8a8a92; margin-top: 3px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #55555f;
  margin-bottom: 10px;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid rgba(11,11,13,0.1);
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--black);
}
.summary-total span.label { font-family: var(--font-body); font-size: 0.82rem; color: #6b6b74; font-weight: 400;}
.secure-note {
  margin-top: 18px;
  font-size: 0.76rem;
  color: #8a8a92;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gateway-box {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(226,27,60,0.06);
  border: 1px solid rgba(226,27,60,0.16);
  font-size: 0.76rem;
  color: var(--red-dark);
  line-height: 1.55;
}

.breadcrumb-bar {
  padding: 14px 0;
  font-size: 0.8rem;
  color: #8a8a92;
}
.breadcrumb-bar a { color: var(--charcoal); font-weight: 500; }
.breadcrumb-bar a:hover { color: var(--red); }
.breadcrumb-bar .accent { font-weight: 600; }

/* ==========================================================
   TABLET — 640px and up
   ========================================================== */
@media (min-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 28px; }
  .section { padding: 72px 0; }
  .hero { padding: 60px 0 60px; }
  .hero-cta { flex-direction: row; flex-wrap: wrap; }
  .hero-cta .btn { width: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .cta-banner { padding: 56px 40px; }
  .cta-banner .btn-primary { width: auto; }
  .modal-overlay { align-items: center; padding: 20px; }
  .modal-box { border-radius: 20px; padding: 34px 30px 28px; }
}

/* ==========================================================
   DESKTOP — 1024px and up
   ========================================================== */
@media (min-width: 1024px) {
  .navbar .container { height: 76px; }
  .logo { font-size: 1.4rem; }
  .logo-mark { width: 36px; height: 36px; border-radius: 10px; font-size: 1rem; }

  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 34px;
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    font-size: 0.94rem;
  }
  .nav-links a { padding: 4px 0; border-bottom: none; }
  .nav-cta .btn-outline { display: inline-flex; }

  .hero { padding: 110px 0 90px; }
  .hero .container { grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
  .hero-stats { gap: 34px; }
  .hero-visual { padding: 34px; }

  .logos-strip .container { justify-content: space-between; }

  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }

  .checkout-grid { grid-template-columns: 1fr 0.85fr; gap: 32px; }
  .checkout-card { order: 1; padding: 34px; }
  .summary-card { order: 2; position: sticky; top: 96px; padding: 30px; }

  .section-head { margin-bottom: 52px; }
}
