/* ==============================================
   7Labs Theme — main.css | v1.3.0
   Commerce7 apps, integrations, fixes, and support
   ============================================== */

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

:root {
  --ink: #0f172a;
  --ink-2: #172033;
  --muted: #475569;
  --faint: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --line-strong: rgba(15, 23, 42, 0.16);
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-mint: #f0fdf4;
  --surface-lilac: #eef2ff;
  --night: #11131a;
  --night-2: #181b24;
  --night-line: rgba(255, 255, 255, 0.1);
  --night-text: #f8fafc;
  --night-muted: rgba(248, 250, 252, 0.68);
  --green-dark: #14532d;
  --blue: #4d7cfe;
  --zap: #34d399;
  --mailchimp: #f59e0b;
  --pixel: #818cf8;
  --feed: #f472b6;
  --themes: #a3a3a3;
  --wp: #2DD4BF;
  --wp-dark: #0f766e;
  --wp-soft: #f0fdfa;
  --font: 'Geist', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
  --max: 1160px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--surface-soft);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(rgba(15, 23, 42, 0.1) 0.7px, transparent 0.8px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a { color: inherit; }

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 64px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--night-text);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

nav.stuck {
  background: rgba(17, 19, 26, 0.92);
  border-color: var(--night-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--night-text);
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.nav-mark-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  display: block;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(61, 154, 64, 0.3);
}

.nav-name {
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-name em {
  margin-left: 4px;
  color: var(--night-muted);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a,
.nav-cta {
  color: var(--night-muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--night-text);
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--night-text);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--night-muted);
}

.hero {
  min-height: min(100svh, 920px);
  padding: 124px var(--pad) 72px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--night-text);
  background:
    radial-gradient(900px 520px at 12% 12%, rgba(52, 211, 153, 0.18), transparent 64%),
    radial-gradient(760px 520px at 88% 18%, rgba(77, 124, 254, 0.22), transparent 62%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(ellipse 70% 75% at 50% 40%, black 18%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.hero-title {
  max-width: 760px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.3rem, 7vw, 6.65rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-sub {
  max-width: 660px;
  margin-top: 28px;
  color: var(--night-muted);
  font-family: var(--mono);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
  color: var(--night-text);
  border: 1px solid var(--night-line);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  border: 1px solid var(--night-line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.panel-topline {
  color: var(--zap);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.panel-title {
  color: var(--night-text);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
  background: var(--night-line);
}

.panel-grid div {
  min-height: 96px;
  padding: 18px;
  background: rgba(17, 19, 26, 0.54);
}

.panel-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}

.panel-grid span {
  display: block;
  margin-top: 8px;
  color: var(--night-muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.45;
}

.studio-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.studio-strip-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.studio-strip p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 780px;
}

.studio-strip a {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.products-wrap,
.studio-section,
.problems-section,
.process-section,
.contact-section,
.about-section {
  padding: clamp(76px, 10vw, 112px) var(--pad);
}

.products-wrap,
.problems-section,
.about-section {
  background: var(--surface);
}

.studio-section,
.contact-section {
  background: var(--surface-mint);
}

.pricing-section,
.faq-section {
  padding: clamp(76px, 10vw, 112px) var(--pad);
}

.pricing-section {
  background: var(--surface);
}

.faq-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

.process-section {
  background: var(--night);
  color: var(--night-text);
}

.section-head,
.products-grid,
.service-rail,
.problems-grid,
.process-list,
.contact-section,
.about-section {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-head {
  margin-bottom: clamp(34px, 6vw, 54px);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
}

.section-label {
  margin-bottom: 12px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-title em {
  color: var(--green-dark);
  font-style: italic;
}

.process-section .section-label,
.process-section .section-title {
  color: var(--night-text);
}

.process-section .section-title em {
  color: #bbf7d0;
}

.section-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.service-card,
.problem-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-card {
  min-height: 330px;
  padding: clamp(24px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 65%;
  background: radial-gradient(ellipse at center, var(--accent), transparent 66%);
  opacity: 0.12;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.product-main-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-kicker,
.product-icon,
.product-card h3,
.product-card p,
.product-actions {
  position: relative;
  z-index: 2;
}

.product-kicker {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-top: 24px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, white);
}

.product-icon--grid {
  grid-template-columns: repeat(3, 7px);
  gap: 4px;
}

.product-icon--grid span {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.35;
}

.product-icon--grid span:nth-child(2),
.product-icon--grid span:nth-child(5),
.product-icon--grid span:nth-child(8) { opacity: 1; }

.product-card h3 {
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.product-card p {
  flex: 1;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.72;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-actions a {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-decoration: none;
}

.product-actions a:last-child { color: var(--green-dark); }

.product-card--zap { --accent: var(--zap); }
.product-card--mailchimp { --accent: var(--mailchimp); }
.product-card--pixel { --accent: var(--pixel); }
.product-card--feed { --accent: var(--feed); }
.product-card--themes { --accent: var(--themes); }

.free-setup-strip,
.wp-band {
  padding: clamp(76px, 10vw, 112px) var(--pad);
}

.free-setup-strip {
  background: var(--wp-soft);
  border-block: 1px solid color-mix(in srgb, var(--wp) 28%, white);
}

.free-setup-inner,
.wp-feature-grid,
.wp-band-actions,
.wp-disclaimer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.free-setup-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.free-setup-inner .section-label,
.wp-band .section-label {
  color: var(--wp-dark);
}

.free-setup-inner .section-title em,
.wp-band .section-title em {
  color: var(--wp-dark);
}

.free-setup-inner .section-lead {
  max-width: 580px;
  margin-top: 20px;
}

.free-setup-inner .btn-primary,
.wp-band .btn-primary {
  margin-top: 28px;
  background: var(--wp);
  color: var(--ink);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--wp) 28%, transparent);
}

.scope-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--wp) 35%, white);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--wp) 35%, white);
}

.scope-split > div {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.74);
}

.scope-split h3,
.wp-feature-grid h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.scope-split ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.55;
}

.wp-band {
  background:
    radial-gradient(600px 340px at 88% 8%, color-mix(in srgb, var(--wp) 21%, transparent), transparent 70%),
    var(--surface);
}

.wp-band .section-head {
  margin-bottom: clamp(34px, 6vw, 54px);
}

.wp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wp-feature-grid article {
  min-height: 190px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid color-mix(in srgb, var(--wp) 34%, white);
  border-radius: var(--radius);
  background: var(--wp-soft);
}

.wp-feature-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.68;
}

.wp-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.wp-band .btn-secondary {
  color: var(--wp-dark);
  border-color: color-mix(in srgb, var(--wp) 52%, white);
  background: var(--wp-soft);
}

.wp-band .btn-secondary:hover {
  border-color: var(--wp);
  background: color-mix(in srgb, var(--wp) 13%, white);
}

.wp-disclaimer {
  margin-top: 18px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 30px);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
}

.service-card span,
.problem-card span {
  display: block;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-card h3,
.problem-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-card p,
.problem-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

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

.problem-card {
  min-height: 250px;
  padding: clamp(24px, 4vw, 32px);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
  background: var(--night-line);
}

.process-list li {
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--night-2);
}

.process-list strong {
  display: block;
  color: #bbf7d0;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.process-list span {
  color: var(--night-muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.72;
}

.pricing-group,
.pricing-footnote,
.faq-list {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.pricing-group + .pricing-group {
  margin-top: clamp(42px, 6vw, 68px);
}

.pricing-group-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.price-card {
  min-height: 390px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.price-kicker {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.price-amount {
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-amount span {
  display: block;
  margin-bottom: 7px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-amount--quote {
  font-size: 1.8rem;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.price-card a {
  margin-top: auto;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
}

.price-card a:hover,
.price-card a:focus-visible {
  color: var(--green-dark);
}

.price-card--care {
  color: var(--night-text);
  border-color: var(--night-line);
  background: var(--night);
}

.price-card--care .price-kicker {
  color: #bbf7d0;
}

.price-card--care h3,
.price-card--care .price-amount {
  color: var(--night-text);
}

.price-card--care .price-amount span,
.price-card--care ul {
  color: var(--night-muted);
}

.price-card--care a {
  color: #bbf7d0;
}

.pricing-footnote {
  margin-top: clamp(34px, 5vw, 48px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-list summary {
  padding: 20px 54px 20px 22px;
  position: relative;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: 820px;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
}

.contact-left .section-title {
  margin-bottom: 20px;
}

.contact-left > p:not(.section-label) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-detail {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.contact-row a {
  color: var(--blue);
  text-decoration: none;
}

.contact-row-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.contact-form-wrap form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

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

.form-group {
  display: grid;
  gap: 7px;
}

.form-label {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.5;
  outline: none;
  padding: 12px 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-textarea {
  min-height: 126px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(77, 124, 254, 0.55);
  box-shadow: 0 0 0 3px rgba(77, 124, 254, 0.12);
}

.form-submit {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
}

.form-note,
.form-recaptcha-note {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}

.form-recaptcha-note a {
  color: var(--blue);
  text-decoration: none;
}

.grecaptcha-badge { visibility: hidden !important; }

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.about-body {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.about-detail {
  margin-top: 18px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.78;
}

footer {
  padding: 32px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-copy {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
}

@keyframes up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-inner,
  .split-head,
  .contact-section,
  .about-section,
  .free-setup-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 520px;
  }

  .products-grid,
  .problems-grid,
  .process-list,
  .scope-split,
  .wp-feature-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .service-rail {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    height: 62px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    padding: 12px var(--pad) 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(17, 19, 26, 0.97);
    border-bottom: 1px solid var(--night-line);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero {
    padding-top: 104px;
  }

  .hero-title {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .studio-strip-inner,
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .service-rail,
  .form-row {
    grid-template-columns: 1fr;
  }

  .wp-band-actions {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav-name em { display: none; }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .price-card,
  .wp-feature-grid article {
    min-height: 0;
  }

  footer {
    align-items: flex-start;
  }
}

/* ── Tracking offers (1.3.0) ── */
.hero--check { min-height: min(86svh, 760px); }

.check-items {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.price-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.holiday-band {
  width: min(100%, var(--max));
  margin: 0 auto clamp(42px, 6vw, 68px);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  border-radius: var(--radius);
  color: var(--night-text);
  background:
    radial-gradient(520px 260px at 90% 0%, rgba(52, 211, 153, 0.22), transparent 70%),
    var(--night);
}

.holiday-band .price-kicker { color: #bbf7d0; }

.holiday-band h3 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.holiday-band p:not(.price-kicker):not(.price-amount) {
  margin-top: 14px;
  color: var(--night-muted);
  line-height: 1.7;
  max-width: 620px;
}

.holiday-band .price-amount { margin-top: 0; color: var(--night-text); }

.holiday-was {
  display: block;
  margin-top: 8px;
  color: var(--night-muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.holiday-price .btn-primary { margin-top: 20px; }

.agency-section {
  padding: clamp(76px, 10vw, 112px) var(--pad);
  background: var(--surface-lilac);
  border-block: 1px solid var(--line);
}

.agency-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.agency-inner .section-lead { margin-top: 20px; max-width: 580px; }
.agency-inner .btn-primary { margin-top: 28px; }

.agency-list {
  display: grid;
  gap: 1px;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.agency-list li {
  padding: clamp(20px, 3vw, 26px);
  background: rgba(255, 255, 255, 0.82);
}

.agency-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.agency-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.wp-disclaimer a { color: var(--wp-dark); }

.about-owner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.about-owner img {
  border-radius: 50%;
  object-fit: cover;
}

.about-owner strong,
.about-owner span { display: block; }

.about-owner span {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1160px) {
  .price-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .price-grid--four,
  .holiday-band,
  .agency-inner { grid-template-columns: 1fr; }
}

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

.agency-inner .btn-primary {
  background: var(--ink);
  color: #ffffff;
}
