/* ============================================================
   LODESTAR STUDIO — styles.css
   Order: custom props → reset → base → layout → components
          → pages → responsive
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --navy:       #060D1A;
  --navy-mid:   #0D1627;
  --navy-card:  #111827;
  --blue:       #E8A922;
  --blue-light: #F5C842;
  --cyan:       #E8A922;
  --white:      #F8FAFC;
  --muted:      #94A3B8;
  --border:     rgba(255,255,255,0.07);
  --card-bg:    rgba(255,255,255,0.03);
  --glow:       rgba(232,169,34,0.35);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: 0.25s ease;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Base ─────────────────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { line-height: 1.7; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ── Screen Reader Only ───────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 9999;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  position: relative;
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
}

/* ── Typography Utilities ─────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: #060D1A;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  min-height: 44px;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition);
}

.site-nav.scrolled .nav-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  transition: padding var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo span {
  color: #E8A922;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: var(--card-bg);
}

.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links .nav-preview-link {
  color: var(--cyan);
  border: 1px solid rgba(232,169,34,0.3);
  border-radius: var(--radius-sm);
}

.nav-links .nav-preview-link:hover {
  background: rgba(232,169,34,0.08);
  color: var(--cyan);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-hamburger:hover {
  background: var(--card-bg);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu a:hover {
  background: var(--card-bg);
  color: var(--cyan);
}

.mobile-menu .mobile-preview-link {
  color: var(--cyan);
  border: 1px solid rgba(232,169,34,0.3);
}

.mobile-menu-cta {
  margin-top: 20px;
  width: 100%;
  max-width: 320px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.mobile-menu-close:hover {
  color: var(--white);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232,169,34,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,169,34,0.12);
  border: 1px solid rgba(232,169,34,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.trust-avatars .trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.4;
}

/* Browser Mockup */
.hero-mockup {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-mockup {
  width: 100%;
  max-width: 500px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px var(--glow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #28CA42; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--muted);
}

.browser-content {
  padding: 0;
  aspect-ratio: 16/10;
  background: linear-gradient(160deg, #0d1627 0%, #060d1a 100%);
  position: relative;
  overflow: hidden;
}

.mockup-nav-bar {
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.mockup-nav-logo {
  width: 60px;
  height: 10px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 3px;
  opacity: 0.8;
}

.mockup-nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.mockup-nav-link {
  width: 30px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.mockup-hero-area {
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-hero-badge {
  width: 100px;
  height: 14px;
  background: rgba(37,99,235,0.3);
  border-radius: 100px;
}

.mockup-h1-line {
  height: 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
}

.mockup-h1-line:nth-child(2) { width: 90%; }
.mockup-h1-line:nth-child(3) { width: 70%; }

.mockup-sub-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.mockup-sub-line {
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.mockup-sub-line:nth-child(1) { width: 95%; }
.mockup-sub-line:nth-child(2) { width: 80%; }
.mockup-sub-line:nth-child(3) { width: 60%; }

.mockup-btns {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.mockup-btn-primary {
  width: 90px;
  height: 24px;
  background: var(--blue);
  border-radius: 5px;
  opacity: 0.85;
}

.mockup-btn-ghost {
  width: 80px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
}

.mockup-cards-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  margin-top: 4px;
}

.mockup-card {
  flex: 1;
  height: 60px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.trust-stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.trust-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--white), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.trust-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  max-width: 140px;
  margin: 0 auto;
}

/* ── Problem Section ──────────────────────────────────────── */
.problem-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.problem-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.problem-text .section-sub {
  margin-bottom: 28px;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.problem-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.problem-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── How It Works ─────────────────────────────────────────── */
.how-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.how-section .section-sub {
  margin-bottom: 60px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.how-step:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 0 32px rgba(37,99,235,0.1);
}

.how-step + .how-step {
  margin-top: 16px;
}

.how-step-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(37,99,235,0.2);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.how-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.how-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.how-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-light);
  align-self: flex-start;
}

/* ── Preview Tool ─────────────────────────────────────────── */
.preview-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.preview-section .container > .section-label,
.preview-section .container > h2,
.preview-section .container > .section-sub {
  text-align: center;
}

.preview-section .section-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.preview-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.preview-card-header {
  background: rgba(37,99,235,0.08);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.preview-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.preview-steps-indicator {
  display: flex;
  gap: 6px;
}

.preview-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition);
}

.preview-step-dot.active {
  background: var(--cyan);
}

.preview-step-dot.done {
  background: var(--blue);
}

.preview-card-body {
  padding: 32px;
}

.preview-step {
  display: none;
}

.preview-step.active {
  display: block;
}

.preview-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.preview-step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Form elements in preview tool */
.pt-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.pt-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.pt-input::placeholder {
  color: rgba(148,163,184,0.6);
}

.pt-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.pt-select option {
  background: var(--navy-card);
  color: var(--white);
}

.pt-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.pt-field {
  margin-bottom: 20px;
}

.pt-error {
  display: block;
  font-size: 0.8rem;
  color: #F87171;
  margin-top: 6px;
  min-height: 16px;
}

/* Code digit inputs */
.pt-code-inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.pt-code-digit {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 44px;
  min-height: 56px;
}

.pt-code-digit:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}

.pt-resend {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.pt-resend button {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.pt-resend button:hover {
  opacity: 0.8;
}

/* Goal options */
.pt-goal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.pt-goal-option {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-align: center;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pt-goal-option:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.pt-goal-option.selected {
  border-color: var(--blue);
  background: rgba(37,99,235,0.12);
  color: var(--white);
}

.pt-goal-option .goal-icon {
  font-size: 1.3rem;
}

.pt-goal-option .goal-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* Style tiles */
.pt-style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.pt-style-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.pt-style-tile:hover {
  border-color: rgba(255,255,255,0.2);
}

.pt-style-tile.selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.pt-style-preview {
  height: 50px;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.pt-style-bar {
  height: 6px;
  border-radius: 3px;
}

.pt-style-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

/* Professional style */
.pt-style-tile[data-value="Professional"] .pt-style-preview {
  background: #0A0A0A;
}

.pt-style-tile[data-value="Professional"] .pt-style-bar:nth-child(1) {
  background: #1D4ED8;
  width: 60%;
}

.pt-style-tile[data-value="Professional"] .pt-style-bar:nth-child(2) {
  background: rgba(255,255,255,0.15);
  width: 80%;
}

.pt-style-tile[data-value="Professional"] .pt-style-bar:nth-child(3) {
  background: rgba(255,255,255,0.08);
  width: 45%;
}

/* Warm style */
.pt-style-tile[data-value="Warm & Friendly"] .pt-style-preview {
  background: #FFF8F3;
}

.pt-style-tile[data-value="Warm & Friendly"] .pt-style-bar:nth-child(1) {
  background: #EA580C;
  width: 55%;
}

.pt-style-tile[data-value="Warm & Friendly"] .pt-style-bar:nth-child(2) {
  background: rgba(0,0,0,0.15);
  width: 75%;
}

.pt-style-tile[data-value="Warm & Friendly"] .pt-style-bar:nth-child(3) {
  background: rgba(0,0,0,0.08);
  width: 40%;
}

/* Bold style */
.pt-style-tile[data-value="Bold & Modern"] .pt-style-preview {
  background: #09090B;
}

.pt-style-tile[data-value="Bold & Modern"] .pt-style-bar:nth-child(1) {
  background: linear-gradient(90deg, #7C3AED, #EC4899);
  width: 70%;
}

.pt-style-tile[data-value="Bold & Modern"] .pt-style-bar:nth-child(2) {
  background: rgba(255,255,255,0.12);
  width: 85%;
}

.pt-style-tile[data-value="Bold & Modern"] .pt-style-bar:nth-child(3) {
  background: rgba(255,255,255,0.06);
  width: 50%;
}

/* Clean style */
.pt-style-tile[data-value="Clean & Minimal"] .pt-style-preview {
  background: #FFFFFF;
}

.pt-style-tile[data-value="Clean & Minimal"] .pt-style-bar:nth-child(1) {
  background: #18181B;
  width: 50%;
}

.pt-style-tile[data-value="Clean & Minimal"] .pt-style-bar:nth-child(2) {
  background: rgba(0,0,0,0.12);
  width: 70%;
}

.pt-style-tile[data-value="Clean & Minimal"] .pt-style-bar:nth-child(3) {
  background: rgba(0,0,0,0.06);
  width: 38%;
}

/* Honeypot */
.pt-honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Loading step */
.pt-loading-content {
  text-align: center;
  padding: 20px 0;
}

.pt-loading-content h3 {
  margin-bottom: 8px;
}

.pt-loading-content p {
  margin-bottom: 32px;
}

.pt-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

.pt-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: progressFill 32s ease-out forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  10% { width: 15%; }
  30% { width: 40%; }
  60% { width: 70%; }
  85% { width: 88%; }
  100% { width: 95%; }
}

.pt-loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pt-loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: dotBounce 1.2s ease-in-out infinite;
}

.pt-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.pt-loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.pt-loading-msg {
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 24px;
  transition: opacity 0.5s ease;
}

/* Preview result */
.pt-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.pt-preview-biz-name {
  font-size: 0.9rem;
  color: var(--muted);
}

.pt-preview-biz-name strong {
  color: var(--white);
}

.pt-preview-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pt-iframe-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

#pt-iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
}

.cta-section h2 {
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-section .cta-body {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
}

.cta-disclaimer a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── CTA Strip (reusable) ─────────────────────────────────── */
.cta-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-strip .section-title {
  margin-bottom: 0;
}

.cta-strip p {
  color: var(--muted);
  max-width: 400px;
}

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-header .page-header-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(37,99,235,0.2);
}

.pricing-card.featured:hover {
  border-color: var(--blue-light);
  box-shadow: 0 0 60px rgba(37,99,235,0.3);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 6px;
}

.pricing-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  min-height: 60px;
}

.pricing-price {
  margin-bottom: 6px;
}

.pricing-price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing-price-period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 4px;
}

.pricing-retainer {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.pricing-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-feature::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Add-ons ──────────────────────────────────────────────── */
.addons-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.addons-section .section-sub {
  margin-bottom: 56px;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.addon-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.addon-icon {
  font-size: 1.4rem;
}

.addon-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.addon-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.addon-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cyan);
}

/* ── Why Section ──────────────────────────────────────────── */
.why-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.why-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-feature-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(37,99,235,0.1);
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.comparison-table th:last-child,
.comparison-table th:nth-child(2) {
  text-align: center;
}

.comparison-table td {
  padding: 13px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.comparison-table td:last-child,
.comparison-table td:nth-child(2) {
  text-align: center;
  font-weight: 600;
}

.comparison-table td:nth-child(2) {
  color: var(--cyan);
}

.comparison-table td:nth-child(3) {
  color: #F87171;
}

.comparison-table td.feature-name {
  color: var(--white);
  font-weight: 500;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-biz {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(37,99,235,0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--card-bg);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  min-height: 44px;
}

.faq-question:hover {
  background: rgba(255,255,255,0.04);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 1rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(37,99,235,0.2);
  color: var(--blue-light);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  background: var(--card-bg);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-info h1 {
  margin-bottom: 16px;
}

.contact-info .contact-sub {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 3px;
}

.contact-detail-sub {
  font-size: 0.83rem;
  color: var(--muted);
}

/* Contact form card */
.contact-form-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.form-input::placeholder {
  color: rgba(148,163,184,0.6);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.05);
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-card);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding: 13px 16px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 24px;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  color: #4ADE80;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  margin-top: 20px;
}

/* ── Fade-up Animation ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.footer-logo span {
  color: #60A5FA;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* ── Responsive — Tablet (768px) ─────────────────────────── */
@media (min-width: 768px) {
  .problem-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-trust {
    flex-wrap: nowrap;
  }
}

/* ── Responsive — Desktop (1280px) ───────────────────────── */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    max-width: 560px;
  }

  .how-steps {
    flex-direction: row;
    gap: 20px;
  }

  .how-step + .how-step {
    margin-top: 0;
  }

  .how-step {
    flex: 1;
  }

  .problem-inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .problem-text {
    flex: 0 0 380px;
    max-width: 380px;
    position: sticky;
    top: 120px;
  }

  .problem-cards {
    flex: 1;
    grid-template-columns: 1fr 1fr;
  }

  .why-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .why-features {
    flex: 1;
  }

  .comparison-wrap {
    flex: 1;
  }

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

  .contact-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .contact-info {
    flex: 0 0 380px;
    max-width: 380px;
    position: sticky;
    top: 120px;
  }

  .contact-form-card {
    flex: 1;
  }
}

@media (min-width: 1280px) {
  .pricing-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .pricing-card {
    flex: 1;
  }

  .addons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
