/* =========================
   ROOT VARIABLES
========================= */
:root {
  --blue: #0051ff;
  --blue-dark: #0077ff;
  --blue-soft: rgba(37, 99, 235, 0.14);

  --navy: #07111f;
  --navy-2: #0b172a;
  --dark: #0f172a;

  --white: #ffffff;
  --page: #eef2f7;
  --card: #ffffff;

  --text: #0f172a;
  --muted: #475569;
  --soft: #94a3b8;
  --border: rgba(15, 23, 42, 0.09);

  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-blue: 0 18px 38px rgba(37, 99, 235, 0.34);

  --radius: 22px;
  --radius-lg: 28px;
}

/* =========================
   RESET / GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: var(--page);
  color: var(--text);
  font-family: Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 0;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid var(--blue);
  backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 38px;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.76;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
  opacity: 1;
}

.nav-right {
  padding: 11px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: var(--shadow-blue);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #3b82f6, var(--blue));
}

.btn.secondary,
.btn.secondary-price {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.btn.secondary-dark {
  background: rgba(255, 255, 255, 0.07);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.secondary-dark:hover {
  background: rgba(255, 255, 255, 0.13);
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.45;
}

/* =========================
   SHARED LABELS / EYEBROWS
========================= */
.hero-pill,
.section-eyebrow,
.pricing-eyebrow,
.services-eyebrow,
.setup-eyebrow,
.setup-label,
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(96, 165, 250, 0.8));
  color: #dbeafe;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.pricing-eyebrow.light,
.services-eyebrow.light,
.setup-label.light {
  padding: 0;
  margin-bottom: 14px;
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.pricing-eyebrow.light-dark,
.setup-label.dark-light {
  padding: 0;
  margin-bottom: 14px;
  background: transparent;
  color: #60a5fa;
  box-shadow: none;
}

/* =========================
   SHARED SECTIONS / TYPOGRAPHY
========================= */
.section,
.home-section,
.pricing-section,
.services-section,
.setup-section,
.contact-section,
.setup-contact-section {
  max-width: 1240px;
  margin: 80px auto 0;
  padding: 0 32px;
}

.intro-section {
  text-align: center;
}

.intro-section h2,
.pricing-header h2,
.setup-header h2,
.setup-final h2,
.services-cta h2,
.contact-intro h2,
.setup-contact-card h2,
.premium-final h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.intro-section p,
.pricing-header p,
.setup-header p,
.setup-final p,
.services-cta p,
.contact-intro p,
.setup-contact-card p,
.premium-final p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

/* =========================
   SHARED CARDS / GRIDS
========================= */
.pricing-grid,
.setup-monthly-grid,
.services-steps,
.choice-grid {
  display: grid;
  gap: 24px;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.three-col,
.setup-monthly-grid,
.services-steps {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card,
.service-card,
.monthly-option,
.choice-card,
.services-step,
.card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.pricing-card:hover,
.service-card:hover,
.monthly-option:hover,
.choice-card:hover,
.services-step:hover,
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing-card.featured,
.monthly-option.selected,
.choice-card.selected {
  border: 2px solid var(--blue);
  box-shadow: 0 26px 65px rgba(37, 99, 235, 0.18);
}

.badge,
.setup-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-card h3,
.service-card h3,
.monthly-option h3,
.choice-card h3,
.services-step h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.price,
.setup-price {
  color: var(--blue);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-note {
  margin-bottom: 24px;
  color: var(--soft);
}

.pricing-card ul,
.service-card ul,
.monthly-option ul {
  list-style: none;
  margin: 24px 0;
}

.pricing-card li,
.service-card li,
.monthly-option li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.pricing-card li::before,
.service-card li::before,
.monthly-option li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

.monthly,
.monthly-setup,
.services-process,
.premium-process {
  margin-top: 80px;
  padding: 60px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.35), transparent 35%),
    linear-gradient(135deg, var(--dark), #050b14);
  color: white;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.monthly .pricing-header h2,
.monthly .pricing-header p,
.monthly-setup .setup-header h2,
.monthly-setup .setup-header p,
.services-process h2,
.services-process p,
.premium-process h2 {
  color: white;
}

/* =========================
   HOMEPAGE HERO
========================= */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: 80px 10% 40px;
  background:
    radial-gradient(circle at 78% 10%, rgba(37, 212, 235, 0.55), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b172a 48%, #0299f7 100%);
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/images/home-bg.png") center center / cover no-repeat;
  opacity: 0.94;
  filter: blur(2px);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.4));
}

.home-hero-inner,
.client-strip {
  position: relative;
  z-index: 2;
}

.home-hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.home-hero-copy {
  max-width: 680px;
}

.home-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.home-hero h1 span {
  display: inline-block;
  color: #3b82f6;
  text-shadow: 0 0 35px rgba(59, 130, 246, 0.55);
}

.home-hero-text {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-benefits {
  max-width: 760px;
  margin-bottom: 32px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-benefits div {
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.hero-benefits div:last-child {
  border-right: none;
}

.hero-benefits strong {
  display: block;
  margin-bottom: 3px;
  color: white;
}

.hero-benefits span {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.hero-small-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.home-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
}

.mockup-card {
  width: clamp(760px, 58vw, 1180px);
  margin-right: clamp(-180px, -7vw, -70px);
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
}

.mockup-card img {
  width: 100%;
  max-width: none;
}

.client-strip {
  max-width: 1300px;
  margin: 70px auto 0;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.client-strip p {
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
}

.client-strip span {
  color: var(--soft);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* =========================
   HOMEPAGE BELOW HERO
========================= */
.home-intro-upgraded {
  max-width: none;
  margin: 0;
  padding: 110px 32px 70px;
  text-align: center;
}

.home-intro-upgraded h2 {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: clamp(2.7rem, 4.6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.home-intro-upgraded > p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.home-benefit-grid {
  max-width: 1120px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.home-benefit-card {
  padding: 34px;
  text-align: left;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.home-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.home-benefit-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

.home-benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.home-benefit-card p {
  color: var(--muted);
  line-height: 1.6;
}

.home-process-upgraded {
  max-width: none;
  margin-top: 60px;
  padding: 78px 7%;
  display: grid;
  grid-template-columns: 1.1fr 380px;
  gap: 60px;
  align-items: center;
  border-radius: 0;
}

.home-process-upgraded .process-left {
  max-width: 900px;
}

.home-process-upgraded h2 {
  max-width: 600px;
  margin-bottom: 42px;
  color: white;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.home-process-upgraded .process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.home-process-upgraded .process-card {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: white;
}

.home-process-upgraded .process-card:hover {
  transform: none;
  box-shadow: none;
}

.home-process-upgraded .step-number {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

.home-process-upgraded .process-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.home-process-upgraded .process-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.process-cta-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.mini-site-preview {
  height: 150px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-site-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-cta-card h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.process-cta-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.process-cta-card .btn {
  width: 100%;
}

.home-examples-section {
  max-width: 1320px;
  margin: 70px auto 0;
  padding: 0 32px;
  text-align: center;
}

.home-examples-section h2 {
  margin-bottom: 34px;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.example-card {
  text-align: left;
}

.example-card img {
  width: 100%;
  height: 170px;
  margin-bottom: 12px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.example-card h3 {
  color: var(--text);
  font-size: 1rem;
}

.home-final-upgraded {
  max-width: 1320px;
  margin: 70px auto 0;
  padding: 42px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border-radius: 24px;
  text-align: left;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.45), transparent 34%),
    linear-gradient(135deg, #07111f, #050b14);
}

.home-final-upgraded h2 {
  color: white;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.home-final-upgraded p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   INNER PAGE HERO BASE
========================= */
.pricing-hero,
.services-hero,
.setup-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
  color: white;
}

.pricing-hero > *,
.services-hero > *,
.setup-hero > *,
.contact-hero > * {
  position: relative;
  z-index: 2;
}

.pricing-hero h1,
.services-hero h1,
.setup-hero h1,
.contact-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.pricing-hero p,
.services-hero p,
.setup-hero p,
.contact-subtext {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1.65;
}

/* =========================
   SERVICES PAGE
========================= */
.services-hero-redesign {
  max-width: none;
  min-height: 560px;
  margin: 0;
  padding: 95px 7%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(37, 99, 235, 0.45), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.25);
}

.services-hero-redesign::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.65), rgba(37, 99, 235, 0.16));
}

.services-hero-redesign h1 {
  max-width: 820px;
}

.services-hero-redesign .btn {
  margin-top: 12px;
}

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

.services-hero-visual {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-mockup {
  position: relative;
  width: min(520px, 100%);
  height: 330px;
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 250, 0.42);
  transform: rotate(-3deg);
  background:
    radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.22), transparent 38%),
    rgba(15, 23, 42, 0.52);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.browser-top {
  height: 52px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.16);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.32);
}

.browser-lines {
  padding: 34px;
}

.line {
  height: 15px;
  margin-bottom: 17px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.32);
}

.line.long { width: 78%; }
.line.medium { width: 58%; }
.line.short { width: 42%; }

.mini-card {
  width: 150px;
  height: 110px;
  margin-top: 12px;
  margin-left: auto;
  border-radius: 15px;
  background: rgba(7, 17, 31, 0.58);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.phone-card {
  position: absolute;
  right: -28px;
  bottom: -16px;
  width: 130px;
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 26px;
  border: 1px solid rgba(96, 165, 250, 0.5);
  background: rgba(7, 17, 31, 0.86);
  color: white;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.phone-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 1.5rem;
}

.phone-card small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.services-redesign {
  max-width: 1320px;
  margin-top: 70px;
}

.services-top-row {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.services-top-row h2 {
  max-width: 650px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.services-top-row > p {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.services-showcase-grid .service-card {
  min-height: 380px;
  padding: 38px;
  border-radius: 18px;
}

.service-card-featured {
  grid-row: span 2;
  min-height: 620px !important;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.45), transparent 42%),
    linear-gradient(145deg, #07111f, #0b172a) !important;
  color: white;
}

.service-card-featured h3 {
  color: white;
}

.service-card-featured p,
.service-card-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.17), rgba(96, 165, 250, 0.22));
  color: var(--blue);
  font-size: 1.7rem;
  font-weight: 900;
}

.service-card-featured .service-icon {
  background: rgba(96, 165, 250, 0.18);
  color: white;
}

.services-showcase-grid .service-card h3 {
  font-size: 1.8rem;
  line-height: 1.08;
}

.services-showcase-grid .service-card ul {
  margin-top: 28px;
}

.service-card-wide {
  grid-column: span 2;
  min-height: 180px !important;
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.service-card-wide .service-icon {
  margin-bottom: 0;
}

.services-process-redesign {
  max-width: none;
  margin-top: 80px;
  padding: 72px 7%;
  border-radius: 0;
}

.process-top {
  max-width: 1320px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: end;
}

.process-top h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.process-top > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.services-process-redesign .services-steps {
  max-width: 1320px;
  margin: 0 auto;
  gap: 30px;
}

.services-process-redesign .services-step {
  min-height: 190px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(96, 165, 250, 0.22);
  color: white;
  box-shadow: none;
}

.services-process-redesign .services-step p {
  color: rgba(255, 255, 255, 0.7);
}

.services-process-redesign .services-step span {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.4);
}

.services-cta-redesign {
  max-width: 1320px;
  margin: 42px auto 0;
  padding: 42px 70px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  text-align: left;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.services-cta-redesign h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.services-cta-redesign .btn {
  margin-top: 20px;
}

.cta-device {
  position: relative;
  height: 170px;
}

.cta-screen {
  position: absolute;
  right: 30px;
  bottom: 8px;
  width: 260px;
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(to bottom, white 0 35%, #07111f 35% 62%, white 62% 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.cta-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75px;
  height: 135px;
  border-radius: 18px;
  background: linear-gradient(to bottom, white 0 36%, #07111f 36% 66%, white 66% 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* =========================
   PRICING PAGE
========================= */
.pricing-hero-upgraded {
  width: 100%;
  max-width: none;
  min-height: 620px;
  margin: 0;
  padding: 80px clamp(24px, 8vw, 150px);
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  justify-content: center;
  gap: 70px;
  border-radius: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.65), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0b172a 48%, #07111f 100%);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.25);
}

.pricing-hero-upgraded::after {
  display: none;
}

.pricing-hero-upgraded > * {
  max-width: 1320px;
}

.pricing-hero-upgraded h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 5.2vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.pricing-hero-upgraded .pricing-hero-text > p:not(.pricing-eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.65;
}

.pricing-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-hero-image img {
  width: min(620px, 100%);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 38px 60px rgba(0, 0, 0, 0.45));
}

.pricing-hero-points {
  max-width: 760px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pricing-hero-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
}

.pricing-hero-points span {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.45);
  color: #93c5fd;
  font-weight: 900;
}

.pricing-hero-points strong {
  color: white;
  font-size: 0.95rem;
}

.pricing-hero-points small {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

.pricing-build-section {
  max-width: 1180px;
  margin-top: 70px;
}

.pricing-header.center {
  text-align: center;
}

.build-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 26px;
}

.build-card {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.build-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.featured-build {
  border: 2px solid var(--blue);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.18);
}

.build-card-top {
  margin-bottom: 22px;
  padding-bottom: 22px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.build-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 900;
}

.build-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.build-price {
  text-align: right;
}

.build-price p {
  color: var(--blue);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.build-price span {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  font-size: 0.9rem;
}

.build-card ul {
  flex: 1;
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0 0 26px;
}

.build-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.build-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

.build-benefits {
  margin-top: auto;
  margin-bottom: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.055);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.build-benefits strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.82rem;
}

.build-benefits span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.build-card .btn {
  width: 100%;
  margin-top: 22px;
}

.monthly-upgraded {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 68px clamp(24px, 8vw, 150px);
  display: grid;
  justify-content: center;
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.55), transparent 34%),
    linear-gradient(135deg, #07111f, #050b14);
}

.monthly-upgraded > * {
  max-width: 1320px;
}

.monthly-upgraded .pricing-header {
  max-width: 680px;
  margin-bottom: 30px;
}

.monthly-upgraded .pricing-header h2 {
  color: white;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.02;
}

.monthly-upgraded .pricing-header p {
  color: rgba(255, 255, 255, 0.78);
}

.monthly-grid-upgraded .pricing-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: white;
}

.monthly-grid-upgraded .pricing-card.featured {
  border: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.2);
}

.monthly-grid-upgraded .pricing-card h3 {
  color: white;
}

.monthly-grid-upgraded .price {
  color: #3b82f6;
}

.monthly-grid-upgraded .price-note,
.monthly-grid-upgraded li {
  color: rgba(255, 255, 255, 0.7);
}

.monthly-grid-upgraded li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.monthly-grid-upgraded li::before {
  color: #60a5fa;
}

.monthly-grid-upgraded .pricing-card ul {
  flex: 1;
}

.monthly-grid-upgraded .pricing-card .btn {
  width: fit-content;
  margin-top: auto;
}

.pricing-final-cta {
  max-width: 1320px;
  margin: 42px auto 0;
  padding: 34px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.pricing-final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.045em;
}

.pricing-final-cta p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* =========================
   PLAN SETUP PAGE
========================= */
.setup-hero-upgraded {
  max-width: 1440px;
  min-height: 520px;
  margin: 38px auto 0;
  padding: 78px 7%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 16%, rgba(37, 99, 235, 0.6), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0b172a 52%, #07111f 100%);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.25);
}

.setup-hero-upgraded::after {
  display: none;
}

.setup-hero-upgraded h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 5.5vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.setup-hero-upgraded > div > p:not(.setup-eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
}

.setup-hero-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(96, 165, 250, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.24);
}

.setup-hero-card span {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.35);
}

.setup-hero-card h3 {
  margin-bottom: 4px;
  color: white;
  font-size: 1.25rem;
}

.setup-hero-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.setup-hero-card p:last-child {
  margin-bottom: 0;
}

.setup-header-centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.choice-grid {
  grid-template-columns: repeat(2, 1fr);
}

.setup-choice-grid {
  max-width: 980px;
  margin: 0 auto;
}

.setup-choice-card,
.setup-build-card,
.setup-monthly-card {
  cursor: pointer;
  text-align: left;
}

.setup-choice-card {
  min-height: 250px;
}

.choice-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 900;
}

.setup-choice-card:hover,
.setup-build-card:hover,
.setup-monthly-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
}

.setup-summary-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.setup-summary-card h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.setup-summary-card p {
  color: var(--muted);
  line-height: 1.65;
}

.selected-build-card-upgraded ul {
  list-style: none;
  margin: 0;
  padding: 22px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.055);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.selected-build-card-upgraded li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.selected-build-card-upgraded li:last-child {
  border-bottom: 0;
}

.selected-build-card-upgraded li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

.setup-build-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 26px;
}

.setup-build-card {
  position: relative;
  padding: 34px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.setup-build-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.18);
}

.setup-card-top {
  margin-bottom: 18px;
  padding-bottom: 22px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.setup-build-card h3,
.setup-monthly-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.setup-build-card > p,
.setup-build-card .setup-card-top p:not(.setup-price),
.setup-monthly-card > p {
  color: var(--muted);
  line-height: 1.55;
}

.setup-build-card ul,
.setup-monthly-card ul {
  list-style: none;
  margin: 22px 0 0;
}

.setup-build-card li,
.setup-monthly-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.setup-build-card li::before,
.setup-monthly-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

.monthly-setup-upgraded {
  max-width: 1320px;
  padding: 68px 72px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.55), transparent 34%),
    linear-gradient(135deg, #07111f, #050b14);
}

.monthly-setup-upgraded .setup-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.monthly-setup-upgraded .setup-header h2 {
  color: white;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.02;
}

.monthly-setup-upgraded .setup-header p {
  color: rgba(255, 255, 255, 0.78);
}

.setup-monthly-grid-upgraded {
  grid-template-columns: repeat(3, 1fr);
}

.setup-monthly-card {
  position: relative;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: white;
}

.setup-monthly-card.featured {
  border: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.2);
}

.setup-monthly-card h3 {
  color: white;
}

.setup-monthly-card .setup-price {
  color: #3b82f6;
}

.setup-monthly-card > p,
.setup-monthly-card li {
  color: rgba(255, 255, 255, 0.7);
}

.setup-monthly-card li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.setup-monthly-card li::before {
  color: #60a5fa;
}

.monthly-option.selected,
.choice-card.selected,
.setup-build-card.selected,
.setup-monthly-card.selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16), var(--shadow-soft);
}

.setup-monthly-card.selected {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.24);
}

.setup-final-upgraded {
  max-width: 1320px;
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  text-align: left;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.setup-final-upgraded h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.setup-final-upgraded .btn {
  min-width: 180px;
}

.setup-contact-section {
  border-radius: var(--radius-lg);
}

.setup-contact-card-upgraded {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 34%),
    linear-gradient(135deg, #07111f, #050b14);
  color: white;
}

.setup-contact-card-upgraded h2 {
  color: white;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.02;
}

.setup-contact-card-upgraded p {
  color: rgba(255, 255, 255, 0.76);
}

.setup-contact-card-upgraded .setup-contact-form {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.setup-contact-card-upgraded .btn {
  width: 100%;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-hero-upgraded {
  width: 100%;
  max-width: none;
  min-height: 620px;
  margin: 0;
  padding: 80px clamp(24px, 8vw, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.76), rgba(37, 99, 235, 0.18)),
    url("/images/contact-hero.png") center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.25);
}

.contact-hero-upgraded::before,
.contact-hero-upgraded::after {
  display: none;
}

.contact-hero-upgraded > * {
  max-width: 1320px;
}

.contact-hero-upgraded .contact-hero-left {
  max-width: 820px;
}

.contact-hero-upgraded h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(3.4rem, 5.6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.contact-hero-upgraded .contact-subtext {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  line-height: 1.65;
}

.contact-hero-points {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.contact-hero-points div {
  min-width: 230px;
  max-width: 300px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
}

.contact-hero-points span {
  width: 54px;
  height: 54px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
}

.contact-hero-points strong {
  color: white;
  font-size: 1rem;
}

.contact-hero-points small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.contact-main-wrap {
  position: relative;
  z-index: 4;
  max-width: 1320px;
  margin: -60px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  align-items: start;
}

.contact-side-stack {
  display: grid;
  gap: 28px;
}

.contact-side-card {
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-side-card.white {
  background: white;
  border: 1px solid var(--border);
}

.contact-side-card.dark {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.35), transparent 35%),
    linear-gradient(135deg, #07111f, #050b14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-label {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.side-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

.contact-side-card.dark h3 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.contact-side-card.dark ul {
  list-style: none;
  margin-bottom: 22px;
  display: grid;
  gap: 13px;
}

.contact-side-card.dark li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.contact-side-card.dark li::before {
  content: "✓";
  margin-right: 10px;
  color: #60a5fa;
  font-weight: 900;
}

.contact-side-card.dark p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.contact-section-upgraded {
  margin: 0;
  padding: 42px;
  display: block;
  border-radius: 20px;
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-section-upgraded .contact-intro {
  margin-bottom: 28px;
}

.contact-section-upgraded .contact-intro h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.contact-section-upgraded .contact-intro p {
  margin-top: 8px;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

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

.form-group {
  margin-bottom: 26px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-weight: 900;
}

.form-group label span {
  color: var(--blue);
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
}

/* =========================
   FORMS / INPUTS
========================= */
.setup-input-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.setup-input,
.setup-contact-form input,
.setup-contact-form textarea,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 3px solid var(--blue);
  border-radius: 10px;
  background: #f8fafc;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.setup-input:focus,
.setup-contact-form input:focus,
.setup-contact-form textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: white;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

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

.setup-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* =========================
   FORM SUCCESS POPUP
========================= */
.form-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.form-popup.show {
  opacity: 1;
  pointer-events: all;
}

.form-popup-box {
  width: 90%;
  max-width: 500px;
  padding: 48px 56px;
  text-align: center;
  border-top: 6px solid var(--blue);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  transform: scale(0.92);
  transition: transform 0.25s ease;
}

.form-popup.show .form-popup-box {
  transform: scale(1);
}

.popup-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.form-popup-box h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.form-popup-box p {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.6;
}

#closePopup {
  padding: 14px 30px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  cursor: pointer;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 90px;
  background: white;
  border-top: 2px solid var(--blue);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

/* =========================
   RESPONSIVE: LARGE TABLET
========================= */
@media (min-width: 1500px) {
  .mockup-card {
    width: clamp(900px, 58vw, 1180px);
    margin-right: -120px;
  }
}

@media (max-width: 1499px) {
  .hero-bg {
    background-position: 58% center;
  }

  .home-hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .mockup-card {
    width: min(100%, 720px);
    margin-right: 0;
    transform: none;
  }

  .mockup-card img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
  .home-hero-inner,
  .pricing-hero-upgraded,
  .services-hero-redesign,
  .setup-hero-upgraded,
  .services-top-row,
  .process-top,
  .services-cta-redesign,
  .build-grid,
  .setup-summary-card,
  .setup-build-grid,
  .setup-contact-card-upgraded {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    justify-content: center;
  }

  .mockup-card {
    width: min(900px, 100%);
    margin-right: 0;
    transform: none;
  }

  .client-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .hero-benefits div {
    border-right: none;
  }

  .three-col,
  .setup-monthly-grid,
  .setup-monthly-grid-upgraded,
  .services-steps,
  .two-col,
  .choice-grid,
  .home-benefit-grid,
  .home-process-upgraded,
  .home-process-upgraded .process-steps,
  .example-grid,
  .pricing-hero-points {
    grid-template-columns: 1fr;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-featured,
  .service-card-wide {
    grid-column: span 2;
  }

  .service-card-featured {
    min-height: auto !important;
  }

  .service-card-wide {
    grid-template-columns: 70px 1fr;
  }

  .service-card-wide ul {
    grid-column: 2;
  }

  .services-hero-visual {
    min-height: 300px;
  }

  .pricing-hero-upgraded {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing-hero-image {
    justify-content: flex-start;
  }

  .pricing-final-cta,
  .setup-final-upgraded,
  .home-final-upgraded {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-main-wrap {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .contact-side-stack {
    grid-template-columns: 1fr 1fr;
  }

  .process-cta-card {
    max-width: 460px;
  }
}

/* =========================
   RESPONSIVE: MOBILE
========================= */
@media (max-width: 768px) {
  .nav-inner {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-bg {
    background-position: 65% center;
    filter: blur(1px);
  }

  .home-hero,
  .pricing-hero-upgraded,
  .services-hero-redesign,
  .setup-hero-upgraded,
  .contact-hero-upgraded {
    padding: 58px 24px 34px;
  }

  .pricing-hero-upgraded,
  .services-hero-redesign,
  .setup-hero-upgraded,
  .contact-hero-upgraded {
    margin: 0;
    border-radius: 0 0 24px 24px;
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .home-hero h1,
  .pricing-hero h1,
  .services-hero h1,
  .setup-hero h1,
  .contact-hero h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .home-hero-visual {
    margin-top: 24px;
  }

  .mockup-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    opacity: 0.95;
  }

  .hero-benefits,
  .client-strip,
  .services-showcase-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .home-section,
  .pricing-section,
  .services-section,
  .setup-section,
  .contact-section,
  .setup-contact-section {
    margin-top: 58px;
    padding: 0 22px;
  }

  .monthly,
  .monthly-setup,
  .services-process,
  .premium-process,
  .services-cta,
  .setup-final,
  .premium-final,
  .setup-contact-card,
  .contact-section {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .home-intro-upgraded {
    padding: 74px 22px 44px;
  }

  .home-benefit-grid {
    margin-top: 44px;
  }

  .home-benefit-card,
  .build-card,
  .setup-summary-card,
  .setup-build-card,
  .setup-monthly-card,
  .setup-final-upgraded,
  .setup-contact-card-upgraded,
  .contact-section-upgraded {
    padding: 28px;
  }

  .home-process-upgraded,
  .services-process-redesign {
    padding: 46px 22px;
  }

  .home-examples-section,
  .pricing-build-section,
  .services-redesign,
  .contact-main-wrap {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-final-upgraded,
  .pricing-final-cta {
    margin: 52px 22px 0;
    padding: 32px 26px;
  }

  .monthly-upgraded,
  .monthly-setup-upgraded {
    padding: 42px 22px;
    border-radius: 22px;
  }

  .build-card-top,
  .setup-card-top {
    grid-template-columns: 1fr;
  }

  .build-price {
    text-align: left;
  }

  .build-benefits,
  .service-card-wide,
  .form-row,
  .contact-side-stack {
    grid-template-columns: 1fr;
  }

  .service-card-featured,
  .service-card-wide {
    grid-column: span 1;
  }

  .service-card-wide ul {
    grid-column: auto;
  }

  .services-showcase-grid .service-card {
    min-height: auto;
    padding: 30px;
  }

  .services-cta-redesign {
    padding: 38px 24px;
    text-align: center;
  }

  .cta-device,
  .setup-hero-card {
    display: none;
  }

  .browser-mockup {
    transform: none;
  }

  .phone-card {
    right: 12px;
  }

  .contact-hero-points {
    gap: 20px;
  }

  .contact-hero-points div {
    min-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .home-final-upgraded .btn,
  .setup-final-upgraded .btn {
    width: 100%;
  }
}
