/* ==========================================================================
   IKRAA Reading Log - Official Landing Page Stylesheet
   Design Language: Warm, Clean, Modern, Educational, Accessible
   Palette: Authentic IKRAA Application Palette (#F2711C Brand Orange)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@500;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Palette (From Official IKRAA App) */
  --primary: #F2711C;
  --primary-hover: #D95F12;
  --primary-light: #FFF0E8;
  --primary-subtle: #FFF8F3;
  --secondary: #FF8C42;
  --secondary-glow: rgba(242, 113, 28, 0.25);

  /* Accents */
  --accent-green: #2E7D32;
  --accent-green-soft: #E8F5E9;
  --accent-gold: #F59E0B;
  --accent-gold-soft: #FEF3C7;
  --accent-blue: #2563EB;
  --accent-blue-soft: #EFF6FF;

  /* Neutrals & Surfaces */
  --bg-page: #FFF8F3;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F9F4EE;
  --bg-surface-soft: #FFF5EC;

  /* Typography Colors */
  --text-main: #2C1E16;       /* Deep warm espresso */
  --text-muted: #6B5E55;      /* Warm medium charcoal/slate */
  --text-subtle: #96867B;     /* Warm light gray */
  --text-inverse: #FFFFFF;    /* Crisp white text on primary orange buttons */

  /* Borders & Dividers */
  --border-subtle: rgba(44, 30, 22, 0.08);
  --border-brand: rgba(242, 113, 28, 0.20);
  --border-focus: #F2711C;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 30, 22, 0.04), 0 1px 2px rgba(44, 30, 22, 0.02);
  --shadow-md: 0 8px 24px rgba(44, 30, 22, 0.06), 0 2px 6px rgba(44, 30, 22, 0.04);
  --shadow-lg: 0 20px 40px rgba(44, 30, 22, 0.08), 0 6px 12px rgba(44, 30, 22, 0.04);
  --shadow-primary: 0 8px 22px rgba(242, 113, 28, 0.28);
  --shadow-device: 0 25px 60px -15px rgba(44, 30, 22, 0.22), 0 0 0 1px rgba(44, 30, 22, 0.08);

  /* Geometry */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --container-max: 1180px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography Helpers --- */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #F2711C 0%, #E65100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.arabic-text {
  font-family: 'Noto Kufi Arabic', 'Plus Jakarta Sans', sans-serif;
  direction: rtl;
  display: inline-block;
}

/* --- Navigation Bar --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(44, 30, 22, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(242, 113, 28, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-title-main {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
}

.brand-title-sub {
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--text-main);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(242, 113, 28, 0.35);
  color: var(--text-inverse);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(242, 113, 28, 0.25);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* --- App Store & Platform Badges --- */
.badge-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-normal);
}

.badge-appstore:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

.badge-appstore-icon {
  width: 24px;
  height: 24px;
}

.badge-appstore-text {
  display: flex;
  flex-direction: column;
}

.badge-appstore-small {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: uppercase;
}

.badge-appstore-bold {
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: 56px 0 92px;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(242, 113, 28, 0.12) 0%, rgba(255, 248, 243, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-accent-left {
  position: absolute;
  bottom: 20px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, rgba(255, 248, 243, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero Pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.hero-title {
  font-size: clamp(2.35rem, 4.5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-meta-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-meta-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* --- Realistic Smartphone Mockup --- */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-phone {
  position: relative;
  width: 320px;
  height: 650px;
  background: #111111;
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-device);
  border: 4px solid #2B2825;
  transition: transform var(--transition-normal);
}

.device-phone:hover {
  transform: translateY(-4px);
}

.device-phone::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FFF8F3;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Notch / Dynamic Island */
.device-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.island-camera {
  width: 9px;
  height: 9px;
  background: #1a1a2e;
  border-radius: 50%;
}

.island-sensor {
  width: 7px;
  height: 7px;
  background: #0a0a14;
  border-radius: 50%;
}

/* Inside the Mockup: Authentic IKRAA Reading App Screen */
.app-screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 42px 14px 10px;
  overflow-y: hidden;
}

/* Header inside app */
.app-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.app-child-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.app-avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F2711C, #FF8C42);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(242, 113, 28, 0.3);
}

.app-child-info {
  display: flex;
  flex-direction: column;
}

.app-child-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.app-child-role {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
}

.app-quick-tag {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Streak Card inside app */
.app-streak-card {
  background: linear-gradient(135deg, #FFF0E8 0%, #FFE5D4 100%);
  border: 1px solid rgba(242, 113, 28, 0.2);
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.app-streak-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-streak-emoji {
  font-size: 1.4rem;
}

.app-streak-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #9C3900;
}

.app-streak-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: #B45309;
}

.app-streak-badge {
  background: #F2711C;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
}

/* Today's Goal Progress inside app */
.app-progress-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(44, 30, 22, 0.05);
  border: 1px solid rgba(44, 30, 22, 0.04);
  margin-bottom: 10px;
}

.app-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.app-progress-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.app-progress-value {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
}

.app-progress-bar-bg {
  width: 100%;
  height: 8px;
  background: #F1E9E1;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}

.app-progress-bar-fill {
  width: 83%;
  height: 100%;
  background: linear-gradient(90deg, #F2711C 0%, #FF8C42 100%);
  border-radius: 6px;
}

.app-progress-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-subtle);
}

/* Currently Reading Book Card */
.app-book-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(44, 30, 22, 0.04);
  border: 1px solid rgba(44, 30, 22, 0.04);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.app-book-cover {
  width: 44px;
  height: 58px;
  background: linear-gradient(135deg, #EFB639 0%, #F59E0B 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  border-left: 3px solid #D97706;
}

.app-book-cover-icon {
  width: 18px;
  height: 18px;
}

.app-book-cover-text {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.app-book-details {
  flex: 1;
}

.app-book-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.app-book-author {
  font-size: 0.66rem;
  color: var(--text-subtle);
  margin-bottom: 4px;
}

.app-book-pages {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
}

/* Mascot Encouragement Bubble */
.app-mascot-tip {
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  border-radius: 14px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 8px;
}

.app-mascot-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.app-mascot-msg {
  font-size: 0.68rem;
  font-weight: 600;
  color: #22543D;
  line-height: 1.25;
}

/* App Bottom Navigation Bar */
.app-bottom-nav {
  height: 48px;
  background: #FFFFFF;
  border-top: 1px solid rgba(44, 30, 22, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px;
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text-subtle);
}

.app-nav-item.active {
  color: var(--primary);
}

.app-nav-icon {
  width: 16px;
  height: 16px;
}

/* Floating Badges around Mockup */
.floating-badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44, 30, 22, 0.08);
  animation: floatSlow 4s ease-in-out infinite alternate;
  z-index: 10;
}

.floating-badge-top {
  top: 18%;
  left: -48px;
}

.floating-badge-bottom {
  bottom: 22%;
  right: -42px;
  animation-delay: -2s;
}

.floating-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-orange {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-green {
  background: var(--accent-green-soft);
  color: var(--accent-green);
}

.floating-badge-content {
  display: flex;
  flex-direction: column;
}

.floating-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-subtle);
  line-height: 1.1;
}

.floating-badge-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* --- Section Title & Shared Styles --- */
.section {
  padding: 88px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-surface-alt);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- What is IKRAA? Section --- */
.what-is-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.what-is-card {
  background: var(--bg-page);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.what-is-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-is-tag {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.what-is-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.what-is-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.what-is-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FFFFFF;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.highlight-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon-box svg {
  width: 20px;
  height: 20px;
}

.highlight-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.highlight-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* --- Key Benefits Section --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}

.benefit-card:hover::before {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.08);
}

.benefit-icon-orange {
  background: var(--primary-light);
  color: var(--primary);
}

.benefit-icon-green {
  background: var(--accent-green-soft);
  color: var(--accent-green);
}

.benefit-icon-gold {
  background: var(--accent-gold-soft);
  color: #B45309;
}

.benefit-icon-blue {
  background: var(--accent-blue-soft);
  color: var(--accent-blue);
}

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

.benefit-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- How it Works / 3-Step Flow --- */
.steps-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  background: #FFFFFF;
  border: 1.5px solid var(--border-brand);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- App CTA Section --- */
.cta-section {
  padding: 88px 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, #2C1E16 0%, #3D291F 100%);
  border-radius: var(--radius-xl);
  padding: 68px 56px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-glow-1 {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242, 113, 28, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: -90px;
  left: 20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(91, 202, 115, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFB37C;
  margin-bottom: 20px;
}

.cta-headline {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-support {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.cta-mascot-wrapper {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-mascot-img {
  width: 130px;
  height: 130px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.25);
  animation: floatSlow 3.5s ease-in-out infinite alternate;
}

.cta-mascot-label {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 36px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-bilingual-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.footer-links-group {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.footer-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.footer-back-to-top:hover {
  color: var(--primary);
}

/* --- Privacy Policy & Support Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 30, 22, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-main);
  background: #F1E9E1;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
}

.modal-content {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.modal-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 18px 0 8px;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .device-phone {
    width: 290px;
    height: 590px;
  }

  .floating-badge-top {
    left: -20px;
  }

  .floating-badge-bottom {
    right: -15px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-header.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    align-items: center;
  }

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

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

  .hero-meta-points {
    justify-content: center;
  }

  .what-is-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 44px 28px;
  }

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

  .footer-links-group {
    gap: 32px;
  }
}

@media (max-width: 540px) {
  .nav-wrap {
    height: 66px;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .brand-title-main {
    font-size: 1.05rem;
  }

  .brand-title-sub {
    font-size: 0.65rem;
  }

  .nav-actions .btn-sm {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-section {
    padding: 32px 0 54px;
  }

  .hero-pill {
    font-size: 0.8rem;
    padding: 6px 14px;
    text-align: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .device-phone {
    width: 270px;
    height: 550px;
  }

  .floating-badge {
    display: none;
  }

  .cta-headline {
    font-size: 1.85rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn,
  .cta-actions .badge-appstore {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 20px;
  }
}
