/* Reset & Variables */
:root {
  --bg-main: #fcfbfa;
  --bg-alt: #f7f5f0;
  --bg-card: #ffffff;
  --border-light: #eae6df;
  --border-focus: #f59e0b;
  
  --text-primary: #1c1917;
  --text-secondary: #44403c;
  --text-muted: #78716c;
  
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-dark: #b45309;
  --primary-glow: rgba(245, 158, 11, 0.25);
  
  --brand-navy: #0f172a;
  --accent-green: #10b981;
  --accent-green-bg: #ecfdf5;
  --accent-red: #ef4444;
  --accent-red-bg: #fef2f2;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 12px 28px rgba(245, 158, 11, 0.35);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* Typography Helpers */
.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background-color: #fef3c7;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

.section-header {
  margin-bottom: 48px;
}

/* Announcement Bar */
.announcement-bar {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.88rem;
  padding: 10px 0;
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Header */
.site-header {
  background: rgba(252, 251, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 2px;
}

.lang-btn {
  padding: 4px 8px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.8rem;
}

.lang-btn:hover {
  color: var(--brand-navy);
}

.lang-btn.active {
  background: #ffffff;
  color: var(--brand-navy);
  box-shadow: var(--shadow-sm);
}

.lang-sep {
  color: #cbd5e1;
  font-size: 0.75rem;
  user-select: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
}

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

.brand strong {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--brand-navy);
}

.btn-outline:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 1.12rem;
}

.btn-xl {
  padding: 22px 38px;
  font-size: 1.25rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 20px;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-navy);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.highlight-text {
  display: block;
  color: var(--primary-dark);
  font-size: 0.88em;
  margin-top: 6px;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-actions .btn {
  max-width: 480px;
}

.trust-microcopy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.check-svg {
  width: 17px;
  height: 17px;
  color: var(--accent-green);
}

.social-proof-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.avatar-group {
  display: flex;
}

.mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ffffff;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}

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

.social-proof-text {
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

/* Mockup Visual */
.hero-visual {
  position: relative;
}

.mockup-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.mockup-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-image {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mockup-ribbon {
  position: absolute;
  top: 26px;
  right: 26px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.mockup-floating-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border: 2px solid #ffffff;
}

.badge-accent {
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
}

.badge-sub {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* Pain Points Section */
.pain-section {
  padding: 90px 0;
  background: #ffffff;
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.pain-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.pain-icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.empathy-banner {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fef3c7 0%, #fae8b4 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  text-align: center;
  position: relative;
}

.empathy-quote-icon {
  font-size: 2.8rem;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.4;
}

.empathy-text {
  font-size: 1.32rem;
  color: #78350f;
  line-height: 1.45;
}

/* Solution Section */
.solution-section {
  padding: 90px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.solution-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.column-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 22px;
}

.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.module-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.module-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: #fef3c7;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.module-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.highlight-module {
  background: #fffbeb;
  border-color: #fde68a;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  border: 2px solid #fef3c7;
  position: sticky;
  top: 90px;
}

.package-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: #fef3c7;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.package-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 24px;
}

.package-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.package-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-green-bg);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-checklist strong {
  display: block;
  font-size: 0.98rem;
  color: var(--brand-navy);
}

.package-checklist span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

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

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.highlighted-testimonial {
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--brand-navy);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

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

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Fit Section */
.fit-section {
  padding: 90px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.fit-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.fit-card {
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.fit-yes {
  border: 2px solid #a7f3d0;
}

.fit-no {
  border: 2px solid #fecaca;
}

.fit-card-header {
  margin-bottom: 24px;
}

.fit-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.yes-badge {
  background: var(--accent-green-bg);
  color: #065f46;
}

.no-badge {
  background: var(--accent-red-bg);
  color: #991b1b;
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.fit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.yes-icon {
  background: var(--accent-green-bg);
  color: var(--accent-green);
}

.no-icon {
  background: var(--accent-red-bg);
  color: var(--accent-red);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: #ffffff;
}

.pricing-card-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  padding: 45px 40px;
  text-align: center;
  position: relative;
}

.pricing-top-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.price-block {
  margin-bottom: 30px;
}

.price-strikethrough {
  font-size: 1.3rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 6px 0;
}

.price-current .currency {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.price-current .amount {
  font-size: 4.4rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

.price-current .period {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-badge-sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 34px;
}

.p-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.p-check {
  width: 22px;
  height: 22px;
  background: var(--accent-green-bg);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-button-area {
  margin-bottom: 28px;
}

.pricing-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.guarantee-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.guarantee-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.guarantee-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.payment-methods-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.pay-tag {
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--brand-navy);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

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

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-dark);
  transition: transform 0.2s;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Final Banner */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.final-box {
  max-width: 780px;
  margin: 0 auto;
}

.final-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.final-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 36px;
}

.final-cta-wrapper {
  margin-bottom: 22px;
}

.final-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Footer */
.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 34px 0;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.sticky-mobile-bar.is-visible {
  transform: translateY(0);
}

.mobile-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-bar-info {
  display: flex;
  flex-direction: column;
}

.mobile-price {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.mobile-save {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

.spinner {
  width: 46px;
  height: 46px;
  border: 4px solid #f3f4f6;
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-card h3 {
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.modal-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-actions .btn {
    margin: 0 auto;
  }

  .trust-microcopy {
    justify-content: center;
  }

  .social-proof-mini {
    justify-content: center;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .mockup-card {
    transform: none;
  }

  .mockup-card:hover {
    transform: none;
  }

  .solution-layout {
    grid-template-columns: 1fr;
  }

  .package-card {
    position: static;
  }

  .pain-cards-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .highlighted-testimonial {
    transform: none;
  }

  .fit-comparison-grid {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-bar {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 35px 0 55px;
  }

  .header-cta {
    display: none;
  }

  .pricing-card {
    padding: 35px 20px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
