/* ===== SELF-HOSTED FONTS ===== */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/manrope-600.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/manrope-700.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/manrope-800.ttf') format('truetype');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/sora-400.ttf') format('truetype');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/sora-500.ttf') format('truetype');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/sora-600.ttf') format('truetype');
}

:root {
  /* Base Colors - Light Mode */
  --color-link-text: #047857; /* WCAG AA 4.5:1 */
  --color-primary: #10B981;
  --color-primary-hover: #059669;
  --color-primary-soft: rgba(16, 185, 129, 0.08);
  --color-bg: #FCFCFB;
  --color-bg-alt: #F9F9F8;
  --color-text: #1A1A19;
  --color-text-secondary: #5E5E5C;
  --color-border: #E8E7E5;
  --color-accent: #10B981;
  --color-accent-hover: #059669;
  --color-micro-accent: #F5C6B1;
  --color-success: #4CAF50;
  --shadow-ambient: 0 4px 12px rgba(0, 0, 0, 0.03);
  --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 16px;
  --container-width: 1200px;
  --spacing-xs: 0.75rem;
  --spacing-sm: 1.5rem;
  --spacing-md: 3rem;
  --spacing-lg: 4.5rem;
  --spacing-xl: 5rem;
}

/* Skip link for keyboard accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus-visible global rule */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition);
}

h1, h2, h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 32ch;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-sm);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: 0;
}

h4 {
  line-height: 1.25;
}

p {
  max-width: 65ch;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-secondary);
  font-weight: 400;
}

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

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

.container {
  width: min(95%, var(--container-width));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 50rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-ambient);
  text-align: center;
}

.btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.15rem;
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  background: rgba(16, 185, 129, 0.05);
  transform: translateY(-2px);
}

section {
  padding-block: var(--spacing-lg);
}

/* .section-header and .section-subtitle — see consolidated definitions below (line ~2462) */

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  backdrop-filter: blur(12px);
  padding-block: 1rem;
  transition: var(--transition);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

header.scrolled {
  padding-block: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-left: auto;
}

.nav-links a {
  font-weight: 500;
  padding: 0.75rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
}

.lang-btn:hover {
  border-color: var(--color-accent);
  background: white;
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-code {
  font-weight: 600;
}

.lang-arrow {
  transition: transform 0.2s ease;
}

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
  overflow: hidden;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.15s ease;
}

.lang-option:hover {
  background: var(--color-bg-alt);
}

.lang-option.active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-accent);
}

.lang-option .lang-flag {
  font-size: 1.2rem;
}








/* Hero Section */
.hero {
  padding-block: var(--spacing-lg) calc(var(--spacing-lg) * 1.5);
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.02) 0%, transparent 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  align-items: center;
  justify-items: center;
}

.hero-text {
  grid-column: 1 / -1;
  text-align: center;
  margin-inline: auto;
}

.hero-claim {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 40ch;
  margin-top: var(--spacing-xs);
  margin-inline: auto;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-microcopy {
  margin-top: var(--spacing-sm);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Problem & Solution Section */
.problem-solution {
  background: var(--color-bg-alt);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

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

.problem-card:hover,
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ambient);
}

.problem-icon,
.solution-icon {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-accent);
}

.problem-icon svg,
.solution-icon svg {
  width: 32px;
  height: 32px;
}

.solution-card {
  border: 2px solid var(--color-accent);
}

.solution-icon {
  background: var(--color-accent);
  color: white;
}

.problem-content h3,
.solution-content h3 {
  margin-bottom: var(--spacing-xs);
  color: var(--color-text);
}

.problem-content p,
.solution-content p {
  max-width: none;
}

/* What You Need Section */
.what-you-need {
  padding: var(--spacing-lg) 0;
  background: var(--color-bg-alt);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-md);
}

.need-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
}

.need-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ambient);
  border-color: var(--color-accent);
}

.need-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  text-align: center;
}

.need-icon svg {
  width: 40px;
  height: 40px;
}

.need-card h3 {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 1.25rem;
}

.need-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.need-list li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

.need-list li:last-child {
  border-bottom: none;
}

.need-list li strong {
  color: var(--color-text);
}

.needs-conclusion {
  margin-top: var(--spacing-md);
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
}

.needs-conclusion p {
  max-width: none;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

.needs-conclusion .btn {
  margin-top: 0;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.benefit-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ambient);
  border-color: var(--color-accent);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-accent);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-title {
  margin-bottom: var(--spacing-xs);
  color: var(--color-text);
  font-size: 1.25rem;
}

.benefit-desc {
  max-width: none;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--color-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

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

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ambient);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.testimonial-avatar svg {
  width: 32px;
  height: 32px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.05rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.testimonial-text {
  max-width: none;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.social-proof-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  min-width: 140px;
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

/* Pricing Section */
/* Founder Pricing Banner */
.founder-pricing-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.founder-icon {
  font-size: 1.5rem;
}

.founder-text {
  font-size: 1rem;
  color: #92400e;
}

.founder-text strong {
  color: #78350f;
}

.founder-pricing-banner { flex-direction: column; text-align: center; gap: 0.5rem; padding: 1rem; }
@media (min-width: 601px) {
  .founder-pricing-banner { flex-direction: row; text-align: left; gap: 1rem; padding: 1rem 2rem; }
}

/* Value Stack */
.value-stack {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.value-stack h4 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #166534;
  font-size: 1.25rem;
}

.value-stack-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #86efac;
}

.value-stack-name {
  color: var(--color-text);
  font-size: 0.95rem;
}

.value-stack-worth {
  color: #166534;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.value-stack-divider {
  height: 2px;
  background: #22c55e;
  margin: 1rem 0;
}

.value-stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.value-stack-total-label {
  font-weight: 600;
  color: var(--color-text);
}

.value-stack-total-worth {
  font-size: 1.5rem;
  font-weight: 700;
  color: #166534;
}

.value-stack-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #22c55e;
  margin: 1rem -2rem -2rem -2rem;
  padding: 1.25rem 2rem;
  border-radius: 0 0 calc(var(--radius) - 2px) calc(var(--radius) - 2px);
}

.value-stack-price-label {
  font-weight: 600;
  color: white;
}

.value-stack-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.value-stack { padding: 1.5rem; }
.value-stack-item { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
.value-stack-worth { margin-left: 0; }
.value-stack-price { margin: 1rem -1.5rem -1.5rem -1.5rem; padding: 1rem 1.5rem; }
@media (min-width: 601px) {
  .value-stack { padding: 2rem; }
  .value-stack-item { flex-direction: row; align-items: center; gap: 0; }
  .value-stack-worth { margin-left: 1rem; }
  .value-stack-price { margin: 1rem -2rem -2rem -2rem; padding: 1.25rem 2rem; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.pricing-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ambient);
}

.pricing-card-featured {
  border: 2px solid var(--color-accent);
  background: var(--color-bg);
}

.pricing-card-featured:hover {
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}

/* .pricing-header removed — elements are now direct grid children of .pricing-card */

.pricing-name {
  text-align: center;
  font-size: 1.5rem;
  margin: 0;
  padding: 0.5rem 0 0;
  color: var(--color-text);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.5rem 0;
}

.price-amount {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
}

.price-currency {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.pricing-desc {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  padding: 0 1rem 0.5rem;
}

.pricing-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 1.5rem;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem;
  align-self: stretch;
  flex: 1;
}

.pricing-features li {
  padding: 0.625rem 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-btn {
  display: block;
  width: auto;
  align-self: end;
  white-space: nowrap;
  margin: 0.5rem 1.5rem 1.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 50rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-accent);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  align-self: end;
}

.pricing-btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* Featured card (GROWTH) - stronger CTA */
.pricing-card-featured .pricing-btn {
  background: var(--color-accent);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
  font-size: 1.1rem;
  padding: 1.1rem 1.5rem;
}

.pricing-card-featured .pricing-btn:hover {
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.pricing-note {
  text-align: center;
  margin-top: var(--spacing-md);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius);
}

/* Guarantee Section */
.guarantee {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.guarantee-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-md);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-badge {
  width: 120px;
  height: 120px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.guarantee-badge svg {
  width: 64px;
  height: 64px;
}

.guarantee-text h2 {
  margin-bottom: var(--spacing-xs);
}

.guarantee-subtitle {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  max-width: none;
}

.guarantee-desc {
  max-width: none;
  margin-bottom: var(--spacing-sm);
}

.guarantee-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
}

.guarantee-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
}

.guarantee-feature svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
}

/* FAQ Section */
.faq-section {
  background: var(--color-bg-alt);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: rgba(16, 185, 129, 0.03);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* Increased from 500px */
  padding: 0 1.5rem 1.5rem 1.5rem;
  opacity: 1;
}

.faq-answer p {
  max-width: none;
  color: var(--color-text-secondary);
}

/* Generator Section (copy from original) */
.generator-full {
  background: var(--color-bg);
}

.generator-full-wrapper {
  width: 100%;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
}

.generator-full-inner {
  width: 100%;
  padding: var(--spacing-lg) clamp(16px, 4vw, 48px);
}

.generator-full-header {
  max-width: 55ch;
  margin: 0 auto var(--spacing-md);
  text-align: center;
}

.generator-full-card {
  width: 100%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-ambient);
  padding: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.generator-wrapper {
  display: grid;
  gap: var(--spacing-md);
}

.generator-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* .generator-label and .generator-textarea — see consolidated definitions below (line ~2422) */

.generator-label.mt {
  margin-top: 1rem;
}

.generator-or {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  position: relative;
}

.generator-or::before,
.generator-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--color-border);
}

.generator-or::before {
  left: 0;
}

.generator-or::after {
  right: 0;
}

.generator-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.generator-file-label:hover {
  border-color: var(--color-accent);
  background: rgba(16, 185, 129, 0.03);
}

.generator-file-label svg {
  width: 24px;
  height: 24px;
}

.generator-file {
  display: none;
}

.generator-hint {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.generator-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: max(16px, 1rem);
  background: var(--color-bg-alt);
  cursor: pointer;
  transition: var(--transition);
}

.generator-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ===== SEARCHABLE INDUSTRY COMBOBOX ===== */
.industry-search-wrapper {
  position: relative;
}

.industry-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.industry-dropdown.open {
  display: block;
}

.industry-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: max(16px, 0.95rem);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.15s ease;
}

.industry-option:hover,
.industry-option.active {
  background: rgba(16, 185, 129, 0.08);
  color: var(--color-accent);
}

.industry-group-label {
  padding: 0.5rem 1rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.industry-option-highlight {
  font-weight: 700;
}

.generator-field {
  margin-bottom: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 50rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.chip input {
  margin-right: 0.5rem;
}

.chip:hover {
  border-color: var(--color-accent);
  background: rgba(16, 185, 129, 0.05);
}

.chip input:checked + span {
  font-weight: 600;
}

.chip:has(input:checked) {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-accent);
}

.generator-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.generator-actions .btn {
  flex: 1;
}

.hero-output {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  min-height: 100px;
  display: none;
}

.hero-output:not(:empty) {
  display: block;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.03) 100%);
  text-align: center;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-content h2 {
  margin-bottom: var(--spacing-sm);
}

.final-cta-subtitle {
  font-size: 1.15rem;
  max-width: none;
  margin: 0 auto var(--spacing-md);
  color: var(--color-text);
}

.final-cta-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
  flex-wrap: wrap;
}

.cta-feature {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.final-cta-note {
  margin-top: var(--spacing-sm);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 50rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  transition: var(--transition);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.floating-cta svg {
  width: 20px;
  height: 20px;
}

/* Legal Pages */
.legal-content {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.legal-body {
  max-width: 800px;
  margin: 2rem auto 0;
}

.legal-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.legal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.legal-body p {
  margin-bottom: 1rem;
  line-height: 1.8;
  max-width: none;
}

.legal-body ul,
.legal-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-body li {
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
}

.legal-body blockquote {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

.legal-contact {
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}

.legal-contact p {
  margin-bottom: 0.25rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.legal-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-text);
}

.legal-table td {
  color: var(--color-text-secondary);
}

/* Refund Policy specific */
.refund-highlight {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.refund-highlight h2 {
  margin-top: 0;
  color: #166534;
}

.refund-highlight p {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #166534;
}

.refund-note {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.refund-note p:last-child {
  margin-bottom: 0;
}

.legal-body { padding: 0 1rem; }
.legal-table { font-size: 0.85rem; }
.legal-table th, .legal-table td { padding: 0.75rem 0.5rem; }
@media (min-width: 769px) {
  .legal-body { padding: 0; }
  .legal-table { font-size: 0.95rem; }
  .legal-table th, .legal-table td { padding: 1rem; }
}

/* Footer */
footer {
  background: var(--color-bg-alt);
  padding-block: var(--spacing-md);
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand p {
  margin-bottom: 0.25rem;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact {
  margin-top: 0.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

footer a {
  color: var(--color-accent);
  transition: var(--transition);
}

footer a:hover {
  text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-ambient);
  z-index: 90;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Mobile-first responsive */
.nav-links { display: none; }
.nav-cta { margin-left: auto; }
.nav-cta > .btn { display: none; }
.lang-btn { padding: 0.4rem 0.6rem; }
.lang-code { display: none; }
.hero-cta-group { flex-direction: column; width: 100%; }
.btn { width: 100%; justify-content: center; }
.pricing-card-featured { transform: scale(1); }
.pricing-card-featured:hover { transform: scale(1) translateY(-4px); }
.guarantee-badge { width: 80px; height: 80px; }
.guarantee-badge svg { width: 48px; height: 48px; }
.back-to-top { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
.generator-actions { flex-direction: column; }
.final-cta-features { flex-direction: column; align-items: center; }
.guarantee-content { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.guarantee-features { justify-content: center; }

@media (min-width: 641px) {
  .generator-actions { flex-direction: row; }
  .final-cta-features { flex-direction: row; align-items: stretch; }
}

@media (min-width: 769px) {
  :root { --spacing-lg: 4.5rem; }
  .nav-links { display: flex; gap: var(--spacing-sm); margin-left: auto; }
  .nav-cta { margin-left: var(--spacing-sm); }
  .nav-cta > .btn { display: inline-block; }
  .lang-btn { padding: 0.5rem 0.75rem; }
  .lang-code { display: inline; }
  .hero-cta-group { flex-direction: row; width: auto; }
  .btn { width: auto; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .guarantee-badge { width: 120px; height: 120px; }
  .guarantee-badge svg { width: 64px; height: 64px; }
  .back-to-top { bottom: 2rem; right: 2rem; width: 56px; height: 56px; }
}

@media (min-width: 901px) {
  .guarantee-content { grid-template-columns: auto 1fr; text-align: left; justify-items: start; }
  .guarantee-features { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Additional utility classes */
.mt {
  margin-top: 1.5rem;
}

/* Generator language selector */
#outputLang {
  margin-bottom: 1rem;
  appearance: auto;
  -webkit-appearance: auto;
}

/* ============================================
   NEW SECTIONS STYLES - B2B Checklist
   ============================================ */

/* Why Now Section */
.why-now {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.opportunity-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: relative;
}

.opportunity-number {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.opportunity-card h3 {
  margin: 1rem 0;
  color: var(--color-text);
  font-size: 1.25rem;
}

.opportunity-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.opportunity-conclusion {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
}

.opportunity-conclusion p {
  font-size: 1.1rem;
  margin: 0;
}

/* Before/After Gallery */
.before-after {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
  margin: 3rem 0;
}

.ba-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ba-industry {
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.ba-before,
.ba-after {
  padding: 1.25rem 1.5rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.ba-before {
  background: #fef2f2;
  border-bottom: 1px solid var(--color-border);
}

.ba-after {
  background: #f0fdf4;
}

.ba-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.ba-label-before {
  color: #dc2626;
}

.ba-label-after {
  color: #16a34a;
}

.ba-before p,
.ba-after p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  font-style: italic;
  margin: 0;
}

.ba-conclusion {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
}

.ba-conclusion p {
  max-width: none;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

.ba-grid { grid-template-columns: 1fr; }
@media (min-width: 769px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); gap: 0 2rem; }
}

/* Case Studies Section */
.case-studies {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg);
}

.case-study-grid {
  display: grid;
  gap: 3rem;
  margin: 3rem 0;
}

.case-study-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.case-study-header {
  margin-bottom: 2rem;
}

.case-study-company {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.case-study-logo {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.case-study-company h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--color-text);
}

.case-study-meta {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0.25rem 0 0 0;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
  margin: 1.5rem 0;
}

.case-study-card h4 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: var(--color-bg);
  border-radius: var(--radius);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  font-family: 'Manrope', sans-serif;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

.case-study-quote {
  background: var(--color-bg);
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent);
  font-style: italic;
  margin: 2rem 0 0 0;
  color: var(--color-text);
}

.case-studies-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
}

.case-studies-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: white;
}

.steps-container {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

.step-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: none;
}

.step-example,
.step-tech,
.step-time {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.step-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.format-tag {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
}

.step-visual {
  display: none;
}

.framework-guarantee {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.framework-guarantee h4 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.framework-guarantee p {
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-icon {
  display: none;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #4a73d5 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.badge-text {
  font-size: 0.95rem;
}

/* Works For You Section */
.works-for-you {
  padding: 5rem 0;
  background: var(--color-bg);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.objection-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.objection-thought {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

.objection-answer h4 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.objection-answer p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.objection-proof {
  background: var(--color-bg);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.8;
  border-left: 3px solid var(--color-success);
}

.works-for-you-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
}

.works-for-you-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.works-for-you-cta p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* Transformation Section */
.transformation {
  padding: 5rem 0;
  background: white;
}

/* .transformation-grid — see consolidated definition below (line ~3413) */

.column-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-border);
}

.before-column .column-title {
  color: #d64545;
}

.after-column .column-title {
  color: var(--color-success);
}

.transformation-items {
  display: grid;
  gap: 1.5rem;
}

.transformation-item {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.item-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.item-content h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
}

.item-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.transformation-identity {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
}

.transformation-identity h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.transformation-identity p {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.8;
}

/* Pricing Value Comparison */
.pricing-value-comparison {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
}

.pricing-value-comparison h3 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  background: white;
}

.value-item.value-expensive {
  opacity: 0.7;
}

.value-item.value-cheap {
  border-color: var(--color-success);
  background: #f0fdf4;
  transform: scale(1.05);
}

.value-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.value-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  font-family: 'Manrope', sans-serif;
  margin: 0.5rem 0;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.value-conclusion {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* Testimonials Enhancement */
.testimonial-company {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
}

.testimonial-results {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-bg);
  border-radius: 8px;
  border-left: 3px solid var(--color-success);
  font-size: 0.95rem;
}

/* Responsive: base = mobile */
.opportunity-grid, .objections-grid { grid-template-columns: 1fr; }
.transformation-grid { grid-template-columns: 1fr; }
.step-card { grid-template-columns: 1fr; }
.value-grid { grid-template-columns: 1fr; }
.case-study-metrics { grid-template-columns: 1fr; }
@media (min-width: 769px) {
  .opportunity-grid, .objections-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .transformation-grid { grid-template-columns: 1fr 1fr; }
  .step-card { grid-template-columns: auto 1fr; }
  .value-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .case-study-metrics { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}


/* ============================================
   FIXES - Centering and Generator
   ============================================ */

/* Generator Section - Proper Layout */
.generator-section {
  padding: 5rem 0;
  background: var(--color-bg);
}

.generator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.generator-input,
.generator-output {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.generator-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.generator-textarea {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 120px;
  transition: var(--transition);
}

.generator-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.generator-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.generator-result {
  min-height: 300px;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

/* Section Centering Fixes */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Guarantee Section - Remove weird styles */
.guarantee-section {
  display: none; /* Hide if it appears */
}

.generator-container { grid-template-columns: 1fr; }
@media (min-width: 969px) {
  .generator-container { grid-template-columns: 1fr 1fr; }
}


/* ============================================
   FINAL FIXES - Perfect Centering
   ============================================ */

/* Perfect centering for boxed sections */
.opportunity-conclusion,
.works-for-you-cta,
.transformation-identity {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.opportunity-conclusion p,
.works-for-you-cta p,
.transformation-identity p {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   FAQ FIX - Inline backup styles
   ============================================ */

/* Force FAQ to work with stronger selectors */
.faq-section .faq-item .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: all 0.4s ease !important;
  padding: 0 1.5rem !important;
}

.faq-section .faq-item.active .faq-answer {
  max-height: 2000px !important;
  opacity: 1 !important;
  padding: 0 1.5rem 1.5rem 1.5rem !important;
}

/* Make sure FAQ question is clickable */
.faq-question {
  cursor: pointer !important;
  user-select: none !important;
}


/* ============================================
   FAQ SIMPLE FIX - Display method instead of max-height
   ============================================ */

/* Override ALL previous FAQ styles */
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

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

.faq-question {
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--color-bg);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}


/* ============================================
   FIXES - Stats section text visibility
   ============================================ */

.stats-section {
  background: linear-gradient(135deg, #4A6FD1 0%, #4A7DE8 100%);
  padding: 4rem 0;
}

.stat-label {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-number {
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.badge-text {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 500;
}

/* Shield icon fix */
.guarantee-icon svg {
  color: var(--color-accent);
  stroke: var(--color-accent);
}

/* .framework-guarantee .guarantee-icon — removed (icon hidden) */


/* ============================================
   CRITICAL FIXES - Shield Icon & FAQ
   ============================================ */

/* Framework guarantee - simplified centered layout */
/* (icon removed, heading + text centered) */

/* FAQ - FORCE IT TO WORK */
.faq-answer {
  display: none;
  padding: 0.75rem 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  margin-top: 0.5rem;
}

.faq-item.active .faq-answer {
  display: block !important;
  border-top: 1px solid var(--color-border);
}

.faq-question {
  cursor: pointer !important;
  user-select: none !important;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cookie-text p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #7ba3f7;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #4a7ae8;
}

.cookie-btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-content { flex-direction: column; text-align: center; }
.cookie-buttons { width: 100%; justify-content: center; }
@media (min-width: 601px) {
  .cookie-content { flex-direction: row; text-align: left; }
  .cookie-buttons { width: auto; justify-content: flex-end; }
}

/* ===== GENERATOR IMPROVEMENTS ===== */
.generator-helper {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.generator-textarea {
  min-height: 180px;
}

#userEmail {
  width: 100%;
}

.generator-select[type="text"],
.generator-select[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.generator-select[type="text"]:focus,
.generator-select[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* ===== PRICING IMPROVEMENTS ===== */
.pricing-tagline {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-accent);
  padding: 0.25rem 0;
}

.pricing-per-text {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  align-self: end;
  padding: 0.5rem 1rem;
}

.pricing-feature-note {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #ddd;
}

.pricing-features li strong {
  color: var(--color-accent);
}

.pricing-guarantee {
  text-align: center;
  margin: 2.5rem auto 0 auto;
  padding: 1.5rem;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #86efac;
  max-width: 600px;
}

.pricing-guarantee p {
  margin: 0;
  color: #166534;
  font-size: 0.95rem;
}

/* OR divider in FREE pricing card */
.pricing-or-divider {
  text-align: center !important;
  color: var(--color-text-secondary) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 0 !important;
  opacity: 0.5;
  border: none !important;
}

/* FREE TRIAL CARD */
.pricing-card-free {
  border: 2px solid #10b981;
  background: #ffffff;
  position: relative;
}

.pricing-card-free::before {
  content: "FREE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}

.pricing-card-free .pricing-name {
  color: #10b981;
  margin-top: 0.5rem;
}

.pricing-card-free .pricing-tagline {
  color: #059669;
}

.pricing-card-free .pricing-btn {
  background: #10b981;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.pricing-card-free .pricing-btn:hover {
  background: #059669;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.pricing-trial-note {
  font-size: 0.85rem;
  color: #059669;
  text-align: center;
  padding: 0.75rem 1rem;
  background: #f0fdf4;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid #d1fae5;
  margin-top: auto;
}

.pricing-per-text-free {
  color: #10b981;
  font-weight: 600;
  margin-top: 0.5rem !important;
  margin-bottom: 0.25rem !important;
}

/* Uniform card styling */
.pricing-grid-4 .pricing-card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pricing-grid-4 .pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Mobile: no subgrid, flex column */
.pricing-grid-4 { grid-template-columns: 1fr; }
.pricing-grid-4 .pricing-card { grid-row: auto; grid-template-rows: none; display: flex; flex-direction: column; }

/* 2-column breakpoint */
@media (min-width: 651px) { .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* Desktop: deep subgrid — 8 rows for perfect alignment */
@media (min-width: 1201px) {
  .pricing-grid-4 { grid-template-columns: repeat(4, 1fr); row-gap: 0; }
  .pricing-grid-4 .pricing-card { display: grid; grid-row: span 8; grid-template-rows: subgrid; row-gap: 0; }
}

/* ===== PACKAGE SELECTOR IN GENERATOR ===== */
.package-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.package-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.package-option:hover {
  border-color: var(--color-accent);
  background: rgba(16, 185, 129, 0.05);
}

.package-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.package-option input[type="radio"]:checked + .package-info strong {
  color: var(--color-accent);
}

.package-option:has(input:checked) {
  border-color: var(--color-accent);
  background: rgba(16, 185, 129, 0.08);
}

.package-option-free:has(input:checked) {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.package-option-free input[type="radio"]:checked + .package-info strong {
  color: #10b981;
}

.package-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-info strong {
  font-size: 0.95rem;
}

.package-info small {
  font-size: 0.875rem;
  color: #6b7280;
}

.package-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-accent);
}

.package-option-free .package-price {
  color: #10b981;
}

/* Trial chips (radio instead of checkbox) */
.chips-trial {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chips-trial .chip {
  border: 2px solid #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.chips-trial .chip:has(input:checked) {
  background: #10b981;
  color: white;
}

.chips-trial .chip:has(input:checked) span {
  color: white;
}

/* ===== FILE UPLOAD NOTIFICATION ===== */
.upload-notification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.75rem;
  animation: slideIn 0.3s ease;
}

.upload-notification-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.upload-notification-success span {
  color: #10b981;
  font-weight: bold;
}

.upload-notification-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.upload-notification-error span {
  color: #ef4444;
  font-weight: bold;
}

.upload-notification.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   FEEDBACK WIDGET
   ===================================================== */
.feedback-widget {
  position: fixed !important;
  bottom: 100px !important;
  left: 24px !important;
  z-index: 9999 !important;
  display: block !important;
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
}

.feedback-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  border: none !important;
  background: #4A6FD1 !important;
  color: white !important;
  cursor: pointer !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4) !important;
  transition: all 0.3s ease !important;
}

.feedback-btn-icon {
  font-size: 26px !important;
  line-height: 1 !important;
  display: block !important;
}

.feedback-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5) !important;
}

.feedback-btn.active .feedback-btn-icon {
  display: inline-block !important;
  transform: rotate(45deg) !important;
}

.feedback-popup {
  position: absolute !important;
  bottom: 65px !important;
  left: 0 !important;
  width: 320px !important;
  max-width: calc(100vw - 48px) !important;
  background: #FCFCFB !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  padding: 24px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) scale(0.95) !important;
  transition: all 0.3s ease !important;
  border: 1px solid #E8E7E5 !important;
  box-sizing: border-box !important;
}

.feedback-popup.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.feedback-popup h3 {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  color: #1A1A19 !important;
}

.feedback-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  font-size: 24px !important;
  line-height: 1 !important;
  color: #5E5E5C !important;
  cursor: pointer !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.feedback-close:hover {
  background: #F9F9F8 !important;
  color: #1A1A19 !important;
}

.feedback-emoji {
  display: flex !important;
  gap: 12px !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

.feedback-emoji button {
  flex: 1 !important;
  padding: 12px !important;
  margin: 0 !important;
  border: 2px solid #E8E7E5 !important;
  background: #FCFCFB !important;
  border-radius: 12px !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.feedback-emoji button:hover {
  border-color: #4A6FD1 !important;
  transform: scale(1.05) !important;
}

.feedback-emoji button.selected {
  border-color: #4A6FD1 !important;
  background: rgba(16, 185, 129, 0.1) !important;
  transform: scale(1.05) !important;
}

.feedback-textarea {
  display: block !important;
  width: 100% !important;
  min-height: 80px !important;
  padding: 12px !important;
  margin: 0 0 16px 0 !important;
  border: 1px solid #E8E7E5 !important;
  border-radius: 12px !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  resize: vertical !important;
  background: #FCFCFB !important;
  color: #1A1A19 !important;
  transition: border-color 0.2s ease !important;
  box-sizing: border-box !important;
}

.feedback-textarea:focus {
  outline: none !important;
  border-color: #4A6FD1 !important;
}

.feedback-textarea::placeholder {
  color: #5E5E5C !important;
}

.feedback-submit {
  display: block !important;
  width: 100% !important;
  padding: 12px 24px !important;
  margin: 0 !important;
  background: #4A6FD1 !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.feedback-submit:hover {
  background: #059669 !important;
}

.feedback-submit:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.feedback-form {
  display: block !important;
}

.feedback-success {
  display: none;
  text-align: center !important;
  padding: 20px 0 !important;
}

.feedback-success-icon {
  font-size: 48px !important;
  margin: 0 0 12px 0 !important;
  display: block !important;
}

.feedback-success h3 {
  margin: 0 0 8px 0 !important;
}

.feedback-success p {
  color: #5E5E5C !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
}

/* Feedback widget: base = mobile */
.feedback-widget { bottom: 80px !important; left: 16px !important; }
.feedback-btn { width: 50px !important; height: 50px !important; }
.feedback-btn-icon { font-size: 22px !important; }
.feedback-popup { width: calc(100vw - 32px) !important; left: -8px !important; bottom: 60px !important; }
@media (min-width: 481px) {
  .feedback-widget { bottom: 100px !important; left: 24px !important; }
  .feedback-btn { width: 56px !important; height: 56px !important; }
  .feedback-btn-icon { font-size: 26px !important; }
  .feedback-popup { width: 320px !important; left: 0 !important; bottom: 65px !important; }
}

/* ===== CONTENTPLAN: NEW SECTIONS ===== */

/* Why Now Section (reuses needs-grid pattern) */
.why-now {
  padding: var(--spacing-lg) 0;
  background: var(--color-bg-alt);
}

.why-now .need-card h3 {
  font-size: 1.15rem;
}

.why-now .need-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Transformation Section */
.transformation {
  padding: var(--spacing-lg) 0;
  background: var(--color-bg);
}

.transformation-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
}

.transformation-objection {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-ambient);
}

.transformation-objection h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.transformation-objection p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.transformation-vision {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.transformation-vision h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.transformation-vision p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Testimonials placeholder */
.testimonials-placeholder {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 2px dashed var(--color-border);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-placeholder p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.transformation-vision { padding: 1.5rem; }
.transformation-objection { padding: 1.25rem 1.5rem; }
@media (min-width: 769px) {
  .transformation-vision { padding: 2rem; }
  .transformation-objection { padding: 1.5rem 2rem; }
}

/* Additional UX fixes — custom consent checkboxes */
/* Hide native checkbox but keep it focusable */
#consentTerms, #consentDelivery {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

/* Label is the 44px touch target */
#consentTerms ~ span,
#consentDelivery ~ span {
  position: relative;
  padding-left: 32px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Custom checkbox visual via ::before — 20px visible */
#consentTerms ~ span::before,
#consentDelivery ~ span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border, #ccc);
  border-radius: 4px;
  background: var(--color-bg, #fff);
  transition: background 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

/* Checked state */
#consentTerms:checked ~ span::before,
#consentDelivery:checked ~ span::before {
  background: var(--color-accent, #4A6FD1);
  border-color: var(--color-accent, #4A6FD1);
}

/* Checkmark icon via ::after */
#consentTerms ~ span::after,
#consentDelivery ~ span::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

#consentTerms:checked ~ span::after,
#consentDelivery:checked ~ span::after {
  border-color: #fff;
  opacity: 1;
}

/* Focus-visible state */
#consentTerms:focus-visible ~ span::before,
#consentDelivery:focus-visible ~ span::before {
  outline: 2px solid var(--color-accent, #4A6FD1);
  outline-offset: 2px;
}
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0.5rem 0; }
.faq-question { min-height: 44px; }
.cookie-btn { min-height: 44px; }
.lang-btn { min-height: 44px; min-width: 44px; }

/* Pricing subgrid: handled by .pricing-grid-4 rules above (span 8, deep subgrid, desktop only) */

/* ===== HAMBURGER MENU (mobile) ===== */
.hamburger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  margin-right: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .hamburger-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);
    z-index: 105;
  }

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

  .nav-links a {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    font-size: 1.05rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  /* Animate hamburger to X */
  .hamburger-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Currency toggle removed — EN=EUR, PL=PLN */

/* ===== PRINT STYLES ===== */
@media print {
  .cookie-banner, .nav-container, .feedback-widget,
  .skip-link, .hamburger-toggle, footer { display: none; }
  body { font-size: 12pt; }
  .hero, .section { page-break-inside: avoid; }
  header { position: static; box-shadow: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .back-to-top { display: none; }
}


/* =========================================================
   GenerateBizPlan — UNIQUE MAGNET additions on top of GCP base
   ========================================================= */

/* Skip link (keyboard a11y) — already in GCP but keep */

/* Honeypot (anti-bot) */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* ---------- HERO: canvas mockup preview (unique vs GCP) ---------- */
.hero-preview-wrap {
  flex: 0 0 420px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.canvas-mockup {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  padding: 1rem;
  transform: rotate(-1deg);
  transition: var(--transition);
  width: 100%;
  max-width: 420px;
}
.canvas-mockup:hover { transform: rotate(0) translateY(-4px); }
.canvas-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0.75rem;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-title {
  font-family: 'Sora', monospace;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-left: 0.5rem;
}
.canvas-mockup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  font-size: 0.65rem;
}
.mockup-cell {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.5rem 0.4rem;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mockup-cell strong {
  font-size: 0.6rem;
  color: var(--color-text);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.mockup-cell span {
  background: var(--color-border);
  height: 4px;
  border-radius: 2px;
  width: 80%;
  display: block;
}
.mockup-cell span:nth-child(3) { width: 45%; }
.mockup-cell-uvp {
  grid-column: span 1;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}
.mockup-cell-uvp span { background: rgba(16, 185, 129, 0.25); }
.mockup-cell-wide { grid-column: span 2; }

/* ---------- SECTION HELPERS (used in GBP variants) ---------- */
.container-narrow { max-width: 780px; margin-inline: auto; padding-inline: 1rem; }
.section-dark {
  background: #1A1A19;
  color: #FAFAF8;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(250, 250, 248, 0.82); }
.section-dark strong { color: #fff; }
.section-dark a { color: #7EE8B8; }

/* ---------- PROBLEM (dark storytelling block) ---------- */
.problem-bullets {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  max-width: 780px;
  margin: 2rem auto 0;
}
.problem-bullets li {
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  font-size: 0.98rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.emphasis {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 1.5rem;
  text-align: center;
}

/* ---------- WHY NOW: big number cards ---------- */
.big-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-accent);
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.closing-line, .closing-bar {
  text-align: center;
  font-size: 1.05rem;
  margin-top: 2rem;
  color: var(--color-text-secondary);
}

/* ---------- WHAT YOU NEED: numbered need-cards ---------- */
.need-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* ---------- HOW IT WORKS: GBP steps list ---------- */
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
}
.step-icon { width: 48px; height: 48px; }
.step h3 { margin: 0 0 0.4rem; grid-column: 2; }
.step p { grid-column: 2; }
.hiw-box {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}
.hiw-box h3 { margin-bottom: 0.75rem; }
.hiw-box ol { margin-left: 1.2rem; }
.hiw-box ol li { margin-bottom: 0.5rem; }

/* ---------- BENEFITS (unique vs GCP — 3 cards emotional/practical/unique) ---------- */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-ambient); }
.benefit-icon { width: 40px; height: 40px; margin-bottom: 0.75rem; }

/* ---------- SOCIAL PROOF placeholder ---------- */
.placeholder-notice {
  background: #FFF9E6;
  border: 1px solid #F5C6B1;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.persona-quote {
  margin: 0;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
}
.persona-quote blockquote {
  margin: 0 0 0.5rem;
  font-style: italic;
  color: var(--color-text);
}
.persona-quote figcaption {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}
.quotes { display: grid; gap: 1rem; margin-top: 1rem; }

/* ---------- TRANSFORMATION: objections + vision ---------- */
.objections { display: grid; gap: 1.25rem; max-width: 820px; margin: 0 auto; }
.objection {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.objection h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.vision {
  background: rgba(16, 185, 129, 0.06);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 820px;
  margin: 2rem auto 0;
}

/* ---------- STATS + TRUST BADGES ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: var(--color-accent);
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.badge {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}
.badge-icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.badge h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.badge p { font-size: 0.82rem; color: var(--color-text-secondary); margin: 0; }

@media (max-width: 640px) {
  .stats-bar { grid-template-columns: 1fr; }
}

/* ---------- PRICING COMPARISON (unique vs GCP) ---------- */
.comparison-wrapper {
  margin-top: 2.5rem;
  overflow-x: auto;
}
.comparison-title { text-align: center; margin-bottom: 1rem; }
.comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-ambient);
}
.comparison th, .comparison td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.comparison th {
  background: var(--color-bg-alt);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}
.comparison tr.highlight {
  background: rgba(16, 185, 129, 0.08);
}
.value-stack {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.value-stack h3 { margin-bottom: 0.75rem; }
.value-stack ul { margin-left: 1.2rem; margin-bottom: 1rem; }
.stack-closing { font-size: 1.05rem; margin-top: 0.5rem; }
.stack-note {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 0.75rem;
}

/* ---------- PRICING CARD SINGLE-TIER (unique — GCP has 4) ---------- */
.pricing-single {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}
.pricing-single h3 { margin-bottom: 0.25rem; }
.plan-sub {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}
.price { margin: 1rem 0; }
.price-num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: var(--color-accent);
}
.price-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}
.price-features li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}
.btn-block { display: block; width: 100%; }
.pricing-fine {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ---------- FORM WIZARD (unique — GCP uses single form) ---------- */
.form-wizard {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-ambient);
}
.form-progress {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 0.75rem;
}
.progress-step {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  transition: var(--transition);
}
.progress-step.active { background: var(--color-accent); }
.form-step-counter {
  text-align: right;
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}
.form-field { border: none; padding: 0; margin: 0; }
.form-field[hidden] { display: none; }
.form-label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.form-help {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--color-text);
  min-height: 48px;
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-error {
  color: #DC2626;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  min-height: 1em;
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.form-consent input { flex-shrink: 0; margin-top: 4px; }
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.form-microcopy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 1rem;
}

/* ---------- CANVAS PREVIEW + LOADING ---------- */
.canvas-preview {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.loading-state {
  text-align: center;
  padding: 2rem 0;
}
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-message { color: var(--color-text-secondary); }
.preview-note {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  background: var(--color-bg-alt);
  padding: 0.75rem;
  border-radius: 10px;
}
.preview-cell {
  background: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  min-height: 90px;
  font-size: 0.78rem;
}
.preview-cell strong {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.preview-cell-uvp { background: rgba(16, 185, 129, 0.06); border-color: rgba(16, 185, 129, 0.3); }
.preview-cell-wide { grid-column: span 2; }

@media (max-width: 640px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-cell-wide { grid-column: span 2; }
}

/* ---------- EMAIL GATE MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 25, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay[hidden] { display: none; }
.modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.modal-close:hover { color: var(--color-text); }
.email-success { text-align: center; padding: 1.5rem 0; }

/* ---------- FOOTER (unique multi-col vs GCP) ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.footer-logo { height: 32px; margin-bottom: 0.75rem; }
.footer-tag { font-weight: 600; margin-bottom: 0.25rem; }
.footer-small { font-size: 0.85rem; color: var(--color-text-secondary); }
.company-info { display: none !important; } /* PLACEHOLDER hidden until company registered */
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}
.ai-disclaimer { font-style: italic; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WCAG TOUCH TARGETS (mobile ≥44px) ---------- */
@media (max-width: 768px) {
  .btn, .pricing-btn, .lang-option, .faq-question, .cookie-btn {
    min-height: 44px;
  }
}

/* ---------- WCAG inline link contrast fix ---------- */
p a, li a, .form-consent span a {
  color: var(--color-link-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- HERO 2-column (copy + canvas preview) ---------- */
.hero-content.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-content.hero-two-col { grid-template-columns: 1fr; }
}
