/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --navy:      #1a365d;
  --navy-dark: #122448;
  --navy-mid:  #254e8a;
  --orange:    #f97316;
  --orange-dk: #ea6c0d;
  --white:     #ffffff;
  --light:     #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --text:      #1e293b;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --transition: 0.2s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.bg-light { background: var(--light); }
.hidden   { display: none !important; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: #fb923c; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin-bottom: 52px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-nav {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 10px 20px;
  font-size: .875rem;
}
.btn-nav:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.logo-sub {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 80px 0 72px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(249,115,22,.18);
  color: #fb923c;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(249,115,22,.3);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.desktop-br { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-sub strong { color: var(--white); }

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.badge svg { width: 16px; height: 16px; color: #4ade80; flex-shrink: 0; }

/* Browser Mock */
.hero-visual { perspective: 1000px; }

.mock-browser {
  background: #1e293b;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #334155;
  padding: 10px 14px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green  { background: #22c55e; }

.browser-url {
  flex: 1;
  background: #475569;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .72rem;
  color: #94a3b8;
  margin-left: 8px;
}

.browser-body { background: #f8fafc; padding: 16px; }
.mock-hero-bar {
  background: linear-gradient(90deg, #1a365d, #254e8a);
  height: 64px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.mock-nav {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.mock-nav::before, .mock-nav::after {
  content: '';
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  flex: 1;
}
.mock-content {
  background: white;
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 10px;
}
.mock-h1, .mock-h2, .mock-btn {
  border-radius: 4px;
  margin-bottom: 8px;
}
.mock-h1 { background: #cbd5e1; height: 16px; width: 80%; }
.mock-h2 { background: #e2e8f0; height: 10px; width: 60%; }
.mock-btn { background: #f97316; height: 28px; width: 40%; border-radius: 6px; margin-top: 12px; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.mock-card { background: white; border: 1px solid #e2e8f0; border-radius: 6px; height: 52px; }

/* ── Problem ─────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: #fff1f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-icon svg { width: 22px; height: 22px; color: #ef4444; }

.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pain-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

/* ── Solution ───────────────────────────────────────────── */
.solution { background: var(--navy); }
.solution .section-label { color: var(--orange); }
.solution .section-title { color: var(--white); }
.solution .section-sub   { color: rgba(255,255,255,.7); }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solution-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}
.solution-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.solution-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .9;
}
.solution-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.solution-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── Features ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--orange); }

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-item p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--navy);
  box-shadow: 0 8px 40px rgba(26,54,93,.15);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-header { margin-bottom: 28px; }
.price-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.price-amount span { font-size: 1.2rem; font-weight: 600; color: var(--gray-600); }
.price-note { font-size: .82rem; color: var(--gray-400); margin-top: 6px; }

.price-list { margin-bottom: 32px; }
.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.price-list li:last-child { border-bottom: none; }
.price-list svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: .88rem;
  color: var(--gray-400);
}

/* ── Process ────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,54,93,.25);
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-content p { font-size: .87rem; color: var(--gray-600); line-height: 1.65; max-width: 200px; margin: 0 auto; }

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  margin-top: 28px;
  border-radius: 2px;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gray-200);
  line-height: 0;
  position: absolute;
  top: 8px;
  left: -8px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testimonial-author span  { font-size: .78rem; color: var(--gray-400); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-container { max-width: 760px; }

.faq-list { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--gray-400);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { color: var(--orange); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }

/* ── Contact ────────────────────────────────────────────── */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  line-height: 1.5;
}
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-item a { color: #fb923c; }
.contact-item a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.required { color: var(--orange); }

.form-group input,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: .92rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,54,93,.1);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.field-error {
  font-size: .78rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 18px;
}

.form-note {
  font-size: .78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

.form-success-standalone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  min-height: 320px;
}
.form-success-standalone svg {
  width: 56px;
  height: 56px;
  color: #22c55e;
  margin-bottom: 20px;
}
.form-success-standalone h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success-standalone p {
  font-size: .95rem;
  color: var(--gray-600);
  max-width: 340px;
  line-height: 1.65;
}

.form-error {
  font-size: .85rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 12px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #15803d;
  font-size: .9rem;
  margin-top: 16px;
}
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }
.form-success strong { display: block; font-size: .95rem; }

.btn-loading { display: none; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo-text { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 14px; line-height: 1.65; }

.footer-links h4,
.footer-contact h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact a {
  display: block;
  font-size: .87rem;
  color: #fb923c;
  margin-bottom: 12px;
}
.footer-contact a:hover { text-decoration: underline; }

.footer-area {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner  { gap: 40px; }
  .pain-grid,
  .solution-grid,
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; z-index: 101; }
  .nav-links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 9999;
    border-top: 1px solid var(--gray-200);
    pointer-events: none;
    visibility: hidden;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links a { font-size: 1.1rem; }

  /* Hamburger → X animation */
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .desktop-br { display: none; }

  /* Grids */
  .pain-grid,
  .solution-grid,
  .features-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; gap: 0; }
  .step { max-width: 360px; width: 100%; margin-bottom: 0; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--navy), var(--orange)); flex: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .trust-badges { gap: 12px; }
  .hero-headline { font-size: 1.8rem; }
  .pricing-card { padding: 28px 20px; }
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp .55s ease forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── Accessibility ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
