/* ============================================================================
   ROTAKEEP LANDING PAGE STYLES
   Warm Editorial Hospitality Aesthetic
   ============================================================================ */

/* Font imports - Plus Jakarta Sans (bold headlines) + DM Sans (warm body text) + Passion One (logo) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Passion+One:wght@700&display=swap');

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */

:root {
  /* Brand Colors */
  --rk-cream: #FFFBEB;
  --rk-cream-dark: #FEF3C7;
  --rk-amber: #F59E0B;
  --rk-amber-hover: #D97706;
  --rk-amber-light: #FDE68A;
  --rk-coral: #FB7185;
  --rk-coral-hover: #F43F5E;
  --rk-coral-light: #FECDD3;
  --rk-brown: #78350F;
  --rk-brown-light: #92400E;
  --rk-charcoal: #1C1917;
  --rk-white: #FFFFFF;

  /* Neutral palette */
  --rk-stone-50: #FAFAF9;
  --rk-stone-100: #F5F5F4;
  --rk-stone-200: #E7E5E4;
  --rk-stone-300: #D6D3D1;
  --rk-stone-400: #A8A29E;
  --rk-stone-500: #78716C;

  /* Typography */
  --font-logo: 'Passion One', sans-serif;
  --font-display: 'Passion One', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows with warm tint */
  --shadow-sm: 0 1px 2px rgba(120, 53, 15, 0.05);
  --shadow-md: 0 4px 12px rgba(120, 53, 15, 0.08);
  --shadow-lg: 0 12px 32px rgba(120, 53, 15, 0.12);
  --shadow-xl: 0 24px 48px rgba(120, 53, 15, 0.16);
  --shadow-coral: 0 8px 24px rgba(251, 113, 133, 0.35);
  --shadow-coral-hover: 0 12px 32px rgba(251, 113, 133, 0.45);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================================
   1. BASE / RESET
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--rk-charcoal);
  line-height: 1.6;
  background: var(--rk-cream);
}

.landing-page {
  overflow-x: hidden;
}

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

/* ============================================================================
   2. SECTION COMMON
   ============================================================================ */

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rk-coral);
  background: rgba(251, 113, 133, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--rk-brown);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--rk-stone-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   3. HEADER
   ============================================================================ */

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background-color: #FFFBEB;
  box-shadow: 0 1px 0 rgba(120, 53, 15, 0.1);
}

.landing-header.scrolled {
  background-color: #FFFBEB;
  box-shadow: 0 1px 3px rgba(120, 53, 15, 0.08);
  padding: 12px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--rk-brown);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--rk-coral);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg {
  display: block;
}

.nav-cta {
  background: var(--rk-coral);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-coral);
  font-family: var(--font-body);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--rk-coral-hover);
  box-shadow: var(--shadow-coral-hover);
  transform: translateY(-1px);
}

/* Sign In link in desktop nav */
.nav-signin-link {
  color: var(--rk-coral) !important;
  font-weight: 600 !important;
}

.nav-signin-link:hover {
  color: var(--rk-coral-hover) !important;
}

/* Mobile Sign In button - always visible next to hamburger */
.mobile-signin-btn {
  display: none;
  padding: 8px 18px;
  background: var(--rk-coral);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.mobile-signin-btn:hover {
  background: var(--rk-coral-hover);
}

/* Mobile hamburger styling */
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--rk-brown);
  transition: all 0.3s;
  display: block;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================================
   4. HERO
   ============================================================================ */

.hero-section {
  padding: 50px 0 12px;
  background: transparent;
  position: relative;
  overflow: visible;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #78350F;
  margin-bottom: 10px;
}

.hero-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-content {
  flex: 0 1 45%;
  min-width: 380px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--rk-brown);
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--rk-coral);
}

.hero-subtitle {
  font-size: 19px;
  color: var(--rk-stone-500);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rk-coral);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-coral);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--rk-coral-hover);
  box-shadow: var(--shadow-coral-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rk-brown);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  color: var(--rk-coral);
}

.hero-trust-line {
  font-size: 14px;
  color: var(--rk-stone-400);
}

.hero-badge {
  display: inline-block;
  background: var(--rk-amber);
  color: var(--rk-brown);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-app-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.hero-app-badges-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--rk-stone-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-app-badges-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-app-badge-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.hero-app-badge-link:hover {
  opacity: 0.8;
}

.hero-app-badge-img {
  height: 40px;
  width: auto;
}

.hero-image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--rk-amber);
  color: var(--rk-brown);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(120, 53, 15, 0.2);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  margin-right: -24px;
}

.hero-screenshot {
  transition: transform 0.4s ease;
}

.hero-screenshot:hover {
  transform: translateY(-4px);
}

.hero-screenshot img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 16px 40px rgba(120, 53, 15, 0.10));
}

/* ============================================================================
   5. TRUST BAR
   ============================================================================ */

.trust-bar-section {
  padding: 12px 0;
  background: var(--rk-cream-dark);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.trust-bar-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--rk-stone-500);
  letter-spacing: 0.5px;
}

.trust-bar-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.trust-bar-icon {
  font-size: 13px;
  font-weight: 600;
  color: var(--rk-brown);
  letter-spacing: 0.02em;
}

/* ============================================================================
   6. PAIN POINTS
   ============================================================================ */

.pain-section {
  padding: 24px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pain-card {
  background: var(--rk-white);
  border: 1px solid var(--rk-stone-200);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rk-coral-light);
}

.pain-emoji {
  font-size: 48px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 48px;
  max-height: 48px;
}

.pain-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--rk-brown);
  margin-bottom: 8px;
}

.pain-card-desc {
  font-size: 15px;
  color: var(--rk-stone-500);
  line-height: 1.6;
}

/* ============================================================================
   7. FEATURE SHOWCASE
   ============================================================================ */

.features-section {
  padding: 32px 0;
}

.features-section .section-inner {
  max-width: 1340px;
}

.features-section .section-header {
  margin-bottom: 24px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 0;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row-reverse {
  direction: rtl;
}

.feature-row-reverse > * {
  direction: ltr;
}

.feature-image {
  border-radius: 0;
  overflow: hidden;
  max-height: 320px;
}

.feature-image img {
  display: block;
  width: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.08));
}

.feature-image-phone {
  margin: 0 auto;
  align-self: center;
  max-width: 450px;
}

.feature-image-phone img {
  border-radius: 0;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
}

.feature-image-tablet {
  margin: 0 auto;
  align-self: center;
  max-width: 500px;
}

.feature-image-tablet img {
  border-radius: 0;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
}

.feature-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rk-coral);
  margin-bottom: 8px;
}

.feature-text .feature-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--rk-brown);
  margin-bottom: 16px;
  line-height: 1.15;
}

.feature-points {
  list-style: none;
  padding: 0;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 5px 0;
  font-size: 16px;
  color: var(--rk-stone-500);
  line-height: 1.5;
}

.feature-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-body {
  font-size: 16px;
  color: var(--rk-stone-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.feature-tag {
  background: var(--rk-cream-dark);
  color: var(--rk-brown);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.feature-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--rk-amber);
  color: var(--rk-brown);
  padding: 24px 40px;
  border-radius: 12px;
  margin-top: 48px;
  font-size: 18px;
  font-weight: 700;
  gap: 24px;
  flex-wrap: wrap;
}

/* Screenshot placeholder */
.feature-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e4df 100%);
  border: 1px dashed rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.feature-placeholder-content {
  text-align: center;
}

.feature-placeholder-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.feature-placeholder-text {
  font-size: 14px;
  color: var(--rk-stone-400);
  font-weight: 500;
}

/* ============================================================================
   8. HOW IT WORKS
   ============================================================================ */

.how-it-works-section {
  padding: 24px 0;
  background: var(--rk-stone-50);
}

.steps-container {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 60%;
  transform: translateX(-50%);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--rk-stone-300) 0,
    var(--rk-stone-300) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}

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

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--rk-coral);
  background: var(--rk-white);
  border: 2px solid var(--rk-coral-light);
  border-radius: 50%;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--rk-brown);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--rk-stone-500);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================================================
   8b. COST COMPARISON (interactive slider)
   ============================================================================ */

.cost-compare-section {
  background: var(--rk-charcoal);
  color: var(--rk-white);
  padding: 40px 0;
}

.cost-compare-section .section-header h2 {
  color: var(--rk-white);
}

.cost-compare-section .section-header p {
  color: var(--rk-stone-200, #e7e5e4);
}

.cost-slider-wrap {
  text-align: center;
  margin: 40px 0;
}

.cost-slider-label {
  font-size: 15px;
  color: var(--rk-stone-300);
  margin-bottom: 8px;
}

.cost-slider-count {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--rk-amber);
  line-height: 1;
  margin-bottom: 12px;
}

.cost-slider {
  width: 100%;
  max-width: 480px;
  accent-color: var(--rk-amber);
}

.cost-result-card {
  background: #FB7185;
  color: #78350F;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 480px;
  margin: 32px auto 0;
}

.cost-result-plan {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.cost-result-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.cost-per-month {
  font-size: 1.2rem;
  font-weight: 400;
}

.cost-result-staff {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cost-result-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ============================================================================
   9b. UK-FIRST SECTION
   ============================================================================ */

/* REPLACE WITH OWN PHOTO */
.uk-first-section {
  background-image:
    linear-gradient(rgba(23, 10, 3, 0.70), rgba(23, 10, 3, 0.70)),
    url('/images/chefchop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--rk-white);
  padding: 40px 0;
}

.uk-first-section .section-label {
  color: var(--rk-amber);
  background: rgba(245, 158, 11, 0.15);
}

.uk-first-section .section-header h2,
.uk-first-section .section-title {
  color: var(--rk-white);
}

.uk-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.uk-pillar {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-top: 3px solid var(--rk-amber);
}

.uk-pillar-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40px;
  max-height: 40px;
}

.uk-pillar h3 {
  color: var(--rk-amber);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.uk-pillar p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================================
   9c. FLEXIBILITY SECTION
   ============================================================================ */

.flexibility-section {
  background: var(--rk-cream);
  padding: 40px 0;
}

.flexibility-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.flexibility-card {
  padding: 32px;
  border-radius: 12px;
}

.flex-simple {
  border: 2px solid var(--rk-stone-200, #e7e5e4);
  background: var(--rk-white);
}

.flex-power {
  background: var(--rk-amber);
  color: var(--rk-brown);
}

.flexibility-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.flexibility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flexibility-card li {
  font-size: 15px;
  line-height: 1.5;
}

.flexibility-card li::before {
  content: "\2713  ";
  font-weight: 700;
}

.flex-simple li::before {
  color: #22C55E;
}

.flex-power li::before {
  color: var(--rk-brown);
}

.flexibility-punchline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--rk-charcoal);
  margin: 40px 0 24px;
}

/* ============================================================================
   10. PRICING
   ============================================================================ */

.pricing-section {
  padding: 48px 0;
  background: var(--rk-stone-50);
}

.pricing-features-block {
  max-width: 640px;
  margin: 0 auto 40px;
  background: var(--rk-cream-dark, #FEF3C7);
  border-left: 4px solid var(--rk-amber);
  border-radius: 12px;
  padding: 24px 28px;
}

.pricing-features-block-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--rk-brown);
  margin-bottom: 16px;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}

.pricing-features-grid-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--rk-brown);
  line-height: 1.4;
}

.pricing-features-grid-check {
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--rk-white);
  border: 1px solid var(--rk-stone-200);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  background: linear-gradient(135deg, var(--rk-coral), var(--rk-coral-hover));
  color: white;
  border: 2px solid var(--rk-coral);
  transform: scale(1.04);
  box-shadow: var(--shadow-coral);
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured .pricing-btn {
  text-shadow: none;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: var(--shadow-coral-hover);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rk-amber);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-card:not(.featured) .pricing-name {
  color: var(--rk-brown);
}

.pricing-description {
  font-size: 14px;
  opacity: 0.7;
}

.pricing-price-wrap {
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.pricing-card:not(.featured) .pricing-price {
  color: var(--rk-brown);
}

.pricing-currency {
  font-size: 28px;
  vertical-align: super;
}

.pricing-period {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
}

.pricing-staff {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 4px;
}

.pricing-all-included {
  font-size: 13px;
  font-weight: 700;
  color: var(--rk-brown);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-all-included {
  color: var(--rk-amber);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
}

.pricing-card:not(.featured) .pricing-features li {
  color: var(--rk-stone-500);
}

.pricing-check {
  flex-shrink: 0;
  display: inline-flex;
}

.pricing-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: var(--font-body);
}

.pricing-card:not(.featured) .pricing-btn {
  background: var(--rk-stone-50);
  color: var(--rk-brown);
  border: 1px solid var(--rk-stone-200);
}

.pricing-card:not(.featured) .pricing-btn:hover {
  background: var(--rk-coral);
  color: white;
  border-color: var(--rk-coral);
}

.pricing-card.featured .pricing-btn {
  background: white;
  color: var(--rk-coral);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--rk-cream);
  transform: translateY(-1px);
}

.pricing-all-include {
  text-align: center;
  font-size: 14px;
  color: var(--rk-stone-400);
  margin-bottom: 8px;
}

.pricing-enterprise {
  text-align: center;
  font-size: 15px;
  color: var(--rk-stone-500);
}

.pricing-contact-link {
  color: var(--rk-coral);
  text-decoration: none;
  font-weight: 600;
}

.pricing-contact-link:hover {
  text-decoration: underline;
}

.pricing-reassurance {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rk-brown);
}

.pricing-reassurance span::before {
  content: "\2705  ";
}

/* Multi-site section */
.multi-site-section {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #fefce8, #fef9c3);
  border-radius: 16px;
  border: 2px solid var(--rk-amber);
}

.multi-site-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.multi-site-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #166534;
  background: rgba(22, 163, 74, 0.12);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.multi-site-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #854D0E;
  margin-bottom: 8px;
}

.multi-site-desc {
  font-size: 15px;
  color: #A16207;
  line-height: 1.5;
  max-width: 500px;
}

.multi-site-btn {
  padding: 14px 32px;
  background: var(--rk-amber);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-body);
}

.multi-site-btn:hover {
  background: var(--rk-amber-hover);
  transform: translateY(-2px);
}

/* ============================================================================
   11. FAQ
   ============================================================================ */

.faq-section {
  padding: 48px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  background: var(--rk-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  margin-bottom: 0;
  background: transparent;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(251, 113, 133, 0.03);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--rk-brown);
  font-family: var(--font-body);
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--rk-stone-400);
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  color: var(--rk-coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--rk-stone-500);
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 28px;
}

.faq-cta p {
  font-size: 15px;
  color: var(--rk-stone-400);
  margin-bottom: 8px;
}

.faq-contact {
  color: var(--rk-coral);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.faq-contact:hover {
  text-decoration: underline;
}

/* ============================================================================
   12. CTA
   ============================================================================ */

.cta-section {
  padding: 36px 0;
  background: linear-gradient(135deg, var(--rk-charcoal), var(--rk-brown));
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rk-amber);
  color: var(--rk-brown);
  border: none;
  padding: 20px 48px;
  border-radius: 14px;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
  font-family: var(--font-body);
  text-decoration: none;
}

.cta-btn:hover {
  background: var(--rk-amber-hover);
  box-shadow: 0 6px 28px rgba(251, 113, 133, 0.45);
  transform: translateY(-2px);
}

.cta-trust {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

/* ============================================================================
   13. FOOTER
   ============================================================================ */

.landing-footer {
  padding: 48px 0 24px;
  background: var(--rk-charcoal);
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.5;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================================
   14. LEGAL MODALS
   ============================================================================ */

.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.legal-modal {
  background: white;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--rk-stone-200);
}

.legal-modal-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--rk-brown);
}

.legal-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rk-stone-400);
  padding: 4px;
}

.legal-modal-close:hover {
  color: var(--rk-brown);
}

.legal-modal-content {
  padding: 32px;
  overflow-y: auto;
  font-size: 15px;
  color: var(--rk-stone-500);
  line-height: 1.7;
}

.legal-modal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rk-brown);
  margin: 24px 0 12px;
}

.legal-modal-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--rk-brown-light);
  margin: 16px 0 8px;
}

.legal-modal-content ul {
  margin: 8px 0 16px 24px;
}

.legal-modal-content li {
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 13px;
  color: var(--rk-stone-400);
  font-style: italic;
  margin-bottom: 16px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}

.cookie-table th,
.cookie-table td {
  padding: 8px 12px;
  text-align: left;
  border: 1px solid var(--rk-stone-200);
}

.cookie-table th {
  background: var(--rk-stone-50);
  font-weight: 600;
  color: var(--rk-brown);
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: slideUp 0.3s ease forwards;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: #888;
  font-family: 'Inter', sans-serif;
}

.cookie-banner button {
  background: #e8614d;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.cookie-banner button:hover {
  background: #d4553f;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 20px;
  }

  .cookie-banner p {
    flex: 1 1 100%;
  }

  .cookie-banner button {
    margin-left: auto;
  }
}

/* ============================================================================
   15. WAITLIST MODAL
   ============================================================================ */

.waitlist-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.waitlist-modal {
  background: white;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
}

/* ============================================================================
   16. ANIMATIONS
   ============================================================================ */

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.5s; }

/* rk-animate system */
.rk-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rk-animate.rk-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   17. RESPONSIVE - Tablet (1024px)
   ============================================================================ */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .hero-inner {
    gap: 32px;
  }

  .hero-title {
    font-size: 42px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-row-reverse {
    direction: ltr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-line {
    display: none;
  }
}

/* ============================================================================
   17. RESPONSIVE - Mobile (768px)
   ============================================================================ */

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-signin-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(120, 53, 15, 0.12);
    gap: 0;
  }

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

  .nav-links .nav-link {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--rk-stone-100);
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    width: 100%;
    display: block;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-section {
    padding: 0;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
  }

  .hero-subtext {
    display: none;
  }

  .hero-text-panel {
    padding: 24px 20px !important;
    margin: 0 16px -50px;
    width: calc(100% - 32px) !important;
    max-width: none !important;
    flex: none !important;
    background-color: rgba(255, 251, 235, 0.93) !important;
  }

  .hero-inner {
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
  }

  .hero-content {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .hero-eyebrow {
    font-size: 18px;
    font-weight: 800;
  }

  .hero-title {
    font-size: 68px;
    font-weight: 900;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-line {
    text-align: center;
    color: #44240A;
  }

  .hero-app-badges {
    align-items: center;
  }

  .hero-app-badges-links {
    justify-content: center;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    margin-right: 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .feature-row {
    gap: 24px;
    margin-bottom: 40px;
  }

  .feature-text .feature-title {
    font-size: 28px;
  }

  .multi-site-inner {
    flex-direction: column;
    text-align: center;
  }

  .multi-site-desc {
    max-width: none;
  }

  .uk-pillars {
    grid-template-columns: 1fr;
  }

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

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

  .faq-question {
    font-size: 15px;
    padding: 16px 20px;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
  }

  .cta-title {
    font-size: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

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

/* ============================================================================
   17. RESPONSIVE - Small Mobile (480px)
   ============================================================================ */

@media (max-width: 480px) {
  .hero-title {
    font-size: 60px;
    font-weight: 900;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 32px;
  }

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

  .pricing-features-block {
    padding: 20px 20px;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .step-desc {
    max-width: none;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary {
    justify-content: center;
  }

  .btn-secondary {
    justify-content: center;
  }

  .section-inner {
    padding: 0 16px;
  }

  .pain-card {
    padding: 32px 24px;
  }

  .multi-site-section {
    padding: 24px;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* ============================================================================
   18. SIGNUP PAGE
   ============================================================================ */

.signup-page {
  min-height: 100vh;
  background: var(--rk-cream);
  display: flex;
  justify-content: center;
  padding: 32px 24px 48px;
}

.signup-container {
  width: 100%;
  max-width: 640px;
}

.signup-card {
  background: var(--rk-white);
  border: 1px solid var(--rk-stone-100);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--rk-stone-500);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 24px;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.back-btn:hover {
  color: var(--rk-brown);
}

.back-arrow {
  font-size: 16px;
}

/* Logo wordmark */
.signup-logo {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1;
}

.signup-logo-icon {
  width: 0.639em;
  height: 0.639em;
  flex-shrink: 0;
  display: block;
}

.signup-logo-rota,
.signup-logo-keep {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  top: 0.025em;
}

.signup-logo-rota {
  color: var(--rk-coral);
}

.signup-logo-keep {
  color: var(--rk-brown);
}

.signup-header {
  margin-bottom: 24px;
}

.signup-header h1 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--rk-charcoal);
  margin: 0 0 4px;
}

.signup-header p {
  font-size: 14px;
  color: var(--rk-stone-500);
  margin: 0;
}

.plan-selection {
  margin-bottom: 28px;
}

.plan-selection-label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rk-stone-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.plan-card {
  position: relative;
  padding: 20px;
  border: 1.5px solid var(--rk-stone-200);
  border-radius: 12px;
  cursor: pointer;
  background: var(--rk-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.plan-card:hover {
  border-color: var(--rk-stone-300);
  box-shadow: var(--shadow-sm);
}

.plan-card--selected {
  border: 2px solid var(--rk-coral);
  background: #FFF5F6;
}

.plan-card--selected:hover {
  border-color: var(--rk-coral);
  box-shadow: none;
}

.plan-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rk-coral);
  color: var(--rk-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--rk-coral);
  color: var(--rk-white);
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.plan-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--rk-charcoal);
  margin-bottom: 2px;
}

.plan-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--rk-coral);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.plan-card-staff {
  font-size: 13px;
  color: var(--rk-stone-500);
}

.plan-selection-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--rk-stone-500);
  text-align: center;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--rk-brown);
  letter-spacing: 0.01em;
}

.form-group input {
  width: 100%;
  padding: 10px 16px;
  border: 1.5px solid var(--rk-stone-300);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--rk-charcoal);
  background: var(--rk-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: var(--rk-stone-400);
}

.form-group input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--rk-coral);
}

/* URL input group */
.subdomain-input {
  display: flex;
  border: 1.5px solid var(--rk-stone-300);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.subdomain-input:focus-within {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--rk-coral);
}

.subdomain-prefix {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 16px;
  background: var(--rk-stone-50);
  font-size: 14px;
  color: var(--rk-stone-400);
  white-space: nowrap;
  font-family: var(--font-body);
  user-select: none;
  border-right: 1px solid var(--rk-stone-200);
}

.subdomain-input input {
  border: none !important;
  border-radius: 0 !important;
  padding-left: 12px;
  box-shadow: none !important;
}

.subdomain-input input:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.subdomain-status {
  min-height: 20px;
  font-size: 13px;
  margin-top: 4px;
}

.subdomain-status .checking {
  color: var(--rk-stone-400);
}

.subdomain-status .available {
  color: #22C55E;
  font-weight: 500;
}

.subdomain-status .taken {
  color: var(--rk-coral);
  font-weight: 500;
}

/* Password requirement pills */
.pw-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.pw-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--rk-stone-400);
  background: var(--rk-stone-100);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.pw-pill--met {
  color: #15803D;
  background: #DCFCE7;
}

.signup-error {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
}

.signup-email-exists {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 8px;
}

.signup-email-exists-icon {
  margin-bottom: 8px;
}

.signup-email-exists-message {
  color: #78350F;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.signup-email-exists-confirm {
  color: #15803D;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.signup-email-exists-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signup-email-exists-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s;
}

.signup-email-exists-btn:hover {
  opacity: 0.9;
}

.signup-email-exists-btn--login {
  background: #FB7185;
  color: #fff;
  border: none;
}

.signup-email-exists-btn--reset {
  background: transparent;
  color: #78350F;
  border: 1px solid #78350F;
}

.signup-field-checking {
  color: #9CA3AF;
  font-size: 12px;
  margin-top: 4px;
}

.signup-field-error {
  color: #DC2626;
  font-size: 12px;
  margin-top: 4px;
}

.signup-email-exists--inline {
  margin-top: 8px;
  font-size: 13px;
}

.signup-email-info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.signup-email-info--inline {
  margin-top: 8px;
  font-size: 13px;
}

.signup-email-info-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.signup-email-info-message {
  color: #1E40AF;
  font-size: 13px;
  line-height: 1.4;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Signup submit button */
.signup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--rk-white);
  background: var(--rk-coral);
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-coral);
}

.signup-submit:hover:not(:disabled) {
  background: var(--rk-coral-hover);
  box-shadow: var(--shadow-coral-hover);
  transform: translateY(-1px);
}

.signup-submit:active:not(:disabled) {
  transform: translateY(0);
}

.signup-submit:disabled {
  background: var(--rk-stone-300);
  color: var(--rk-stone-500);
  cursor: not-allowed;
  box-shadow: none;
}

.signup-submit--loading {
  pointer-events: none;
}

/* Spinner */
.signup-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--rk-white);
  border-radius: 50%;
  animation: signup-spin 0.6s linear infinite;
  flex-shrink: 0;
}

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

/* Terms footer */
.signup-terms {
  text-align: center;
  font-size: 12px;
  color: var(--rk-stone-400);
  margin: 4px 0 0;
  line-height: 1.5;
}

.signup-terms a {
  color: var(--rk-coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.signup-terms a:hover {
  color: var(--rk-coral-hover);
}

/* Success state */
.signup-success {
  min-height: 100vh;
  background: var(--rk-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.signup-success h2 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--rk-charcoal);
  margin: 0 0 8px;
}

.signup-success p {
  font-size: 15px;
  color: var(--rk-stone-500);
  margin: 0 0 24px;
}

.success-url {
  background: var(--rk-white);
  border: 1.5px solid var(--rk-stone-200);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  font-family: var(--font-body);
}

.success-url .subdomain {
  color: var(--rk-stone-400);
}

.success-url .domain {
  color: var(--rk-charcoal);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 540px) {
  .signup-page {
    padding: 16px 12px 40px;
  }

  .signup-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .signup-header h1 {
    font-size: 22px;
  }

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

/* ============================================================================
   18b. MOBILE STICKY CTA
   ============================================================================ */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--rk-amber);
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-btn {
  flex: 1;
  background: var(--rk-brown);
  color: var(--rk-white);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
}

.mobile-sticky-dismiss {
  background: none;
  border: none;
  color: var(--rk-brown);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  opacity: 0.6;
  line-height: 1;
}

.mobile-sticky-dismiss:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
}

/* ============================================================================
   19. ACCESSIBILITY & PERFORMANCE
   ============================================================================ */

/* Focus styles */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.pricing-btn:focus-visible,
.cta-btn:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--rk-amber);
  outline-offset: 2px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--rk-amber);
  outline-offset: -2px;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Prevent overflow */
html,
body {
  overflow-x: hidden;
}

/* ========================================
   20. BLOG — SHARED
   ======================================== */

.blog-index-page,
.blog-post-page {
  min-height: 100vh;
  background: #FFFBEB;
  font-family: 'Inter', sans-serif;
}

/* Sticky charcoal header */
.blog-header {
  background: #1C1917;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.blog-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-back-btn {
  background: none;
  border: none;
  color: #FFFBEB;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
  opacity: 0.65;
  transition: opacity 0.15s;
}

.blog-back-btn:hover {
  opacity: 1;
}

.blog-header-logo {
  display: flex;
  align-items: center;
}

.blog-main {
  padding: 0 24px 80px;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Category badge — shared between index and post */
.blog-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FB7185;
  background: #FFF1F2;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Footer — shared */
.blog-footer {
  background: #1C1917;
  padding: 24px;
  text-align: center;
}

.blog-footer p {
  color: #78716C;
  font-size: 13px;
  margin: 0;
}

.blog-footer a {
  color: #FB7185;
  text-decoration: none;
}

/* ========================================
   20a. BLOG — INDEX PAGE
   ======================================== */

/* Title section */
.blog-title-section {
  padding: 64px 24px 48px;
}

.blog-page-title {
  font-family: 'Passion One', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #78350F;
  line-height: 1;
  margin: 0 0 16px;
}

.blog-page-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: #FB7185;
  margin-top: 20px;
  border-radius: 2px;
}

.blog-page-sub {
  font-size: 18px;
  color: #92400E;
  max-width: 520px;
  line-height: 1.6;
  margin: 24px 0 0;
}

/* Featured hero card */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E7E5E0;
  text-decoration: none;
  color: inherit;
  margin-bottom: 48px;
  transition: box-shadow 0.25s;
}

.blog-featured:hover {
  box-shadow: 0 16px 48px rgba(120, 53, 15, 0.12);
}

.blog-featured-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #F5F4F2;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-featured:hover .blog-featured-image img {
  transform: scale(1.03);
}

.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #FB7185;
  padding: 5px 14px;
  border-radius: 20px;
}

.blog-featured-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-title {
  font-family: 'Passion One', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #78350F;
  line-height: 1.15;
  margin: 0 0 16px;
}

.blog-featured-excerpt {
  font-size: 16px;
  color: #57534E;
  line-height: 1.7;
  margin: 0 0 20px;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #A8A29E;
  margin-bottom: 24px;
}

.blog-featured-link {
  font-size: 15px;
  font-weight: 600;
  color: #FB7185;
  transition: color 0.15s;
}

.blog-featured:hover .blog-featured-link {
  color: #f43f5e;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E7E5E0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(120, 53, 15, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F5F4F2;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-family: 'Passion One', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #78350F;
  line-height: 1.2;
  margin: 12px 0 10px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #57534E;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-card-date {
  font-size: 12px;
  color: #A8A29E;
}

.blog-card-read-time {
  font-size: 12px;
  color: #A8A29E;
}

/* ========================================
   20b. BLOG — POST PAGE
   ======================================== */

/* Full-width hero — sits OUTSIDE any container */
.blog-post-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #F5F4F2;
}

.blog-post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Meta bar below hero */
.blog-post-meta-bar {
  max-width: 740px;
  margin: 0 auto;
  padding: 32px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #A8A29E;
}

.blog-post-meta-sep {
  color: #D6D3D1;
}

/* Title */
.blog-post-title-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 24px 0 32px;
}

.blog-post-title {
  font-family: 'Passion One', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #78350F;
  line-height: 1.12;
  margin: 0;
}

/* Article body */
.blog-post-body {
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.blog-post-content {
  font-size: 18px;
  line-height: 1.85;
  color: #1C1917;
}

/* Pull quote / intro paragraph */
.blog-post-content .blog-intro {
  font-size: 21px;
  line-height: 1.7;
  color: #78350F;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 4px solid #FB7185;
}

.blog-post-content h2 {
  font-family: 'Passion One', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #78350F;
  margin: 52px 0 18px;
  line-height: 1.2;
  padding-left: 16px;
  border-left: 4px solid #FB7185;
}

.blog-post-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #78350F;
  margin: 36px 0 12px;
}

.blog-post-content p {
  margin: 0 0 22px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content strong {
  font-weight: 600;
  color: #1C1917;
}

.blog-post-content em {
  font-style: italic;
  color: #78716C;
}

/* CTA box */
.blog-post-cta {
  margin-top: 64px;
  padding: 48px 40px;
  background: #1C1917;
  border-radius: 20px;
  text-align: center;
}

.blog-post-cta h3 {
  font-family: 'Passion One', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #FFFBEB;
  margin: 0 0 10px;
}

.blog-post-cta p {
  color: #A8A29E;
  margin: 0 0 28px;
  font-size: 16px;
}

.blog-cta-btn {
  display: inline-block;
  background: #FB7185;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.blog-cta-btn:hover {
  background: #f43f5e;
  transform: translateY(-1px);
}

/* Back to blog link */
.blog-post-back {
  text-align: center;
  padding: 40px 0 0;
}

.blog-post-back a {
  font-size: 15px;
  font-weight: 600;
  color: #FB7185;
  text-decoration: none;
  transition: color 0.15s;
}

.blog-post-back a:hover {
  color: #f43f5e;
}

/* Coming soon placeholder */
.blog-post-coming-soon {
  text-align: center;
  padding: 48px 24px;
  background: #F5F4F2;
  border-radius: 12px;
  border: 1px dashed #D6D3D1;
  margin-top: 16px;
}

.blog-post-coming-soon p {
  font-size: 16px;
  color: #A8A29E;
  font-style: italic;
  margin: 0;
}

/* ========================================
   20c. BLOG — RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    height: 280px;
  }

  .blog-featured-body {
    padding: 32px 28px;
  }

  .blog-featured-title {
    font-size: 30px;
  }

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

  .blog-page-title {
    font-size: 56px;
  }
}

@media (max-width: 640px) {
  .blog-title-section {
    padding: 40px 24px 32px;
  }

  .blog-page-title {
    font-size: 44px;
  }

  .blog-featured-image {
    height: 220px;
  }

  .blog-featured-body {
    padding: 24px 20px;
  }

  .blog-featured-title {
    font-size: 26px;
  }

  .blog-featured-excerpt {
    font-size: 15px;
  }

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

  .blog-post-hero {
    height: 260px;
  }

  .blog-post-title {
    font-size: 34px;
  }

  .blog-post-meta-bar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-post-title-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-post-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-post-content {
    font-size: 16px;
  }

  .blog-post-content .blog-intro {
    font-size: 18px;
  }

  .blog-post-content h2 {
    font-size: 26px;
  }

  .blog-post-cta {
    padding: 32px 24px;
  }
}

/* ============================================================================
   20b. LIFESTYLE STRIP
   ============================================================================ */

/* REPLACE WITH OWN PHOTO */
.lifestyle-strip {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.lifestyle-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.45);
}

.lifestyle-strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.lifestyle-strip-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #FFFBEB;
  text-align: center;
  max-width: 720px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .lifestyle-strip {
    height: 260px;
  }
}

/* ============================================================================
   21. COMPLIANCE BANNER
   ============================================================================ */

.compliance-banner {
  background: var(--rk-brown, #78350F);
  color: var(--rk-cream, #FFFBEB);
  padding: 48px 24px;
  text-align: center;
}

.compliance-banner-inner {
  max-width: 860px;
  margin: 0 auto;
}

.compliance-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFBEB;
  margin-bottom: 20px;
}

.compliance-banner-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #FFFBEB;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.compliance-banner .section-label {
  color: var(--rk-coral, #FB7185);
  margin-bottom: 16px;
  display: block;
}

.compliance-banner .btn-coral {
  background: #FB7185;
  color: #78350F;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .compliance-banner {
    padding: 48px 20px;
  }

  .compliance-banner-title {
    font-size: 1.75rem;
  }
}

/* ============================================================================
   22. APP BADGE — COMING SOON
   ============================================================================ */

.hero-app-badge-disabled {
  pointer-events: none;
}

.hero-app-badge-coming-soon {
  display: block;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #78350F;
  margin-top: 4px;
}

/* ============================================================================
   23. FEATURE GRID — 2-COLUMN LAYOUT
   ============================================================================ */

.feature-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-grid-2col .feature-row-has-image {
  grid-column: 1 / -1;
}

.feature-card-compact {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  user-select: none;
}

.feature-card-compact:hover {
  box-shadow: 0 4px 16px rgba(120, 53, 15, 0.12);
}

.feature-card-compact-body {
  margin-top: 12px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #44301a;
}

.feature-card-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.feature-card-compact--expanded .feature-card-chevron {
  transform: rotate(180deg);
}

.feature-card-compact-icon {
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 36px;
  max-height: 36px;
  flex-shrink: 0;
}

.feature-card-compact .feature-title {
  margin-bottom: 12px;
}

.feature-card-compact .feature-body {
  flex: 1;
  margin-bottom: 20px;
}

.feature-card-compact .feature-tags {
  margin-top: auto;
}

@media (max-width: 768px) {
  .feature-grid-2col {
    grid-template-columns: 1fr;
  }
}

.feature-grid-2col .feature-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-store-badge--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
  position: relative;
  display: inline-block;
}

.app-store-coming-soon {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rk-brown);
  text-align: center;
  margin-top: 4px;
  font-weight: 600;
}

/* ============================================================================
   25. FEATURE IMAGE HOVER EXPAND
   ============================================================================ */

.feature-image {
  transition: max-height 0.4s ease, transform 0.4s ease;
  cursor: zoom-in;
}

.feature-image:hover {
  max-height: 150vh;
  transform: scale(1.15);
  transform-origin: center center;
}

.feature-image img {
  transition: max-height 0.4s ease;
}

.feature-image:hover img {
  max-height: 150vh;
}

.feature-row {
  transition: z-index 0s;
  position: relative;
}

.feature-row:hover {
  z-index: 10;
}

.feature-row .feature-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.feature-row .feature-text {
  flex: 1;
  padding-top: 16px;
}

/* ============================================================================
   COMPREHENSIVE MOBILE OVERRIDES
   ============================================================================ */

@media (max-width: 768px) {

  /* HERO */
  .hero-subtext { display: none; }

  .hero-text-panel {
    padding: 20px !important;
    margin: 16px 16px -50px;
    width: calc(100% - 32px) !important;
    max-width: none !important;
    flex: none !important;
  }

  .hero-section {
    min-height: 100svh;
    align-items: flex-end;
    display: flex;
    padding-bottom: 0;
  }

  .hero-inner {
    justify-content: flex-end;
  }

  .hero-eyebrow {
    font-size: 18px;
    font-weight: 800;
  }

  .hero-title {
    font-size: 68px;
    font-weight: 900;
  }

  .hero-trust-line {
    color: #44240A;
  }

  /* Hide app store badges on mobile hero */
  .hero-app-badges {
    display: none;
  }

  /* Hide secondary CTA on mobile */
  .hero-secondary-cta {
    display: none;
  }

  /* PAIN POINTS */
  .pain-cards {
    flex-direction: column;
    gap: 16px;
  }

  .pain-card {
    width: 100%;
  }

  /* LIFESTYLE STRIPS */
  .lifestyle-strip-quote {
    font-size: 1.1rem;
    padding: 0 16px;
  }

  .lifestyle-strip {
    height: 260px;
  }

  /* FEATURE SHOWCASE — full width cards */
  .feature-row {
    flex-direction: column;
    gap: 16px;
  }

  .feature-row .feature-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    max-height: 220px;
  }

  .feature-row .feature-text {
    padding-top: 0;
  }

  .feature-image:hover {
    max-height: 220px;
    transform: none;
  }

  .feature-image:hover img {
    max-height: 220px;
  }

  .feature-image {
    cursor: default;
  }

  /* COMPACT FEATURE CARDS — force 1 column */
  .feature-grid-2col {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  /* COST COMPARISON */
  .cost-compare-section .section-inner {
    padding: 0 16px;
  }

  /* HOW IT WORKS */
  .how-steps {
    flex-direction: column;
    gap: 24px;
  }

  /* UK FIRST */
  .uk-pillars {
    flex-direction: column;
    gap: 16px;
  }

  .uk-pillar {
    width: 100%;
  }

  /* PRICING */
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
  }

  .pricing-card {
    width: 100%;
    max-width: none;
  }

  /* Make the featured/popular card span full width */
  .pricing-card--featured,
  .pricing-card--popular,
  .pricing-card.featured {
    grid-column: 1 / -1;
  }

  /* FAQ tap targets */
  .faq-question {
    padding: 16px 0;
    font-size: 1rem;
  }

  .faq-section .section-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* FLEXIBILITY SECTION */
  .flexibility-cards {
    flex-direction: column;
    gap: 16px;
  }

  /* GENERAL section padding reduction */
  .section-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

}
