/* ============================================================
   ISGCloud — fresh sub-brand of Impact Solution Group.
   Brand blue (--brand) matches the main ISG site; the cloud
   cyan (--cloud) is the ISGCloud accent. Edit those two vars
   to re-skin the whole site.
   ============================================================ */

:root {
  --brand:        #0E63D6;
  --brand-dark:   #0A4AA8;
  --cloud:        #08B8D9;
  --cloud-deep:   #0891B2;
  --grad:         linear-gradient(115deg, var(--brand) 10%, var(--cloud) 90%);

  --ink:          #0B1B33;
  --muted:        #51617A;
  --line:         #E3EBF4;
  --bg:           #FFFFFF;
  --bg-tint:      #F3F8FC;
  --bg-dark:      #081A33;

  --radius:       20px;
  --radius-lg:    28px;
  --shadow-sm:    0 2px 10px rgba(11, 27, 51, .06);
  --shadow-md:    0 14px 40px rgba(11, 27, 51, .10);
  --shadow-brand: 0 14px 34px rgba(14, 99, 214, .30);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }
:focus-visible { outline: 3px solid var(--cloud); outline-offset: 3px; border-radius: 4px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-light {
  background: linear-gradient(115deg, #8FD8FF, #5EEAD4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cloud-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--grad); border-radius: 2px; }
.eyebrow.on-dark { color: #7DD3FC; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .95em 1.9em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn-sm { padding: .68em 1.4em; font-size: .93rem; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(14, 99, 214, .42); }
.btn-ghost { background: var(--bg-tint); color: var(--brand-dark); }
.btn-ghost:hover { background: #E6F0FA; transform: translateY(-3px); }
.btn-outline { box-shadow: inset 0 0 0 1.5px var(--line); color: var(--brand-dark); background: #fff; }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--brand); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0, 0, 0, .25); }
.btn-outline-light { box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45); color: #fff; }
.btn-outline-light:hover { box-shadow: inset 0 0 0 1.5px #fff; transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .85rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand .mark-img { width: 34px; height: 34px; transition: transform .3s ease; }
.brand:hover .mark-img { transform: rotate(-6deg) scale(1.05); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand-name em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header nav { margin-left: auto; }
.nav-links { display: flex; gap: .35rem; }
.nav-links a {
  padding: .55em 1em;
  border-radius: 999px;
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  transition: background .25s ease, color .25s ease;
}
.nav-links a:hover { background: var(--bg-tint); color: var(--brand-dark); }

.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.phone { font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: var(--ink); }
.phone:hover { color: var(--brand); }
.portal-link {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  color: var(--brand-dark);
  padding: .5em .95em;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--line);
  transition: box-shadow .25s ease, color .25s ease, transform .25s ease;
}
.portal-link svg { width: 17px; height: 17px; }
.portal-link:hover { box-shadow: inset 0 0 0 1.5px var(--brand); color: var(--brand); transform: translateY(-2px); }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 62px 0 auto 0;
  z-index: 55;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 1rem clamp(1.2rem, 4vw, 3rem) 1.6rem;
}
.mobile-menu ul { display: grid; gap: .3rem; }
.mobile-menu a { display: block; padding: .8em 1em; border-radius: 12px; font-weight: 600; font-family: var(--font-display); }
.mobile-menu a:hover { background: var(--bg-tint); color: var(--brand-dark); }
.mobile-menu .btn { margin-top: .6rem; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 3rem) 0;
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(8, 184, 217, .10), transparent 70%),
    radial-gradient(55% 60% at 8% 20%, rgba(14, 99, 214, .08), transparent 70%),
    var(--bg);
  overflow: hidden;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.orb-a { width: 420px; height: 420px; right: -120px; top: -140px; background: rgba(8, 184, 217, .18); }
.orb-b { width: 360px; height: 360px; left: -140px; bottom: 60px; background: rgba(14, 99, 214, .14); }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-copy h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; margin: .7rem 0 1.2rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.hero-ticks { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.8rem; }
.hero-ticks li {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-ticks li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 100% no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 100% no-repeat;
}

/* Hero visual: fake browser + floating chips */
.hero-visual { position: relative; }
.browser-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
}
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #D6E2EF; }
.browser-bar span:first-child { background: #FCA5A5; }
.browser-bar span:nth-child(2) { background: #FCD34D; }
.browser-bar span:nth-child(3) { background: #86EFAC; }
.browser-url {
  flex: 1;
  margin-left: .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .28em 1em;
  font-size: .8rem;
  color: var(--muted);
}
.browser-body { padding: 1.4rem; display: grid; gap: .9rem; }
.sk { border-radius: 12px; background: linear-gradient(110deg, #EAF2FA 30%, #F5FAFE 50%, #EAF2FA 70%); background-size: 200% 100%; animation: shimmer 2.8s linear infinite; }
.sk-hero { height: 120px; background: var(--grad); opacity: .9; animation: none; }
.sk-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .9rem; }
.sk-block { height: 64px; }
.sk-line { height: 14px; }
.w70 { width: 70%; } .w45 { width: 45%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.float-chip {
  position: absolute;
  display: grid;
  gap: .05rem;
  padding: .8rem 1.2rem;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--brand); }
.float-chip span { font-size: .78rem; color: var(--muted); }
.chip-uptime { top: -22px; left: -18px; }
.chip-ssl { bottom: -20px; right: -12px; animation-delay: -2.5s; }
@keyframes floaty { 50% { transform: translateY(-9px); } }

/* Stat strip */
.stat-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: 1.6rem clamp(1rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 0;
  box-shadow: 0 -12px 40px rgba(11, 27, 51, .05);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { font-size: .85rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
  text-align: center;
  padding: 1.8rem clamp(1.2rem, 4vw, 3rem);
}
.trust p { font-size: .88rem; color: var(--muted); margin-bottom: .9rem; }
.trust-brand { display: inline-block; margin-bottom: 1.4rem; }
.trust-brand img { height: 40px; width: auto; opacity: .9; transition: opacity .3s ease; }
.trust-brand:hover img { opacity: 1; }
.trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem 1rem;
}
.trust-points li {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5em 1.1em;
}
.trust-points li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 3rem); }
.section-tint { background: var(--bg-tint); }
.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.8rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; margin: .7rem 0 1rem; }
.section-head .sub { color: var(--muted); font-size: 1.06rem; }

/* Services cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(8, 184, 217, .4); }
.card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(14, 99, 214, .10), rgba(8, 184, 217, .12));
  color: var(--brand);
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan h3 { font-size: 1.35rem; }
.plan-for { color: var(--muted); font-size: .9rem; margin: .3rem 0 1.4rem; }
.price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: 1.4rem; }
.price .amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; }
.price .per { color: var(--muted); font-size: .95rem; }
.plan-list { display: grid; gap: .6rem; margin-bottom: 1.8rem; }
.plan-list li {
  display: flex;
  align-items: baseline;
  gap: .6em;
  font-size: .94rem;
  color: var(--muted);
}
.plan-list li::before {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  transform: translateY(2px);
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 100% no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 100% no-repeat;
}
.plan .btn { margin-top: auto; }

.plan-featured {
  border: 0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.plans-note { text-align: center; margin-top: 2.4rem; color: var(--muted); font-size: .96rem; }
.plans-note a { color: var(--brand); font-weight: 600; }
.plans-note a:hover { text-decoration: underline; }

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  background: linear-gradient(115deg, rgba(14, 99, 214, .28), rgba(8, 184, 217, .32));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { font-size: 1.14rem; margin: .5rem 0 .5rem; }
.step p { color: var(--muted); font-size: .94rem; }

.design-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  background: var(--bg-tint);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
}
.design-cta p { color: var(--muted); }
.design-cta strong { color: var(--ink); }

/* Why (dark) */
.section-dark {
  background:
    radial-gradient(70% 90% at 85% 0%, rgba(8, 184, 217, .16), transparent 60%),
    radial-gradient(60% 80% at 5% 100%, rgba(14, 99, 214, .22), transparent 60%),
    var(--bg-dark);
  color: #fff;
}
.section-dark .section-head .sub { color: #A9BDD6; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
  max-width: 980px;
  margin: 0 auto;
}
.why-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  backdrop-filter: blur(6px);
  transition: background .3s ease, transform .3s ease;
}
.why-item:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.why-item h3 { font-size: 1.13rem; margin-bottom: .5rem; color: #EAF4FF; }
.why-item p { color: #A9BDD6; font-size: .95rem; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: rgba(8, 184, 217, .45); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--brand);
  font-weight: 600;
  transition: transform .3s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.5rem 1.3rem; color: var(--muted); font-size: .96rem; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(80% 120% at 20% 0%, rgba(8, 184, 217, .35), transparent 55%),
    linear-gradient(115deg, var(--brand-dark), var(--brand) 55%, var(--cloud-deep));
  color: #fff;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; margin-bottom: 1rem; }
.cta-inner > p { color: rgba(255, 255, 255, .85); font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.cta-small { margin-top: 1.6rem; font-size: .86rem; color: rgba(255, 255, 255, .65); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #A9BDD6; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 3rem) 2.5rem;
}
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .mark { color: #fff; }
.footer-brand p { font-size: .92rem; max-width: 26em; }
.footer-col h4 { color: #EAF4FF; font-size: .95rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col li { font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-portal.portal-link {
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: inherit;
}
.footer-portal.portal-link svg { width: 15px; height: 15px; color: var(--cloud); }
.footer-portal.portal-link:hover { transform: none; color: #fff; }

.status-link { display: inline-flex; align-items: center; gap: .5em; }
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .6);
  animation: statusPulse 2.2s ease-out infinite;
  flex: none;
}
@keyframes statusPulse {
  70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding: 1.4rem;
  font-size: .82rem;
  color: #6E86A3;
}
.footer-legal p { margin: 0; }
.footer-legal-links { margin-top: .4rem; }
.footer-legal-links a { color: #8CA2BC; }
.footer-legal-links a:hover { color: #fff; }

/* ---------- Billing toggle ---------- */
.billing-toggle {
  display: inline-flex;
  gap: .3rem;
  margin-top: 1.6rem;
  padding: .35rem;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.toggle-opt {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: .55em 1.3em;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.toggle-opt.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.save-pill {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: .2em .7em;
}

/* 4-up plans grid + "from" label */
.plans-4 { grid-template-columns: repeat(4, 1fr); max-width: 1200px; }
.price .from { font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--muted); align-self: center; }

/* ---------- Split media/copy sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.split-rev .split-media { order: 2; }
.split-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; margin: .7rem 0 1rem; }
.split-copy .sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem; }
.design-cta-inline { margin-top: .4rem; }

.split-media { position: relative; }
.split-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.split-img-overlay {
  position: absolute;
  bottom: -28px;
  right: -22px;
  width: 44%;
  border-radius: var(--radius);
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.tick-list { display: grid; gap: .9rem; }
.tick-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
  font-size: .98rem;
}
.tick-list strong { color: var(--ink); }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(14, 99, 214, .12), rgba(8, 184, 217, .16));
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 62% no-repeat, linear-gradient(#000, #000);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 62% no-repeat;
}
.tick-list li::after {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 62% no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 62% no-repeat;
}

/* Why section with image */
.why-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.why-img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

/* Footer parent logo */
.footer-parent { display: inline-block; margin-top: 1.3rem; }
.footer-parent img { height: 34px; width: auto; opacity: .85; transition: opacity .3s ease; }
.footer-parent:hover img { opacity: 1; }

/* ---------- Reveal animation (GPU-only, reduced-motion safe) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .sk, .status-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .plans-4 { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
  .site-header nav { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .header-cta { margin-left: auto; }
  .site-header { gap: 1rem; }
  .why-wrap { grid-template-columns: 1fr; }
  .why-img { max-height: 340px; }
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 1.4rem; }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; }
  .plans-4 { max-width: 460px; }
  .plan-featured { order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .header-cta .phone { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-rev .split-media { order: 0; }
  .split-media { max-width: 560px; margin: 0 auto; }
  .split-img-overlay { width: 40%; }
  .header-cta .portal-link { display: none; }
}
@media (max-width: 560px) {
  .cards-grid, .process { grid-template-columns: 1fr; }
  .plans-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .chip-uptime { left: 0; }
  .chip-ssl { right: 0; }
}
