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

/* Font imports - Plus Jakarta Sans (bold headlines) + DM Sans (warm body text) */
@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&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-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -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 */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================================
   LANDING PAGE BASE
   ============================================================================ */

.landing-page {
  min-height: 100vh;
  background: var(--rk-cream);
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--rk-brown);
  line-height: 1.6;
}

/* ============================================================================
   HEADER / NAVIGATION
   ============================================================================ */

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease-out-expo);
}

.landing-header.scrolled {
  background: rgba(255, 251, 235, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(120, 53, 15, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

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

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

.nav-link {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--rk-brown);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--rk-amber-hover);
}

.nav-cta {
  margin-left: 16px;
  padding: 12px 24px;
  background: var(--rk-coral);
  color: var(--rk-white);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-coral);
}

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

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--rk-cream);
    padding: 24px;
    border-bottom: 1px solid var(--rk-stone-200);
    gap: 8px;
  }

  .nav-links.open .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated background orbs */
.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  /* Staggered children animations */
}

/* Base keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes underlineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--rk-white);
  border: 1px solid var(--rk-stone-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rk-brown-light);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s backwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--rk-coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite, glow 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(251, 113, 133, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--rk-charcoal);
  margin: 0 0 24px 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s backwards;
}

.hero-title-accent {
  color: var(--rk-coral);
  position: relative;
  display: inline-block;
  animation: colorPop 0.6s var(--ease-out-expo) 0.8s backwards;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(251, 113, 133, 0.3), rgba(245, 158, 11, 0.3));
  border-radius: 4px;
  z-index: -1;
  transform-origin: left;
  animation: underlineGrow 0.6s var(--ease-out-expo) 1s backwards;
}

@keyframes colorPop {
  from {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--rk-brown-light);
  margin: 0 0 40px 0;
  max-width: 480px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s backwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s backwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--rk-coral);
  color: var(--rk-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-coral);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  background: transparent;
  color: var(--rk-brown);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--rk-stone-300);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--rk-amber);
  background: rgba(245, 158, 11, 0.05);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rk-stone-200);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--rk-stone-500);
  animation: fadeInUp 0.6s var(--ease-out-expo) backwards;
}

.hero-trust-item:nth-child(1) { animation-delay: 0.7s; }
.hero-trust-item:nth-child(2) { animation-delay: 0.8s; }
.hero-trust-item:nth-child(3) { animation-delay: 0.9s; }

.hero-trust-check {
  width: 18px;
  height: 18px;
  background: var(--rk-amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rk-amber-hover);
  font-size: 10px;
  animation: checkPop 0.4s var(--ease-out-expo) backwards;
}

.hero-trust-item:nth-child(1) .hero-trust-check { animation-delay: 0.9s; }
.hero-trust-item:nth-child(2) .hero-trust-check { animation-delay: 1.0s; }
.hero-trust-item:nth-child(3) .hero-trust-check { animation-delay: 1.1s; }

@keyframes checkPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: heroVisualIn 1.2s var(--ease-out-expo) 0.3s backwards;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(60px) rotateX(10deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

.hero-screenshot {
  width: 100%;
  border-radius: 16px;
  box-shadow:
    0 25px 50px -12px rgba(120, 53, 15, 0.15),
    0 0 0 1px rgba(120, 53, 15, 0.05);
  border: 1px solid rgba(120, 53, 15, 0.1);
  background: var(--rk-white);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.hero-visual:hover .hero-screenshot {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 35px 60px -15px rgba(120, 53, 15, 0.2),
    0 0 0 1px rgba(120, 53, 15, 0.05);
}

.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating elements */
.hero-float {
  position: absolute;
  background: var(--rk-white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow:
    0 20px 40px -10px rgba(120, 53, 15, 0.15),
    0 0 0 1px rgba(120, 53, 15, 0.05);
  border: 1px solid var(--rk-stone-100);
  animation: floatIn 0.8s var(--ease-out-expo) backwards, floatBob 6s ease-in-out infinite;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 25px 50px -12px rgba(120, 53, 15, 0.2),
    0 0 0 1px rgba(245, 158, 11, 0.2);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-14px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(-1deg); }
}

.hero-float-1 {
  top: 15%;
  left: -50px;
  animation-delay: 0.8s, 0s;
}

.hero-float-2 {
  bottom: 15%;
  right: -50px;
  animation-delay: 1s, -3s;
}

.hero-float-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.hero-float-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--rk-stone-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hero-float-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--rk-charcoal);
  background: linear-gradient(135deg, var(--rk-charcoal), var(--rk-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-float {
    display: none;
  }
}

/* ============================================================================
   PROBLEM/SOLUTION SECTION
   ============================================================================ */

.problem-section {
  padding: 120px 24px;
  background: var(--rk-white);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rk-stone-200), transparent);
}

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

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

.section-label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--rk-coral-light);
  color: var(--rk-coral-hover);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--rk-charcoal);
  margin: 0 0 16px 0;
}

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

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

.problem-card {
  background: var(--rk-cream);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

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

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rk-coral), var(--rk-amber));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-old {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--rk-stone-500);
  margin-bottom: 16px;
  text-decoration: line-through;
  opacity: 0.7;
}

.problem-old-icon {
  width: 20px;
  height: 20px;
  background: var(--rk-stone-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.problem-arrow {
  font-size: 24px;
  color: var(--rk-amber);
  margin-bottom: 16px;
}

.problem-new {
  font-size: 18px;
  font-weight: 700;
  color: var(--rk-charcoal);
  margin-bottom: 12px;
}

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

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

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features-section {
  padding: 120px 24px;
  background: var(--rk-cream);
}

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

.feature-card {
  background: var(--rk-white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--rk-stone-200);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, var(--rk-cream), rgba(245, 158, 11, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

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

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rk-charcoal);
  margin: 0 0 12px 0;
}

.feature-desc {
  font-size: 15px;
  color: var(--rk-stone-500);
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   SOCIAL PROOF SECTION
   ============================================================================ */

.social-section {
  padding: 100px 24px;
  background: var(--rk-charcoal);
  color: var(--rk-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(251, 113, 133, 0.1) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

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

.social-inner {
  position: relative;
}

.social-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}

.social-subtitle {
  font-size: 18px;
  color: var(--rk-stone-400);
  margin: 0 0 48px 0;
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

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

.social-stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--rk-coral);
  margin-bottom: 8px;
}

.social-stat-label {
  font-size: 14px;
  color: var(--rk-stone-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-quote {
  max-width: 700px;
  margin: 64px auto 0;
  font-size: 20px;
  font-style: italic;
  line-height: 1.8;
  color: var(--rk-stone-300);
}

.social-quote-author {
  margin-top: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--rk-stone-400);
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */

.pricing-section {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--rk-white) 0%, var(--rk-cream) 100%);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(251, 113, 133, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 50px -12px rgba(120, 53, 15, 0.15),
    0 0 0 1px rgba(245, 158, 11, 0.1);
  border-color: var(--rk-amber);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--rk-charcoal) 0%, #2d2520 100%);
  color: var(--rk-white);
  border: 2px solid var(--rk-coral);
  transform: scale(1.03);
  box-shadow:
    0 30px 60px -15px rgba(251, 113, 133, 0.3),
    0 0 0 1px rgba(251, 113, 133, 0.2);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-12px);
  box-shadow:
    0 35px 70px -15px rgba(251, 113, 133, 0.35),
    0 0 0 1px rgba(251, 113, 133, 0.3);
  border-color: var(--rk-coral);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rk-coral), #e11d48);
  color: var(--rk-white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(251, 113, 133, 0.4);
  animation: popularPulse 2s ease-in-out infinite;
}

@keyframes popularPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(251, 113, 133, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(251, 113, 133, 0.6); }
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(145deg, var(--rk-cream), rgba(245, 158, 11, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(-5deg);
}

.pricing-card.featured .pricing-icon {
  background: linear-gradient(145deg, rgba(251, 113, 133, 0.2), rgba(251, 113, 133, 0.1));
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rk-charcoal);
  margin-bottom: 6px;
}

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

.pricing-description {
  font-size: 13px;
  color: var(--rk-stone-500);
  line-height: 1.4;
}

.pricing-card.featured .pricing-description {
  color: var(--rk-stone-400);
}

.pricing-price-wrap {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--rk-stone-200);
  border-bottom: 1px solid var(--rk-stone-200);
}

.pricing-card.featured .pricing-price-wrap {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--rk-charcoal);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

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

.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--rk-amber);
}

.pricing-card.featured .pricing-currency {
  color: var(--rk-coral);
}

.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--rk-stone-500);
  margin-left: 4px;
}

.pricing-card.featured .pricing-period {
  color: var(--rk-stone-400);
}

.pricing-staff {
  font-size: 14px;
  font-weight: 600;
  color: var(--rk-amber);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--rk-amber-light);
  border-radius: 100px;
}

.pricing-card.featured .pricing-staff {
  background: rgba(251, 113, 133, 0.2);
  color: var(--rk-coral);
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--rk-brown-light);
  line-height: 1.4;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--rk-amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-check {
  background: rgba(251, 113, 133, 0.3);
}

.pricing-btn {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  background: var(--rk-cream);
  color: var(--rk-charcoal);
  border: 2px solid var(--rk-stone-300);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-btn svg {
  transition: transform 0.3s ease;
}

.pricing-btn:hover {
  border-color: var(--rk-amber);
  background: var(--rk-amber-light);
  transform: translateY(-2px);
}

.pricing-btn:hover svg {
  transform: translateX(4px);
}

.pricing-card.featured .pricing-btn {
  background: var(--rk-coral);
  color: var(--rk-white);
  border: none;
  box-shadow: 0 8px 20px -6px rgba(251, 113, 133, 0.5);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--rk-coral-hover);
  box-shadow: 0 12px 28px -6px rgba(251, 113, 133, 0.6);
  transform: translateY(-2px);
}

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

.pricing-compare {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 36px;
  background: var(--rk-white);
  border-radius: 20px;
  border: 1px solid var(--rk-stone-200);
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.pricing-compare-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--rk-cream), var(--rk-amber-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-compare-text {
  text-align: left;
  font-size: 15px;
  color: var(--rk-brown-light);
  line-height: 1.5;
}

.pricing-compare-text strong {
  display: block;
  color: var(--rk-charcoal);
  font-size: 16px;
  margin-bottom: 4px;
}

.pricing-note {
  font-size: 14px;
  color: var(--rk-stone-500);
  margin: 0;
}

.pricing-note a {
  color: var(--rk-coral);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.pricing-note a:hover {
  color: var(--rk-coral-hover);
  text-decoration: underline;
}

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

  .pricing-card.featured {
    transform: none;
    order: -1;
    grid-column: span 2;
  }

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

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    grid-column: span 1;
  }

  .pricing-compare {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

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

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-section {
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--rk-coral) 0%, var(--rk-coral-hover) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--rk-white);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background: var(--rk-white);
  color: var(--rk-coral);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.landing-footer {
  padding: 80px 24px 40px;
  background: var(--rk-charcoal);
  color: var(--rk-white);
}

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

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text .keep {
  color: var(--rk-white);
}

.footer-tagline {
  font-size: 15px;
  color: var(--rk-stone-400);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rk-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--rk-coral);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rk-white);
  margin: 0 0 20px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--rk-stone-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--rk-white);
}

.footer-column li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-active {
  color: var(--rk-white) !important;
}

.footer-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--rk-coral);
  color: var(--rk-white);
}

.footer-badge-soon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--rk-stone-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--rk-stone-500);
}

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

.footer-legal a {
  color: var(--rk-stone-500);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--rk-white);
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }

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

/* ============================================================================
   SIGNUP PAGE STYLES
   ============================================================================ */

.signup-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--rk-cream) 0%, #FEF3C7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.signup-page::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.signup-page::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.signup-container {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 20px 25px -5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  animation: signupSlideUp 0.5s ease-out;
}

@keyframes signupSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Back Button */
.signup-container .back-btn,
.signup-page .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--rk-stone-500);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.signup-page .back-btn:hover {
  color: var(--rk-coral);
}

.signup-page .back-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.signup-page .back-btn:hover .back-arrow {
  transform: translateX(-3px);
}

/* Header */
.signup-header {
  text-align: center;
  margin-bottom: 32px;
}

.signup-header h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--rk-charcoal);
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

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

/* Form Styles */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.form-group input {
  padding: 14px 16px;
  border: 2px solid #E7E5E4;
  border-radius: 12px;
  font-size: 15px;
  color: var(--rk-charcoal);
  background: #FAFAF9;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input::placeholder {
  color: #A8A29E;
}

.form-group input:hover {
  border-color: #D6D3D1;
  background: white;
}

.form-group input:focus {
  border-color: var(--rk-coral);
  background: white;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.1);
}

/* Subdomain Input */
.subdomain-input {
  display: flex;
  align-items: stretch;
  border: 2px solid #E7E5E4;
  border-radius: 12px;
  background: #FAFAF9;
  overflow: hidden;
  transition: all 0.2s ease;
}

.subdomain-input:hover {
  border-color: #D6D3D1;
  background: white;
}

.subdomain-input:focus-within {
  border-color: var(--rk-coral);
  background: white;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.1);
}

.subdomain-input input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--rk-charcoal);
  outline: none;
  min-width: 0;
}

.subdomain-input input::placeholder {
  color: #A8A29E;
}

.subdomain-suffix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #F5F5F4;
  color: var(--rk-stone-500);
  font-size: 14px;
  font-weight: 500;
  border-left: 2px solid #E7E5E4;
  white-space: nowrap;
}

/* Subdomain Status */
.subdomain-status {
  min-height: 20px;
  margin-top: 6px;
  font-size: 13px;
}

.subdomain-status .checking {
  color: var(--rk-amber);
  display: flex;
  align-items: center;
  gap: 6px;
}

.subdomain-status .checking::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid var(--rk-amber);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

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

.subdomain-status .taken {
  color: #EF4444;
  font-weight: 500;
}

/* Error Message */
.signup-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: 14px 16px;
  color: #DC2626;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.signup-error::before {
  content: '⚠';
  font-size: 16px;
}

/* Submit Button */
.signup-form .btn-primary.btn-full {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--rk-coral) 0%, #F87171 100%);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(251, 113, 133, 0.35);
}

.signup-form .btn-primary.btn-full:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 113, 133, 0.45);
}

.signup-form .btn-primary.btn-full:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Terms */
.signup-terms {
  text-align: center;
  font-size: 13px;
  color: var(--rk-stone-500);
  margin-top: 8px;
}

.signup-terms a {
  color: var(--rk-coral);
  text-decoration: none;
  font-weight: 500;
}

.signup-terms a:hover {
  text-decoration: underline;
}

/* Success State */
.signup-success {
  text-align: center;
  padding: 40px;
  animation: signupSlideUp 0.5s ease-out;
}

.signup-success .success-icon {
  font-size: 64px;
  margin-bottom: 24px;
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.signup-success h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--rk-charcoal);
  margin: 0 0 8px 0;
}

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

.success-url {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.success-url .subdomain {
  font-size: 18px;
  font-weight: 700;
  color: var(--rk-charcoal);
}

.success-url .domain {
  font-size: 18px;
  color: var(--rk-stone-500);
}

.signup-success .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rk-coral) 0%, #F87171 100%);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(251, 113, 133, 0.35);
}

.signup-success .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 113, 133, 0.45);
}

/* Mobile Responsive */
@media (max-width: 540px) {
  .signup-container {
    padding: 32px 24px;
    border-radius: 20px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .subdomain-suffix {
    font-size: 12px;
    padding: 0 12px;
  }
}

/* ============================================================================
   UTILITY ANIMATIONS
   ============================================================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

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

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================================================
   LEGAL MODALS
   ============================================================================ */

.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.legal-modal {
  background: var(--rk-white);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s var(--ease-out-expo);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.legal-modal-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--rk-brown);
  margin: 0;
}

.legal-modal-close {
  background: var(--rk-stone-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rk-stone-500);
  transition: all 0.2s ease;
}

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

.legal-modal-content {
  padding: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--rk-brown-light);
}

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

.legal-modal-content h3:first-of-type {
  margin-top: 0;
}

.legal-modal-content h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--rk-brown);
  margin: 24px 0 12px 0;
}

.legal-modal-content p {
  margin: 0 0 16px 0;
}

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

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

.legal-modal-content strong {
  color: var(--rk-brown);
  font-weight: 600;
}

.legal-updated {
  display: inline-block;
  background: var(--rk-cream);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--rk-brown-light);
  margin-bottom: 24px;
}

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

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

.cookie-table th {
  background: var(--rk-cream);
  font-weight: 600;
  color: var(--rk-brown);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-table td {
  color: var(--rk-brown-light);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  .legal-modal-overlay {
    padding: 20px 12px;
  }

  .legal-modal-header {
    padding: 20px;
  }

  .legal-modal-header h2 {
    font-size: 20px;
  }

  .legal-modal-content {
    padding: 24px 20px;
    font-size: 14px;
  }

  .legal-modal-content h3 {
    font-size: 16px;
  }

  .cookie-table {
    font-size: 12px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-section {
  padding: 100px 24px;
  background: var(--rk-white);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--rk-cream);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
  border: 2px solid transparent;
}

.faq-item:hover {
  border-color: var(--rk-amber-light);
}

.faq-item.open {
  border-color: var(--rk-amber);
  background: var(--rk-white);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--rk-brown);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--rk-coral);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rk-amber-light);
  border-radius: 50%;
  color: var(--rk-amber-hover);
  transition: all 0.3s var(--ease-out-expo);
}

.faq-item.open .faq-icon {
  background: var(--rk-coral);
  color: var(--rk-white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

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

.faq-answer p {
  padding: 0 24px 24px 24px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--rk-brown-light);
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rk-stone-200);
}

.faq-cta p {
  font-size: 15px;
  color: var(--rk-stone-500);
  margin: 0 0 12px 0;
}

.faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--rk-coral);
  text-decoration: none;
  padding: 12px 24px;
  background: var(--rk-coral-light);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.faq-contact:hover {
  background: var(--rk-coral);
  color: var(--rk-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

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

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

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-icon svg {
    width: 16px;
    height: 16px;
  }
}
