:root {
  --near-black: #0d1117;
  --graphite: #2a2f36;
  --soft-white: #f2f4f6;
  --teal: #0ea5a6;
  --teal-dark: #087d82;
  --white: #ffffff;
  --muted: #6c7581;
  --line: rgba(13, 17, 23, 0.12);
  --shadow: 0 22px 70px rgba(13, 17, 23, 0.14);
  --radius: 28px;
  --max: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--soft-white);
}

body {
  margin: 0;
  font-family: Inter, Satoshi, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--near-black);
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 165, 166, 0.16), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(13, 17, 23, 0.08), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, var(--soft-white) 38%, #ffffff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

button, input, textarea, select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--near-black);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus { top: 1rem; }

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.notice-bar {
  position: relative;
  z-index: 120;
  background: var(--near-black);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
  box-shadow: 0 10px 30px rgba(13,17,23,0.12);
  transform: translateY(-110%);
  opacity: 0;
  animation: noticeDropIn 680ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
  will-change: transform, opacity;
}

@keyframes noticeDropIn {
  0% {
    transform: translateY(-110%);
    opacity: 0;
  }
  68% {
    transform: translateY(3px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice-bar {
    transform: none;
    opacity: 1;
    animation: none;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(13, 17, 23, 0.08);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.brand-logo-mobile {
  display: none;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.92rem;
  color: rgba(13, 17, 23, 0.76);
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  border: 1px solid rgba(13,17,23,0.12);
  background: rgba(255,255,255,0.76);
  color: var(--near-black);
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(13,17,23,0.12);
  background: var(--white);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--near-black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.12rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--near-black), #18202b);
  box-shadow: 0 14px 35px rgba(13,17,23,0.18);
}

.btn-primary:hover { box-shadow: 0 18px 42px rgba(13,17,23,0.24); }

.btn-accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 14px 35px rgba(14,165,166,0.2);
}

.btn-secondary {
  border-color: rgba(13,17,23,0.14);
  background: rgba(255,255,255,0.78);
  color: var(--near-black);
}

.hero {
  position: relative;
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 4.5rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--teal-dark);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(14,165,166,0.12);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.08em;
  margin-bottom: 1.4rem;
}

h1 .accent { color: var(--teal-dark); }

.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.65;
  color: rgba(13,17,23,0.72);
  max-width: 680px;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.micro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.micro-list li {
  border: 1px solid rgba(13,17,23,0.1);
  background: rgba(255,255,255,0.72);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  color: rgba(13,17,23,0.74);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  min-height: 530px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(13,17,23,0.98), rgba(24,32,43,0.96)),
    var(--near-black);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 2.2rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20% -25% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,166,0.38), rgba(14,165,166,0.08) 45%, transparent 70%);
  filter: blur(4px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto auto -22% -18%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,244,246,0.14), transparent 65%);
}

.logo-orbit {
  position: absolute;
  inset: 2rem 2rem auto auto;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
}

.logo-orbit img {
  width: 88px;
  opacity: 0.96;
}

.hero-panel {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(22px);
  padding: 1.4rem;
}

.hero-panel .label {
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  font-weight: 900;
}

.hero-panel h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.75rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.metric {
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.metric strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
}

.metric span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

.section {
  padding: 76px 0;
}

.section.compact { padding-top: 40px; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 0;
}

.section-head p,
.narrow-text {
  color: rgba(13,17,23,0.68);
  line-height: 1.7;
  font-size: 1.02rem;
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.process-card,
.contact-card,
.policy-card {
  border: 1px solid rgba(13,17,23,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 16px 45px rgba(13,17,23,0.06);
}

.service-card {
  min-height: 280px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 112px;
  height: 112px;
  border-radius: 30px;
  border: 1px solid rgba(14,165,166,0.2);
  transform: rotate(18deg);
}

.card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--near-black);
  color: var(--white);
  font-weight: 900;
  font-size: 0.86rem;
}

.service-card h3,
.process-card h3,
.contact-card h3,
.policy-card h3 {
  font-size: 1.32rem;
  letter-spacing: -0.035em;
  margin: 1.25rem 0 0.65rem;
}

.service-card p,
.process-card p,
.contact-card p,
.policy-card p,
.policy-content p,
.policy-content li {
  color: rgba(13,17,23,0.68);
  line-height: 1.65;
}

.split-band {
  border-radius: 42px;
  background: var(--near-black);
  color: var(--white);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.split-band::after {
  content: "";
  position: absolute;
  inset: auto -7% -28% auto;
  width: 370px;
  height: 370px;
  background: radial-gradient(circle, rgba(14,165,166,0.32), transparent 68%);
}

.split-band h2,
.split-band p { position: relative; z-index: 2; }

.split-band p { color: rgba(255,255,255,0.7); line-height: 1.7; }

.visual-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 1rem 1.1rem;
}

.stack-item span { color: rgba(255,255,255,0.64); }

.stack-item strong { font-size: 1.03rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 1.35rem;
  min-height: 240px;
}

.process-card .step {
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(330px, 0.88fr);
  gap: 1rem;
  align-items: start;
}

.contact-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-card.dark {
  background: var(--near-black);
  color: var(--white);
  min-height: 100%;
}

.contact-card.dark p { color: rgba(255,255,255,0.68); }

.contact-card.dark .contact-line {
  border-color: rgba(255,255,255,0.12);
}

.contact-line {
  padding: 1rem 0;
  border-top: 1px solid rgba(13,17,23,0.1);
}

.contact-line:last-child { border-bottom: 1px solid rgba(13,17,23,0.1); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(13,17,23,0.13);
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 0.92rem 1rem;
  color: var(--near-black);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea { resize: vertical; min-height: 130px; }

input:focus, textarea:focus, select:focus {
  border-color: rgba(14,165,166,0.78);
  box-shadow: 0 0 0 4px rgba(14,165,166,0.14);
}

.checkbox-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(13,17,23,0.72);
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--teal);
}

.form-note {
  color: rgba(13,17,23,0.58);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0.2rem 0 0;
}

.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.72);
  padding: 42px 0 28px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-logo { width: 230px; margin-bottom: 1rem; }

.footer p { max-width: 560px; line-height: 1.7; }

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: end;
}

.footer-links a { color: rgba(255,255,255,0.76); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem auto;
  z-index: 300;
  max-width: 450px;
  border-radius: 24px;
  background: rgba(13,17,23,0.96);
  color: rgba(255,255,255,0.82);
  padding: 1rem;
  box-shadow: 0 26px 80px rgba(13,17,23,0.26);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-banner strong { display: block; color: var(--white); margin-bottom: 0.35rem; }

.cookie-banner p { font-size: 0.88rem; line-height: 1.55; margin-bottom: 0.75rem; }

.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.cookie-actions .btn { min-height: 40px; padding: 0.62rem 0.85rem; font-size: 0.86rem; }

.policy-hero {
  padding: 70px 0 34px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.policy-card {
  padding: 1.5rem;
  position: sticky;
  top: 110px;
}

.policy-content {
  border: 1px solid rgba(13,17,23,0.1);
  border-radius: 34px;
  background: rgba(255,255,255,0.78);
  padding: clamp(1.3rem, 3vw, 2.4rem);
}

.policy-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content ul { padding-left: 1.2rem; }

.policy-meta {
  color: rgba(13,17,23,0.56);
  font-size: 0.9rem;
}

.mobile-panel {
  display: none;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .btn-primary { display: none; }

  .menu-toggle { display: inline-flex; }
  .brand-logo { height: 38px; }

  .mobile-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px, 88vw);
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: rgba(13,17,23,0.98);
    color: var(--white);
    z-index: 250;
    transform: translateX(102%);
    transition: transform 220ms ease;
    box-shadow: -24px 0 80px rgba(13,17,23,0.24);
  }

  .mobile-panel.open { transform: translateX(0); }

  .mobile-panel a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.88); }

  .mobile-panel .btn { margin-top: 1rem; }

  .mobile-close {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    font-size: 1.35rem;
    cursor: pointer;
  }

  .hero { padding-top: 58px; }
  .hero-grid,
  .section-head,
  .split-band,
  .contact-wrap,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: 450px; }
  .card-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policy-card { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .notice-bar { font-size: 0.72rem; }
  .nav { height: 70px; }
  .brand-logo { display: none; }
  .brand-logo-mobile { display: block; }
  h1 { font-size: clamp(3.1rem, 17vw, 4.8rem); }
  .hero-grid { gap: 2.2rem; }
  .hero-card { min-height: 410px; padding: 1.1rem; border-radius: 30px; }
  .logo-orbit { inset: 1.1rem 1.1rem auto auto; width: 116px; height: 116px; border-radius: 28px; }
  .logo-orbit img { width: 72px; }
  .hero-panel { left: 1.1rem; right: 1.1rem; bottom: 1.1rem; border-radius: 24px; padding: 1rem; }
  .metric-grid { grid-template-columns: 1fr; }
  .card-grid,
  .process-grid,
  .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .section { padding: 54px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .cookie-banner { inset: auto 0.75rem 0.75rem; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* Website care plans */
.service-hero {
  padding: 86px 0 42px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: stretch;
}

.price-highlight-card {
  border: 1px solid rgba(13,17,23,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  background:
    radial-gradient(circle at 80% 12%, rgba(14,165,166,0.18), transparent 12rem),
    linear-gradient(145deg, #ffffff, rgba(255,255,255,0.64));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 360px;
}

.price-highlight-card strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5.4rem);
  letter-spacing: -0.08em;
  line-height: 0.95;
  margin: 1.1rem 0 0.75rem;
}

.price-highlight-card p {
  font-weight: 800;
  color: var(--near-black);
  margin: 0 0 0.6rem;
}

.price-highlight-card small {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  border: 1px solid rgba(13,17,23,0.1);
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 18px 60px rgba(13,17,23,0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card.featured {
  border-color: rgba(14,165,166,0.42);
  background:
    linear-gradient(180deg, rgba(14,165,166,0.08), rgba(255,255,255,0.88) 34%),
    #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 26px 72px rgba(14,165,166,0.16);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--near-black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(13,17,23,0.12);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--teal-dark);
  background: rgba(14,165,166,0.08);
}

.pricing-top h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 1rem 0 1.1rem;
  max-width: 16rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price strong {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.price em {
  font-style: normal;
  color: var(--muted);
  font-weight: 800;
}

.annual {
  margin: 0 0 1.1rem;
  color: var(--teal-dark);
  font-weight: 800;
}

.feature-list {
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(13,17,23,0.08);
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(13,17,23,0.78);
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(14,165,166,0.12);
}

.plan-note {
  margin: auto 0 0;
  padding-top: 1.2rem;
  color: var(--near-black);
  font-weight: 900;
}

.soft-section {
  background: rgba(255,255,255,0.45);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  border: 1px solid rgba(13,17,23,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  padding: 1.45rem;
}

.detail-card h2 {
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.detail-card p {
  color: rgba(13,17,23,0.7);
  line-height: 1.65;
}

.scope-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  background: var(--near-black);
  color: var(--white);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

.scope-panel h2 { color: var(--white); }
.scope-panel p { color: rgba(255,255,255,0.76); line-height: 1.7; }
.scope-panel .eyebrow { color: rgba(255,255,255,0.62); }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.addons-grid div {
  border: 1px solid rgba(13,17,23,0.1);
  background: rgba(255,255,255,0.78);
  border-radius: 20px;
  padding: 1rem;
}

.addons-grid strong,
.addons-grid span {
  display: block;
}

.addons-grid span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 10% 20%, rgba(14,165,166,0.18), transparent 12rem),
    #ffffff;
  border: 1px solid rgba(13,17,23,0.1);
  box-shadow: var(--shadow);
}

.final-cta img {
  width: 96px;
  border-radius: 24px;
}

.final-cta h2 { margin-bottom: 0.4rem; }
.final-cta p { color: var(--muted); margin: 0; line-height: 1.6; }

@media (max-width: 900px) {
  .service-hero-grid,
  .scope-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .details-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .price-highlight-card {
    min-height: auto;
  }

  .final-cta img {
    width: 78px;
  }
}


/* Refined services / pricing page layout v3 */
.services-page .notice-bar {
  font-size: 0.74rem;
}

.services-page .service-hero {
  padding: 72px 0 34px;
}

.services-page .service-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}

.services-page h1 {
  max-width: 890px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.services-page .lede {
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.services-page .price-highlight-card {
  min-height: 340px;
  border-radius: 32px;
}

.services-page .price-highlight-card .label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(14,165,166,0.1);
  color: var(--teal-dark);
  padding: 0.42rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page .price-highlight-card strong {
  font-size: clamp(3rem, 5vw, 4.65rem);
  letter-spacing: -0.065em;
}

.services-page .section.compact {
  padding-top: 48px;
}

.services-page .section-head {
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.58fr);
  align-items: start;
  gap: clamp(1.4rem, 3vw, 3rem);
  margin-bottom: 1.6rem;
}

.services-page h2 {
  font-size: clamp(2.05rem, 3.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.services-page .section-head p {
  padding-top: 0.45rem;
  font-size: 1rem;
  max-width: 560px;
}

.services-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.services-page .pricing-card {
  border-radius: 30px;
  padding: 1.5rem;
  min-height: 100%;
}

.services-page .pricing-card.featured {
  transform: translateY(-8px);
}

.services-page .pricing-top h3 {
  min-height: 3rem;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin: 1rem 0 1rem;
}

.services-page .price strong {
  font-size: clamp(2.7rem, 4.2vw, 3.65rem);
  letter-spacing: -0.065em;
}

.services-page .annual {
  min-height: 2.6rem;
  font-size: 0.94rem;
  line-height: 1.35;
}

.services-page .feature-list {
  gap: 0.62rem;
  font-size: 0.94rem;
}

.services-page .plan-note {
  font-size: 0.92rem;
  line-height: 1.45;
}

.services-page .details-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-page .detail-card {
  padding: 1.35rem;
}

.services-page .detail-card h2 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.services-page .scope-panel {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.services-page .addons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-page .final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

@media (max-width: 860px) {
  .services-page .pricing-grid {
    grid-template-columns: 1fr;
  }

  .services-page .pricing-card.featured {
    transform: none;
  }

  .services-page .pricing-top h3,
  .services-page .annual {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .services-page .service-hero-grid,
  .services-page .section-head,
  .services-page .details-grid,
  .services-page .scope-panel,
  .services-page .addons-grid,
  .services-page .final-cta {
    grid-template-columns: 1fr;
  }

  .services-page .price-highlight-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .services-page .service-hero {
    padding: 44px 0 20px;
  }

  .services-page h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .services-page h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.02;
  }

  .services-page .lede {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .services-page .pricing-card,
  .services-page .detail-card,
  .services-page .price-highlight-card {
    border-radius: 24px;
    padding: 1.15rem;
  }

  .services-page .badge {
    position: static;
    width: fit-content;
    margin-bottom: 0.8rem;
  }

  .services-page .price strong {
    font-size: 3rem;
  }
}


/* Pricing billing toggle v4 */
.services-page .billing-toggle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.2rem;
  padding: 0.75rem;
  border: 1px solid rgba(13,17,23,0.1);
  background: rgba(255,255,255,0.76);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(13,17,23,0.06);
}

.services-page .billing-title {
  display: block;
  color: var(--near-black);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.75rem;
}

.services-page .billing-toggle-wrap p {
  margin: 0.15rem 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.services-page .billing-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(13,17,23,0.06);
}

.services-page .billing-switch button {
  border: 0;
  border-radius: 999px;
  padding: 0.74rem 1rem;
  background: transparent;
  color: rgba(13,17,23,0.64);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.services-page .billing-switch button:hover {
  transform: translateY(-1px);
}

.services-page .billing-switch button.active {
  background: var(--near-black);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(13,17,23,0.18);
}

.services-page .billing-switch button span {
  display: inline-flex;
  margin-left: 0.42rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(14,165,166,0.18);
  color: var(--teal-light);
  font-size: 0.72rem;
  vertical-align: middle;
}

.services-page .price strong {
  transition: opacity 140ms ease;
}

.services-page .price-highlight-card strong {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
}

.services-page .price-highlight-card strong em {
  font-size: 1.1rem;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.services-page .saving-line {
  display: inline-flex;
  width: fit-content;
  margin: -0.35rem 0 1.1rem;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(14,165,166,0.1);
  color: var(--teal-dark);
  font-size: 0.79rem;
  font-weight: 900;
  line-height: 1.2;
}

.services-page.billing-monthly .saving-line,
.services-page.billing-monthly [data-annual-only] {
  display: none;
}

.services-page.billing-monthly .billing-toggle-wrap p::after {
  content: "";
}

.services-page .annual {
  color: rgba(13,17,23,0.58);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .services-page .billing-toggle-wrap {
    align-items: stretch;
    flex-direction: column;
    border-radius: 28px;
    padding: 0.9rem;
  }

  .services-page .billing-title,
  .services-page .billing-toggle-wrap p {
    margin-left: 0;
  }

  .services-page .billing-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .services-page .billing-switch button {
    padding: 0.78rem 0.65rem;
  }

  .services-page .billing-switch button span {
    display: block;
    margin: 0.22rem auto 0;
    width: fit-content;
  }
}

.services-page .billing-switch button:not(.active) span {
  color: var(--teal-dark);
  background: rgba(14,165,166,0.12);
}

/* Services page refinements v5 */
.services-page .service-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
}

.services-page .service-hero-image {
  position: relative;
  margin: 0;
  min-height: 380px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(13,17,23,0.1);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #f7fbfb, #e7f5f5 55%, #ffffff);
  isolation: isolate;
}

.services-page .service-hero-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.45);
  z-index: 1;
  pointer-events: none;
}

.services-page .service-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0.04) 0%, rgba(13,17,23,0.1) 38%, rgba(13,17,23,0.72) 100%);
  z-index: 1;
}

.services-page .service-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.services-page .service-hero-image figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  color: var(--white);
  font-weight: 850;
  line-height: 1.35;
  max-width: 20rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(13,17,23,0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(13,17,23,0.18);
}

.services-page .section-head p {
  color: rgba(13,17,23,0.68);
  font-weight: 650;
}

.services-page .scope-panel h2 {
  letter-spacing: -0.045em;
}

.services-page .billing-switch button.active span {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}

@media (max-width: 900px) {
  .services-page .service-hero-image,
  .services-page .service-hero-image img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .services-page .service-hero-image,
  .services-page .service-hero-image img {
    min-height: 260px;
  }

  .services-page .service-hero-image figcaption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    font-size: 0.94rem;
    padding: 0.9rem 0.95rem;
  }
}


/* Services pricing detail refinements v6 */
.services-page .price {
  gap: 0.28rem;
}

.services-page .price strong {
  display: inline-block;
}

.services-page .pricing-fineprint {
  margin: 1rem 0 0;
  color: rgba(13,17,23,0.48);
  font-size: 0.82rem;
  line-height: 1.55;
}

.services-page .comparison-accordion {
  margin-top: 1.25rem;
  border: 1px solid rgba(13,17,23,0.1);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 54px rgba(13,17,23,0.06);
  overflow: hidden;
}

.services-page .comparison-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-weight: 950;
  color: var(--near-black);
}

.services-page .comparison-accordion summary::-webkit-details-marker {
  display: none;
}

.services-page .comparison-accordion summary span {
  font-size: 1.02rem;
}

.services-page .comparison-accordion summary em {
  font-style: normal;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.services-page .comparison-accordion summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(14,165,166,0.1);
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.services-page .comparison-accordion[open] summary::after {
  content: "–";
}

.services-page .comparison-table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(13,17,23,0.08);
}

.services-page .comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.services-page .comparison-table th,
.services-page .comparison-table td {
  padding: 0.88rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(13,17,23,0.07);
}

.services-page .comparison-table th {
  color: var(--near-black);
  background: rgba(13,17,23,0.035);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-page .comparison-table td:first-child {
  font-weight: 900;
  color: var(--near-black);
}

.services-page .comparison-table td:not(:first-child) {
  color: rgba(13,17,23,0.68);
  line-height: 1.45;
}

.services-page .addons-grid div {
  min-height: 150px;
}

.services-page .addons-grid span {
  margin-top: 0.5rem;
  font-weight: 650;
  line-height: 1.55;
}

.services-page .feature-list {
  gap: 0.72rem;
}

.services-page .feature-list li {
  line-height: 1.5;
}

@media (max-width: 760px) {
  .services-page .comparison-accordion summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .services-page .comparison-accordion summary em {
    width: calc(100% - 3rem);
  }

  .services-page .comparison-table {
    font-size: 0.84rem;
    min-width: 760px;
  }
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-note[data-state="success"] {
  color: #167a3a;
}

.form-note[data-state="error"] {
  color: #a33a2a;
}
