/* 
  Pawyar Landing Page Styling
  Aesthetic: Geniestudio Theme (Light, airy, friendly, premium)
  Designed for maximum legibility in Persian (RTL) & extremely high visual appeal.
*/

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors from DESIGN.md */
  --color-midnight-ink: #181d27;
  --color-arctic-mist: #fafdff;
  --color-canvas-white: #ffffff;
  --color-obsidian: #0a0d12;
  --color-silver-pine: #535862;
  --color-ash-gray: #93979f;
  --color-sky-wash: #ebf5ff;
  --color-ghostly-blue: #cce7ff;
  --color-electric-blue: #0069e0;
  --color-lavender-mist: #f1e6ff;
  --color-mint-glaze: #d3f6e3;
  --color-sunburst-yellow: #bb9915;
  --color-deep-violet: #9552e0;
  --color-ocean-spray: #4fbeff;
  --color-zesty-orange: #f26110;
  --color-luminous-blue: #0099ff;

  /* Gradients from DESIGN.md */
  --gradient-whisper-fade-yellow: linear-gradient(135deg, rgb(255, 249, 224) 0%, rgb(255, 236, 163) 100%);
  --gradient-whisper-fade-violet: linear-gradient(135deg, rgb(244, 235, 255) 0%, rgb(228, 204, 255) 100%);
  --gradient-whisper-fade-blue: linear-gradient(135deg, rgb(229, 246, 255) 0%, rgb(194, 233, 255) 100%);
  --gradient-whisper-fade-orange: linear-gradient(135deg, rgb(255, 242, 235) 0%, rgb(255, 209, 184) 100%);
  --gradient-hero-blob: linear-gradient(135deg, rgba(204, 231, 255, 0.4) 0%, rgba(241, 230, 255, 0.4) 100%);

  /* Typography Fonts */
  --font-persian: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-latin: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing Scale */
  --spacing-8: 8px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-56: 56px;
  --spacing-64: 64px;
  --spacing-80: 80px;
  --spacing-88: 88px;
  --spacing-120: 120px;
  --spacing-160: 160px;

  /* Border Radii */
  --radius-cards: 32px;
  --radius-icons: 16px;
  --radius-badges: 90px;
  --radius-images: 16px;
  --radius-buttons: 32px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-lg: rgba(4, 69, 144, 0.08) 0px 14px 20px 4px;
  --shadow-subtle: rgba(10, 13, 18, 0.04) 0px 1px 2px 0px, rgba(10, 13, 18, 0.03) 0px 0px 0px 1px;
  --shadow-btn: rgba(18, 29, 39, 0.15) 0px 4px 12px;
  --shadow-mockup: rgba(10, 30, 50, 0.12) 0px 24px 48px -8px;

  /* Layout Gaps */
  --section-gap: 80px;
  --element-gap: 24px;
  --card-padding: 40px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font-persian);
  background-color: var(--color-sky-wash);
  color: var(--color-silver-pine);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Enforce font on all interactive elements */
button, input, select, textarea, .btn-primary, .btn-secondary, .nav-link {
  font-family: var(--font-persian) !important;
}

/* Icon Container Styling */
.icon-svg {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-obsidian);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-24);
  position: relative;
}

/* Background Decorative Blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-whisper-fade-blue);
  top: -100px;
  left: -100px;
  opacity: 0.6;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-whisper-fade-violet);
  bottom: 10%;
  right: -50px;
  opacity: 0.5;
}

/* Glassmorphic Top Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 231, 255, 0.4);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(4, 69, 144, 0.04) 0px 4px 12px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-obsidian);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--spacing-32);
}

.nav-link {
  text-decoration: none;
  color: var(--color-silver-pine);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
  padding: var(--spacing-8) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-electric-blue);
  border-radius: var(--radius-badges);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

.mobile-only-action {
  display: none;
}

/* Primary buttons based on DESIGN.md components */
.btn-primary {
  background-color: var(--color-midnight-ink);
  color: var(--color-canvas-white);
  border: none;
  border-radius: var(--radius-buttons);
  padding: 12px var(--spacing-32);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-btn);
  font-family: var(--font-persian);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--color-obsidian);
  box-shadow: rgba(24, 29, 39, 0.2) 0px 8px 20px;
}

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

.btn-header {
  border-radius: 36px;
  padding: 8px var(--spacing-24);
  font-size: 14px;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-obsidian);
  border: 1px solid rgba(204, 231, 255, 0.6);
  border-radius: var(--radius-buttons);
  padding: 12px var(--spacing-32);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-persian);
}

.btn-secondary:hover {
  background-color: var(--color-canvas-white);
  border-color: var(--color-electric-blue);
  color: var(--color-electric-blue);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--color-midnight-ink);
  border-radius: var(--radius-badges);
  transition: all 0.3s ease;
}

/* Sections Base */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-white {
  background-color: var(--color-canvas-white);
}

.section-sky {
  background-color: var(--color-sky-wash);
}

/* Section Titles */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
  z-index: 1;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-canvas-white);
  color: var(--color-electric-blue);
  border: 1px solid rgba(0, 105, 224, 0.12);
  padding: 6px 16px;
  border-radius: var(--radius-badges);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--spacing-16);
  box-shadow: var(--shadow-subtle);
  max-width: 100%;
  text-align: right;
  line-height: 1.4;
}

.section-title {
  font-size: 32px;
  color: var(--color-obsidian);
  margin-bottom: var(--spacing-16);
  line-height: 1.25;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-silver-pine);
  font-weight: 400;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  padding-top: 130px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--spacing-48);
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  background-color: var(--color-arctic-mist);
  color: var(--color-electric-blue);
  border: 1px solid rgba(0, 105, 224, 0.15);
}

.hero-title {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: var(--spacing-24);
  color: var(--color-obsidian);
}

.hero-title span {
  display: block;
  font-size: 20px;
  color: var(--color-electric-blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-silver-pine);
  margin-bottom: var(--spacing-40);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-16);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.visual-backdrop {
  position: absolute;
  width: 110%;
  height: 110%;
  background: var(--gradient-hero-blob);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  filter: blur(10px);
  animation: blobby 18s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes blobby {
  0% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: rotate(0deg) scale(0.95); }
  50% { border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%; transform: rotate(60deg) scale(1.05); }
  100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: rotate(120deg) scale(0.95); }
}

.mockup-container {
  width: 100%;
  max-width: 300px;
  background-color: var(--color-canvas-white);
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-mockup);
  border: 1px solid rgba(204, 231, 255, 0.5);
  transform: rotate(-3deg);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}

.mockup-container:hover {
  transform: rotate(0deg) translateY(-8px);
}

.mockup-screen {
  background-color: #f7fafc;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

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

/* Decorative Organic Float Elements */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: var(--spacing-16);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(204, 231, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floaty 6s ease-in-out infinite alternate;
}

.float-1 {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.float-2 {
  bottom: 12%;
  left: -15px;
  animation-delay: 2s;
}

@keyframes floaty {
  0% { transform: translateY(0px) rotate(1deg); }
  100% { transform: translateY(-12px) rotate(-1deg); }
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.float-icon.blue { background: var(--color-sky-wash); color: var(--color-electric-blue); }
.float-icon.green { background: var(--color-mint-glaze); color: #10b981; }

.float-text p {
  font-size: 11px;
  color: var(--color-silver-pine);
  margin-bottom: 2px;
}

.float-text h4 {
  font-size: 13px;
  color: var(--color-obsidian);
  font-weight: 700;
}

/* Feature Grid (Core Service: Boarding) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-24);
}

/* Feature Card from DESIGN.md */
.feature-card {
  background-color: var(--color-arctic-mist);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  border: 1px solid rgba(204, 231, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  background-color: var(--color-canvas-white);
  border-color: rgba(0, 105, 224, 0.2);
  box-shadow: var(--shadow-lg);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-icons);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--spacing-24);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-subtle);
}

.feature-icon-box.blue { color: var(--color-electric-blue); background-color: var(--color-sky-wash); }
.feature-icon-box.purple { color: var(--color-deep-violet); background-color: var(--color-lavender-mist); }
.feature-icon-box.orange { color: var(--color-zesty-orange); background-color: rgba(255, 242, 235, 1); }
.feature-icon-box.yellow { color: var(--color-sunburst-yellow); background-color: rgba(255, 249, 224, 1); }

.feature-title {
  font-size: 20px;
  color: var(--color-obsidian);
  margin-bottom: var(--spacing-12);
  font-weight: 700;
}

.feature-desc {
  font-size: 14px;
  color: var(--color-silver-pine);
  line-height: 1.6;
}

/* Super App Coming Soon Section */
.super-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-24);
}

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

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

.super-card {
  background-color: var(--color-canvas-white);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  border: 1px solid rgba(204, 231, 255, 0.3);
  box-shadow: var(--shadow-subtle);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

/* Custom background hover gradients */
.super-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.super-card.grooming:hover::before { background: var(--gradient-whisper-fade-violet); opacity: 0.8; }
.super-card.vet:hover::before { background: var(--gradient-whisper-fade-blue); opacity: 0.8; }
.super-card.taxi:hover::before { background: var(--gradient-whisper-fade-yellow); opacity: 0.8; }
.super-card.adoption:hover::before { background: var(--gradient-whisper-fade-orange); opacity: 0.8; }
.super-card.health:hover::before { background: var(--gradient-whisper-fade-blue); opacity: 0.8; }
.super-card.shop:hover::before { background: var(--gradient-whisper-fade-violet); opacity: 0.8; }

.super-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-24);
}

.super-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-badges);
  letter-spacing: 0.5px;
  background-color: rgba(242, 97, 16, 0.08);
  color: var(--color-zesty-orange);
  border: 1px solid rgba(242, 97, 16, 0.15);
}

.super-card:hover .super-badge {
  background-color: var(--color-zesty-orange);
  color: var(--color-canvas-white);
  border-color: var(--color-zesty-orange);
}

.super-title {
  font-size: 19px;
  color: var(--color-obsidian);
  margin-bottom: var(--spacing-12);
  font-weight: 700;
}

.super-desc {
  font-size: 14px;
  color: var(--color-silver-pine);
  line-height: 1.6;
}

/* How It Works Section */
.tab-container {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  background-color: rgba(204, 231, 255, 0.3);
  padding: 6px;
  border-radius: var(--radius-buttons);
  margin-bottom: 56px;
  border: 1px solid rgba(204, 231, 255, 0.5);
  backdrop-filter: blur(8px);
}

.tab-btn {
  flex: 1;
  max-width: 240px;
  background: transparent;
  border: none;
  padding: 12px var(--spacing-24);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-persian);
  color: var(--color-silver-pine);
  border-radius: var(--radius-buttons);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn.active {
  background-color: var(--color-midnight-ink);
  color: var(--color-canvas-white);
  box-shadow: var(--shadow-btn);
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--spacing-32);
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  right: var(--spacing-32);
  left: var(--spacing-32);
  height: 2px;
  background-color: rgba(204, 231, 255, 0.4);
  z-index: 0;
}

@media (max-width: 768px) {
  .steps-timeline::before {
    display: none;
  }
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background-color: var(--color-canvas-white);
  border: 2px solid var(--color-electric-blue);
  color: var(--color-electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto var(--spacing-24) auto;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
  font-family: var(--font-latin);
}

.step-item:hover .step-number {
  background-color: var(--color-electric-blue);
  color: var(--color-canvas-white);
  transform: scale(1.1);
  box-shadow: rgba(0, 105, 224, 0.2) 0px 8px 16px;
}

.step-title {
  font-size: 16px;
  color: var(--color-obsidian);
  margin-bottom: var(--spacing-12);
  font-weight: 700;
}

.step-desc {
  font-size: 13px;
  color: var(--color-silver-pine);
  line-height: 1.6;
}

/* Why Pawyar Value Propositions */
.why-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing-64);
}

.why-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-24);
}

.why-mini-card {
  background-color: var(--color-arctic-mist);
  border-radius: var(--radius-cards);
  padding: var(--spacing-32);
  border: 1px solid rgba(204, 231, 255, 0.3);
  text-align: center;
}

.why-mini-card.offset {
  transform: translateY(24px);
}

.why-mini-icon {
  font-size: 32px;
  margin-bottom: var(--spacing-16);
}

.why-mini-card h4 {
  font-size: 16px;
  color: var(--color-obsidian);
  margin-bottom: 8px;
}

.why-mini-card p {
  font-size: 13px;
  color: var(--color-silver-pine);
  line-height: 1.5;
}

.why-list {
  list-style: none;
}

.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-16);
  margin-bottom: var(--spacing-24);
}

.why-list-bullet {
  width: 24px;
  height: 24px;
  background-color: var(--color-sky-wash);
  color: var(--color-electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

.why-list-content h3 {
  font-size: 17px;
  color: var(--color-obsidian);
  margin-bottom: 6px;
  font-weight: 700;
}

.why-list-content p {
  font-size: 14px;
  color: var(--color-silver-pine);
  line-height: 1.6;
}

/* Host B2B Call To Action Banner */
.host-cta-banner {
  background-color: var(--color-midnight-ink);
  border-radius: var(--radius-cards);
  padding: 64px;
  color: var(--color-canvas-white);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.host-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 105, 224, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.host-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--spacing-48);
}

.host-banner-text h2 {
  color: var(--color-canvas-white);
  font-size: 30px;
  margin-bottom: var(--spacing-16);
}

.host-banner-text p {
  color: var(--color-ash-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.host-banner-action {
  text-align: left;
}

.host-banner-action .btn-primary {
  background-color: var(--color-canvas-white);
  color: var(--color-obsidian);
  box-shadow: none;
}

.host-banner-action .btn-primary:hover {
  background-color: var(--color-sky-wash);
  transform: translateY(-2px);
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-arctic-mist);
  border-radius: 20px;
  margin-bottom: var(--spacing-16);
  border: 1px solid rgba(204, 231, 255, 0.4);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 105, 224, 0.25);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  width: 100%;
  padding: 24px var(--spacing-32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--font-persian);
}

.faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-obsidian);
}

.faq-arrow {
  font-size: 12px;
  color: var(--color-silver-pine);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 var(--spacing-32) 24px var(--spacing-32);
  font-size: 14px;
  color: var(--color-silver-pine);
  line-height: 1.7;
}

/* Active states for Javascript accordions */
.faq-item.active {
  background-color: var(--color-canvas-white);
  border-color: rgba(0, 105, 224, 0.3);
  box-shadow: var(--shadow-lg);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-electric-blue);
}

/* Site Footer */
.site-footer {
  background-color: var(--color-midnight-ink);
  color: var(--color-ash-gray);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1.1fr);
  gap: var(--spacing-48);
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}

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


.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  color: var(--color-canvas-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--spacing-24);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--color-ash-gray);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-canvas-white);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
  margin-top: 8px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ash-gray);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background-color: var(--color-canvas-white);
  color: var(--color-midnight-ink);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-16);
}

.footer-copy {
  font-size: 13px;
}

.footer-trust-marks {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
}

.trust-badge {
  width: 50px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations Trigger on Scroll (Intersection Observer) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-64);
  }

  .hero-description {
    margin: 0 auto var(--spacing-40) auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .why-section-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-48);
  }

  .why-visual {
    order: 2;
  }

  .host-banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-32);
  }

  .host-banner-action {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-48);
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
  }

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

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

  .site-header {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }

  .nav-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 var(--spacing-16);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-canvas-white);
    flex-direction: column;
    padding: 100px var(--spacing-24) 40px;
    gap: var(--spacing-24);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-16);
  }

  .nav-link {
    font-size: 20px;
    width: 100%;
    text-align: center;
    padding: var(--spacing-16) 0;
    border-bottom: 1px solid rgba(204, 231, 255, 0.3);
  }

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

  .mobile-only-action {
    display: block;
    width: 100%;
    text-align: center;
  }

  .header-actions {
    display: none;
  }

  /* Add Login Button inside Nav Drawer for Mobile */
  .nav-menu .btn-primary {
    display: flex;
    width: 100%;
    margin-top: var(--spacing-16);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mockup-container {
    max-width: 300px;
    transform: rotate(0) scale(0.85);
    margin-top: var(--spacing-32);
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 30px;
    margin-bottom: var(--spacing-16);
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: var(--spacing-32);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-16);
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .why-section-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-40);
  }

  .why-visual {
    grid-template-columns: 1fr;
    order: 2; /* Put visual after text on mobile */
  }

  .why-mini-card.offset {
    transform: translateY(0);
  }

  .host-cta-banner {
    padding: 32px var(--spacing-24);
  }

  .host-banner-text h2 {
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand, .footer-links, .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: var(--spacing-24);
  }
}

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

  .mockup-container {
    max-width: 260px;
    scale: 0.9;
  }

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

  .container {
    padding: 0 var(--spacing-16);
  }
}
