/*
Theme Name: wpautoscaling2
Theme URI: https://wpautoscaling.com
Author: wpautoscaling
Author URI: https://wpautoscaling.com
Description: High-conversion marketing theme for managed WordPress and WooCommerce hosting. Built for speed, trust, and clear CTAs.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: wpautoscaling2
*/

/* ───── Design Tokens ───── */
:root {
  --color-bg: #f7f9fc;
  --color-surface: #ffffff;
  --color-surface-alt: #edf1f7;
  --color-surface-hover: #f0f4fa;
  --color-text: #0f1f2e;
  --color-text-secondary: #4a5e72;
  --color-border: #dce3ec;
  --color-brand: #0062a3;
  --color-brand-dark: #004977;
  --color-brand-light: #e8f2fb;
  --color-accent: #f5920a;
  --color-accent-hover: #e07f00;
  --color-success: #16a34a;
  --color-white: #ffffff;
  --max-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 3px rgba(15,31,46,.06);
  --shadow-md: 0 8px 30px rgba(15,31,46,.07);
  --shadow-lg: 0 20px 50px rgba(15,31,46,.10);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --transition-base: 0.2s ease;
  --transition-spring: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ───── Reset ───── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--color-brand); text-decoration: none; transition: color var(--transition-base); }
a:hover, a:focus { color: var(--color-brand-dark); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { margin: 0; line-height: 1.2; font-weight: 700; }
p { margin: 0; }

/* ───── Utilities ───── */
.wrap {
  width: min(92%, var(--max-w));
  margin-inline: auto;
}
.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--color-surface);
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin-bottom: 0.75rem;
  max-width: 720px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.6;
}
.section-header {
  margin-bottom: 2.5rem;
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-spring);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-brand);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0,98,163,.25);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--color-brand-dark);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(0,98,163,.35);
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(245,146,10,.25);
}
.btn--accent:hover, .btn--accent:focus-visible {
  background: var(--color-accent-hover);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(245,146,10,.35);
}
.btn--outline {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: transparent;
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
}
.btn--white-outline {
  border-color: rgba(255,255,255,.5);
  color: var(--color-white);
  background: transparent;
}
.btn--white-outline:hover, .btn--white-outline:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: var(--color-white);
}
.btn--sm {
  min-height: 40px;
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
}

/* ───── Site Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,249,252,.92);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid rgba(220,227,236,.6);
  transition: box-shadow var(--transition-base);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(15,31,46,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}
.site-branding {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-text);
  transition: color var(--transition-base);
}
.site-branding:hover { color: var(--color-brand); text-decoration: none; }

/* Desktop nav */
.site-nav { display: none; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 0.2rem; padding: 0; margin: 0; }
.site-nav a {
  display: block;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-base);
}
.site-nav a:hover, .site-nav a:focus { background: var(--color-surface-alt); color: var(--color-brand); text-decoration: none; }

.header-ctas { display: flex; align-items: center; gap: 0.5rem; }

/* Mobile burger */
.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.burger svg { width: 24px; height: 24px; color: var(--color-text); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15,31,46,.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-spring);
}
.mobile-menu.is-open { display: block; opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 88vw); height: 100%;
  background: var(--color-surface);
  padding: 1.5rem;
  box-shadow: -6px 0 30px rgba(15,31,46,.12);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-spring);
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--color-surface-alt); border: none; cursor: pointer;
  margin-left: auto; margin-bottom: 1.5rem;
}
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu-nav { list-style: none; padding: 0; margin: 0 0 2rem; }
.mobile-menu-nav li { border-bottom: 1px solid var(--color-border); }
.mobile-menu-nav a {
  display: block; padding: 0.85rem 0;
  font-weight: 600; font-size: 1.05rem;
  color: var(--color-text);
}
.mobile-menu-nav a:hover { color: var(--color-brand); text-decoration: none; }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 0.6rem; }
.mobile-menu-ctas .btn { width: 100%; text-align: center; }

/* ───── Hero ───── */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(175deg, #ffffff 0%, var(--color-bg) 50%, var(--color-brand-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,98,163,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--color-brand), #0886d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content > p {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 58ch;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-proof-item svg {
  width: 18px; height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
}
.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
}
.hero-card-list li + li { border-top: 1px solid var(--color-border); }
.hero-card-list svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: var(--color-brand);
}

/* ───── Credibility Strip ───── */
.cred-strip {
  border-block: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 0.6rem 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.cred-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all var(--transition-base);
}
.cred-pill svg { width: 18px; height: 18px; color: var(--color-brand); flex-shrink: 0; }

/* ───── Problems ───── */
.problems-grid {
  display: grid;
  gap: 0.75rem;
}
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  transition: all var(--transition-spring);
}
.problem-card:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fef2f2;
  flex-shrink: 0;
}
.problem-icon svg { width: 20px; height: 20px; color: #dc2626; }
.problem-card p {
  color: var(--color-text-secondary);
  font-size: 0.98rem;
  line-height: 1.5;
}
.outcome-box {
  margin-top: 2rem;
  background: var(--color-brand-light);
  border: 1px solid rgba(0,98,163,.15);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
}
.outcome-box p {
  color: var(--color-brand-dark);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ───── Process Steps ───── */
.process-grid {
  display: grid;
  gap: 1.25rem;
}
.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  transition: all var(--transition-spring);
  position: relative;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), #0886d1);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.step-card > p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.step-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--color-brand-light);
  color: var(--color-brand);
}

/* ───── Migration Cards ───── */
.twin-grid {
  display: grid;
  gap: 1.25rem;
}
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-spring);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
}
.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-brand-light);
  margin-bottom: 1.2rem;
}
.info-card-icon svg { width: 24px; height: 24px; color: var(--color-brand); }
.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.info-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ───── Plans Table ───── */
.plan-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.plan-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 0.95rem;
}
.plan-table th,
.plan-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.plan-table thead th {
  background: var(--color-surface-alt);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}
.plan-table tbody tr:last-child td { border-bottom: none; }
.plan-table tbody tr { transition: background var(--transition-base); }
.plan-table tbody tr:hover { background: var(--color-surface-hover); }
.plan-table .plan-name { font-weight: 700; }
.plan-table .plan-price { font-weight: 700; color: var(--color-brand); }
.plan-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* ───── Features Grid ───── */
.features-grid {
  display: grid;
  gap: 1rem;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: all var(--transition-spring);
}
.feature-card:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--color-brand-light);
  margin-bottom: 0.9rem;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--color-brand); }
.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ───── Add-on ───── */
.addon-card {
  background: var(--color-surface);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.addon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}
.addon-card h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}
.addon-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-brand);
}
.addon-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}
.addon-card > p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 64ch;
}

/* ───── FAQ ───── */
.faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 800px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}
.faq-item.is-open { border-color: var(--color-brand); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition-base);
}
.faq-question:hover { color: var(--color-brand); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-spring);
  color: var(--color-text-secondary);
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-spring), padding var(--transition-spring);
}
.faq-item.is-open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 1.3rem 1.2rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ───── Final CTA ───── */
.cta-block {
  background: linear-gradient(145deg, #003e67 0%, #005a8d 40%, #0a729f 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-block h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 1rem;
  position: relative;
}
.cta-block > p {
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.6;
  position: relative;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  position: relative;
}

/* ───── Footer ───── */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  margin-top: 0;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ───── Scroll Animations ───── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───── Responsive ───── */
@media (min-width: 640px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .twin-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .burger { display: none; }
  .site-nav { display: block; }
  .hero { padding: 6rem 0 5rem; }
  .hero-grid { grid-template-columns: 1.4fr 0.75fr; gap: 3rem; }
  .cred-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 5.5rem 0; }
}

@media (max-width: 999px) {
  .header-ctas .btn--outline { display: none; }
}

/* ───── WordPress admin bar fix ───── */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ═══════════════════════════════════════════════
   ALT HOMEPAGE — Rich Visual Variant (v2-)
   ═══════════════════════════════════════════════ */

/* --- Dark header override when on alt page --- */
.page-template-template-home-alt .site-header {
  background: rgba(8,22,38,.88);
  border-bottom-color: rgba(255,255,255,.08);
}
.page-template-template-home-alt .site-header.is-scrolled {
  background: rgba(8,22,38,.96);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.page-template-template-home-alt .site-branding,
.page-template-template-home-alt .site-nav a,
.page-template-template-home-alt .burger svg {
  color: #fff;
}
.page-template-template-home-alt .site-nav a:hover {
  background: rgba(255,255,255,.1);
  color: var(--color-accent);
}

/* --- Dark Hero --- */
.v2-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(160deg, #06111f 0%, #0a2240 30%, #0d3a6b 65%, #10507f 100%);
  color: #fff;
  overflow: hidden;
}
.v2-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(245,146,10,.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.v2-hero::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,134,209,.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
/* Floating decorative orbs */
.v2-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .6;
}
.v2-orb--1 {
  width: 12px; height: 12px;
  background: var(--color-accent);
  top: 18%; right: 12%;
  animation: v2Float 6s ease-in-out infinite;
}
.v2-orb--2 {
  width: 8px; height: 8px;
  background: #38bdf8;
  top: 55%; right: 22%;
  animation: v2Float 8s ease-in-out 1s infinite;
}
.v2-orb--3 {
  width: 6px; height: 6px;
  background: #a78bfa;
  top: 30%; left: 8%;
  animation: v2Float 7s ease-in-out 2s infinite;
}
.v2-orb--4 {
  width: 10px; height: 10px;
  background: #34d399;
  bottom: 20%; right: 8%;
  animation: v2Float 5s ease-in-out .5s infinite;
}
@keyframes v2Float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.v2-hero .hero-grid { position: relative; z-index: 1; }
.v2-hero .hero-content h1 { color: #fff; }
.v2-hero .hero-content h1 .highlight {
  background: linear-gradient(135deg, #38bdf8, #f5920a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-hero .hero-content > p {
  color: rgba(255,255,255,.75);
}
.v2-hero .hero-proof-item { color: rgba(255,255,255,.7); }
.v2-hero .hero-proof-item svg { color: #34d399; }

.v2-hero .hero-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.v2-hero .hero-card::before {
  background: linear-gradient(90deg, var(--color-accent), #38bdf8, #a78bfa);
}
.v2-hero .hero-card h3 { color: #fff; }
.v2-hero .hero-card-list li { color: rgba(255,255,255,.72); border-top-color: rgba(255,255,255,.08); }
.v2-hero .hero-card-list svg { color: #38bdf8; }

/* --- Gradient Credibility Strip --- */
.v2-cred {
  background: linear-gradient(90deg, #003e67, #005a8d, #0a729f);
  border: none;
  padding: 1rem 0;
}
.v2-cred .cred-pill {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(6px);
}
.v2-cred .cred-pill svg { color: var(--color-accent); }

/* --- Mesh / pattern section backgrounds --- */
.v2-section-warm {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,146,10,.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(0,98,163,.05) 0%, transparent 50%),
    linear-gradient(180deg, #faf8f5 0%, #f3f0eb 100%);
}
.v2-section-dark {
  background: linear-gradient(170deg, #081626 0%, #0d2d4f 50%, #0f3b65 100%);
  color: #fff;
}
.v2-section-dark .section-label { color: var(--color-accent); }
.v2-section-dark .section-title { color: #fff; }
.v2-section-dark .section-subtitle { color: rgba(255,255,255,.7); }
.v2-section-dark .plan-note { color: rgba(255,255,255,.6); }

.v2-section-cool {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(8,134,209,.06) 0%, transparent 50%),
    linear-gradient(180deg, #eef4fb 0%, #e4edf7 100%);
}
.v2-section-mint {
  background:
    radial-gradient(ellipse at 30% 80%, rgba(52,211,153,.06) 0%, transparent 50%),
    linear-gradient(180deg, #f0fdf7 0%, #e8f8f0 100%);
}
.v2-section-slate {
  background: linear-gradient(180deg, #1a2940 0%, #1e3450 50%, #1a2940 100%);
  color: #fff;
}
.v2-section-slate .section-label { color: #38bdf8; }
.v2-section-slate .section-title { color: #fff; }
.v2-section-slate .section-subtitle { color: rgba(255,255,255,.7); }

/* --- Decorative section dividers --- */
.v2-divider {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px;
}

/* --- Problem cards with gradient left border --- */
.v2-problem-card {
  border-left: 4px solid;
  border-image: linear-gradient(180deg, #dc2626, #f59e0b) 1;
  background: #fff;
}
.v2-problem-card:hover {
  box-shadow: 0 8px 30px rgba(220,38,38,.08);
}

/* --- Outcome box gradient --- */
.v2-outcome {
  background: linear-gradient(135deg, #ecfdf5, #e8f2fb);
  border-color: rgba(22,163,74,.2);
}
.v2-outcome p { color: #065f46; }

/* --- Glass step cards --- */
.v2-section-dark .step-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.v2-section-dark .step-card:hover {
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.v2-section-dark .step-card h3 { color: #fff; }
.v2-section-dark .step-card > p { color: rgba(255,255,255,.7); }
.v2-section-dark .step-num {
  background: linear-gradient(135deg, var(--color-accent), #f59e0b);
}
.v2-section-dark .step-tag {
  background: rgba(56,189,248,.15);
  color: #38bdf8;
}

/* --- Gradient-border migration cards --- */
.v2-info-card {
  position: relative;
  background: #fff;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.v2-info-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-md);
  padding: 2px;
  background: linear-gradient(135deg, var(--color-brand), #38bdf8, var(--color-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.v2-info-card .info-card-icon {
  background: linear-gradient(135deg, var(--color-brand-light), #e0f2fe);
}

/* --- Dark plans section --- */
.v2-section-slate .plan-table-wrap {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.v2-section-slate .plan-table thead th {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
  border-bottom-color: rgba(255,255,255,.08);
}
.v2-section-slate .plan-table td {
  color: rgba(255,255,255,.85);
  border-bottom-color: rgba(255,255,255,.06);
}
.v2-section-slate .plan-table .plan-price { color: var(--color-accent); }
.v2-section-slate .plan-table tbody tr:hover {
  background: rgba(255,255,255,.06);
}
/* Popular row highlight */
.v2-plan-popular {
  background: rgba(245,146,10,.08);
}
.v2-plan-popular td:first-child {
  position: relative;
}
.v2-popular-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --- Colored feature icon tints --- */
.v2-fi-blue    { background: #e0f2fe; }
.v2-fi-blue svg { color: #0284c7; }
.v2-fi-green   { background: #dcfce7; }
.v2-fi-green svg { color: #16a34a; }
.v2-fi-amber   { background: #fef3c7; }
.v2-fi-amber svg { color: #d97706; }
.v2-fi-purple  { background: #ede9fe; }
.v2-fi-purple svg { color: #7c3aed; }
.v2-fi-rose    { background: #ffe4e6; }
.v2-fi-rose svg { color: #e11d48; }
.v2-fi-teal    { background: #ccfbf1; }
.v2-fi-teal svg { color: #0d9488; }

/* Feature cards on cool bg */
.v2-section-cool .feature-card {
  box-shadow: 0 2px 12px rgba(0,98,163,.05);
}

/* --- Stats strip --- */
.v2-stats {
  background: linear-gradient(90deg, #003e67, #005a8d);
  padding: 2.5rem 0;
}
.v2-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.v2-stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.v2-stat-item h3 span { color: var(--color-accent); }
.v2-stat-item p {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Addon gradient border --- */
.v2-addon {
  border: none;
  position: relative;
  background: #fff;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.v2-addon::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--color-accent), #f59e0b, #38bdf8, var(--color-brand));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* --- FAQ on mint bg --- */
.v2-section-mint .faq-item {
  box-shadow: 0 2px 12px rgba(16,163,74,.04);
}

/* --- Rich CTA --- */
.v2-cta {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(245,146,10,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(56,189,248,.15) 0%, transparent 50%),
    linear-gradient(150deg, #06111f 0%, #0d3a6b 40%, #10507f 70%, #0a729f 100%);
  border-radius: var(--radius-lg);
  padding: 4.5rem 2.5rem;
}
.v2-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.v2-cta .btn--accent {
  box-shadow: 0 4px 24px rgba(245,146,10,.35);
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
}

/* --- Dark footer override --- */
.page-template-template-home-alt .site-footer {
  background: #06111f;
  border-top-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
}
.page-template-template-home-alt .site-footer a {
  color: rgba(255,255,255,.7);
}
.page-template-template-home-alt .site-footer a:hover {
  color: #fff;
}

/* --- Alt responsive --- */
@media (min-width: 640px) {
  .v2-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1000px) {
  .v2-hero { padding: 7rem 0 6rem; }
}
