/* Main Styles - Replica Landing Page */

/* CSS Variables */
:root {
  /* Colors */
  --primary-orange: #ff4715;
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  /* Darker than #666666 for better readability */
  --background: #ffffff;
  --grid-pixel: rgba(219, 219, 219, 0.5);
  --gray-placeholder: #d9d9d9;
  --border-light: #e5e5e5;

  /* Spacing (aligned to 20px module) */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 50px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;

  /* Typography */
  --font-primary: "Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", monospace;
}

/* Background Pixel Grid */
body {
  background-color: var(--background);
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="4" height="4" fill="%23DBDBDB" fill-opacity="0.5"/></svg>');
  background-size: 20px 20px;
  background-position: 0 0;
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
.text-orange {
  color: var(--primary-orange);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

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

.section-text {
  font-size: 1.25rem;
  /* Increased from 1.125rem (18px -> 20px) */
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--primary-orange);
  color: #ffffff;
  border: 2px solid var(--primary-orange);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--primary-orange);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn--outline:hover {
  background-color: var(--text-dark);
  color: #ffffff;
}

.btn--outline-orange {
  background-color: #ffffff;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn--outline-orange:hover {
  background-color: var(--primary-orange);
  color: #ffffff;
}

.btn--orange-black {
  background-color: var(--primary-orange);
  color: #ffffff;
  border: 2px solid var(--primary-orange);
}

.btn--orange-black:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}


/* Header */
.header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(255, 71, 21, 0.15);
  /* Orange shadow */
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.header.desaturated {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* Desaturated (black/gray) shadow */
}

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

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex: 1;
  justify-content: space-between;
  margin-left: var(--spacing-md);
}

.header__hamburger {
  display: none;
}

.header__left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo__image {
  height: 40px;
  width: auto;
}

.manual-link {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.manual-link:hover {
  color: var(--primary-orange);
}

.manual-link--active {
  color: var(--primary-orange);
  cursor: default;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
}

.lang-switcher__link {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.lang-switcher__link:hover {
  color: var(--text-dark);
}

.lang-switcher__link.active {
  color: var(--primary-orange);
}

.lang-switcher__separator {
  color: var(--border-light);
  user-select: none;
}

/* Hero Section */
.hero {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-sm);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-mono);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero__description {
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
  font-size: 1.25rem;
  /* Increased from 1.125rem */
  line-height: 1.7;
  color: var(--text-gray);
}

.hero__actions {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.hero__image {
  margin-top: var(--spacing-lg);
}

/* Interface Section */
.interface-section {
  padding: var(--spacing-xl) 0;
}

.interface-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interface-section__image {
  display: flex;
  align-items: center;
}

/* Steps Section */
.steps-section {
  padding: var(--spacing-xl) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 15px;
  /* Centered relative to 2rem number (32px) -> 16px - 1px border */
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-orange) 0%, var(--primary-orange) 33%, var(--border-light) 33%, var(--border-light) 100%);
  z-index: 0;
}

.step {
  text-align: center;
}

.step__number {
  font-family: var(--font-mono);
  font-size: 2rem;
  line-height: 1;
  /* Ensure predictable height for alignment */
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  background-color: var(--background);
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.step__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.step__description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Workflow Section */
.workflow-section {
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.workflow-section .section-title {
  margin-bottom: var(--spacing-md);
}

.workflow-section .btn {
  margin-bottom: var(--spacing-lg);
}

.workflow-section__image {
  max-width: 1000px;
  margin: 0 auto;
}

.workflow-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section {
  padding: var(--spacing-xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.feature-card {
  padding: var(--spacing-md);
  border: 1px solid var(--primary-orange);
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.feature-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(255, 71, 21, 0.1);
}

.feature-card--highlight {
  background-color: var(--primary-orange);
  color: #ffffff;
  border-color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card--highlight:hover {
  transform: scale(1.05);
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: var(--spacing-xs);
}

.feature-card--highlight .feature-card__title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.feature-card__description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Audience Section */
.audience-section {
  padding: var(--spacing-xl) 0;
  max-width: 900px;
  margin: 0 auto;
}

.audience-list {
  margin-top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.audience-item {
  display: flex;
  align-items: center;
  /* Center vertically */
  gap: var(--spacing-sm);
  padding: 20px 24px;
  background-color: #ffffff;
  border: 2px solid var(--primary-orange);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.audience-item:hover {
  transform: translateX(10px);
}

/* Remove old border styles */
.audience-item:last-child {
  border-bottom: 2px solid var(--primary-orange);
  /* Keep border consistent */
}

.audience-item__icon {
  font-size: 1.5rem;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.audience-item__text {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Beta Section */
.beta-section {
  padding: var(--spacing-xxl) 0;
  text-align: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 71, 21, 0.05) 100%);
}

.beta-section__subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: var(--spacing-lg);
}

.beta-form {
  max-width: 600px;
  margin: 0 auto;
}

.beta-form__inputs {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  align-items: stretch;
}

.beta-form__input {
  flex: 1;
  padding: 14px 24px;
  font-size: 1rem;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.beta-form__input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.beta-form__input::placeholder {
  color: var(--text-gray);
}

.beta-form__checkbox-wrapper {
  margin-top: var(--spacing-sm);
  text-align: left;
  display: flex;
  justify-content: center;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-dark);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox-container:hover input~.checkmark {
  border-color: var(--primary-orange);
}

.checkbox-container input:checked~.checkmark {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  display: flex;
  flex-direction: column;
}

.checkbox-text--sub {
  color: #999;
  /* Light gray as requested */
  font-size: 0.85em;
  margin-top: 2px;
}

/* Footer */
.footer {
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer__text {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.footer__legal {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.footer__legal a {
  color: var(--text-gray);
  font-size: 0.875rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.2s ease;
}

.footer__legal a:hover {
  color: var(--primary-orange);
  text-decoration-color: var(--primary-orange);
}

/* Placeholder Images */
.placeholder-image {
  width: 100%;
  height: 400px;
  background-color: var(--gray-placeholder);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image--laptop {
  height: 500px;
}

/* Pricing Page Styles */
.pricing-hero {
  padding: var(--spacing-xl) 0 var(--spacing-md);
  text-align: center;
}

.pricing-hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-top: var(--spacing-sm);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-section {
  padding: var(--spacing-lg) 0 var(--spacing-xxl);
  overflow: visible;
}

.pricing-table {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  background: #ffffff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 2px solid var(--border-light);
}

.pricing-table__feature-column {
  padding: var(--spacing-md);
  background: #fafafa;
}

.pricing-table__tier-column {
  padding: var(--spacing-md);
  text-align: center;
  border-left: 1px solid var(--border-light);
  position: relative;
}

.pricing-table__tier-column--highlight {
  background: linear-gradient(to bottom, rgba(255, 71, 21, 0.03) 0%, rgba(255, 71, 21, 0.08) 100%);
  border-left: 2px solid var(--primary-orange);
  border-right: 2px solid var(--primary-orange);
}

.pricing-tier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-orange);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
  z-index: 10;
}

.pricing-tier-header__name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.pricing-tier-header__price {
  margin-bottom: var(--spacing-sm);
}

.price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--primary-orange);
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.pricing-tier-header__description {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  min-height: 45px;
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.8125rem;
  width: 100%;
}

.pricing-table__body {
  display: flex;
  flex-direction: column;
}

.pricing-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table__row:last-child {
  border-bottom: none;
}

.pricing-table__feature-cell {
  padding: var(--spacing-xs) var(--spacing-md);
  display: flex;
  align-items: center;
  background: #fafafa;
}

.feature-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-badge {
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--primary-orange);
  text-transform: uppercase;
  vertical-align: super;
  margin-left: 6px;
  letter-spacing: 0.02em;
  padding: 1px 5px;
  border-radius: 3px;
}

.pricing-table__value-cell {
  padding: var(--spacing-xs) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid var(--border-light);
}

.pricing-table__value-cell--highlight {
  background: rgba(255, 71, 21, 0.02);
  border-left: 2px solid var(--primary-orange);
  border-right: 2px solid var(--primary-orange);
}

.feature-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-value--small {
  font-size: 0.875rem;
}

.check {
  font-size: 1.5rem;
  color: var(--primary-orange);
  font-weight: 700;
}

.cross {
  font-size: 1.25rem;
  color: var(--text-gray);
  opacity: 0.3;
}

/* Coupon Banner */
.coupon-banner {
  background-color: var(--primary-orange);
  color: #ffffff;
  padding: 10px 0;
  position: relative;
  z-index: 101;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.coupon-banner--hidden {
  transform: translateY(-100%);
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.coupon-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.coupon-banner__text {
  text-align: center;
  line-height: 1.4;
}

.coupon-banner__text strong {
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.coupon-banner__expires {
  opacity: 0.85;
  margin-left: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
}

.coupon-banner__cta {
  background-color: #ffffff;
  color: var(--primary-orange);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.coupon-banner__cta:hover {
  background-color: var(--text-dark);
  color: #ffffff;
}

.coupon-banner__close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coupon-banner__close:hover {
  opacity: 1;
}

/* Discounted Prices */
.price-amount--original {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--font-mono);
  color: var(--text-gray);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount--discounted {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--primary-orange);
  line-height: 1;
}

.price-countdown {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
  padding: 2px 8px;
  border: 1px solid var(--primary-orange);
  border-radius: 3px;
}

/* Pricing Cards (Mobile/Tablet) */
.pricing-cards {
  display: none;
}

.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid var(--border-light);
}

.pricing-card--highlight {
  background: #ffffff;
  border: 2px solid var(--primary-orange);
}

.pricing-card .pricing-tier-header {
  padding: var(--spacing-md);
  text-align: center;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-light);
  border-radius: 0 0 11px 11px;
  overflow: hidden;
}

.pricing-card__feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-md);
  border-bottom: 1px solid var(--border-light);
  background: #fafafa;
}

.pricing-card__feature:last-child {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .pricing-table__header,
  .pricing-table__row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .feature-name {
    font-size: 0.9375rem;
  }

  .pricing-tier-header__name {
    font-size: 1.25rem;
  }

  .price-amount,
  .price-amount--discounted {
    font-size: 2rem;
  }

  .price-amount--original {
    font-size: 1rem;
  }

  .btn--small {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
  }

  /* Hamburger button */
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 101;
  }

  .header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

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

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

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

  /* Mobile menu */
  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 0;
  }

  .header__menu.open {
    display: flex;
  }

  .header__left {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header__left .manual-link {
    display: block;
    width: 100%;
    padding: 12px var(--spacing-sm);
    font-size: 1rem;
  }

  .header__left .manual-link:hover {
    background-color: rgba(255, 71, 21, 0.05);
  }

  .header__right {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 12px var(--spacing-sm);
    border-top: 1px solid var(--border-light);
  }

  .header__right .btn {
    width: 100%;
    text-align: center;
  }

  .lang-switcher {
    font-size: 0.8125rem;
    gap: 6px;
  }

  .coupon-banner {
    padding: 8px 0;
    font-size: 0.8125rem;
  }

  .coupon-banner__content {
    gap: 8px;
  }

  .coupon-banner__expires {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  .coupon-banner__cta {
    font-size: 0.6875rem;
    padding: 4px 12px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .step::after {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    background-color: var(--border-light);
    margin: var(--spacing-sm) auto 0;
  }

  .step:last-child::after {
    display: none;
  }

  .beta-form__inputs {
    flex-direction: column;
  }

  .placeholder-image {
    height: 300px;
  }

  .placeholder-image--laptop {
    height: 350px;
  }

  .audience-item__text {
    font-size: 1rem;
  }

  /* Pricing table mobile */
  .pricing-table {
    display: none;
  }

  .pricing-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: 15px;
    /* Spazio aggiuntivo per il badge 'Most Popular' */
  }

  .pricing-hero__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .logo__image {
    height: 32px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.8125rem;
  }
}


/* Privacy Modal & Link */
.privacy-link {
  color: var(--primary-orange);
  /* Orange as requested */
  text-decoration: underline;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.privacy-link:hover {
  opacity: 0.8;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  /* High z-index to stay on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  /* White w/ opacity */
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex !important;
  /* Force flex display when active */
  opacity: 1;
}

.modal-content {
  background-color: #ffffff;
  border: 2px solid var(--primary-orange);
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  /* slightly less than full height */
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  /* Relative to modal-header now */
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: var(--primary-orange);
  border: none;
  border-radius: 0;
  /* Square as requested */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 20;
}

.modal-close:hover {
  background-color: var(--text-dark);
}

.modal-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  /* Ensure header stays on top */
}

.modal-title {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
}

.modal-date {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-family: var(--font-mono);
}

.modal-body {
  padding: 40px;
}

.privacy-section {
  margin-bottom: 30px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section__title {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.privacy-section__content {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Scrollbar for modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}


/* FAQ Section */
.faq-section {
  padding: var(--spacing-xxl) 0;
  /* background-color: #fafafa; Removed as per user request */
}

.faq-accordion {
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  background-color: #ffffff;
  border: 2px solid var(--primary-orange);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item__header {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-item__header:hover {
  background-color: rgba(255, 71, 21, 0.05);
  /* very light orange */
}

.faq-item__question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: 20px;
}

.faq-item__icon {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-orange);
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item__content {
  max-height: 0;
  /* collapsed by default */
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item__body {
  padding: 0 24px 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  border-top: 1px solid transparent;
}

/* Open state styles */
.faq-item__header[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  /* + becomes x */
}

.faq-item__header[aria-expanded="true"] {
  background-color: rgba(255, 71, 21, 0.05);
}


@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hero Video */
.hero-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Interface Section Updates */
.interface-section__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  display: block;
}

.interface-section__image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.interface-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}