/* ============================================
   mployr.app - Promotional Website Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Brand Colors */
  --indigo-50: #EEF2FF;
  --indigo-100: #E0E7FF;
  --indigo-200: #C7D2FE;
  --indigo-300: #A5B4FC;
  --indigo-400: #818CF8;
  --indigo-500: #6366F1;
  --indigo-600: #4F46E5;
  --indigo-700: #4338CA;
  --indigo-800: #3730A3;
  --indigo-900: #312E81;

  /* Neutrals */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Semantic */
  --white: #FFFFFF;
  --black: #000000;
  --star-color: #FBBF24;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  --gradient-hero: linear-gradient(135deg, #0F0A2E 0%, #1E1554 30%, #2D1B69 60%, #1A1145 100%);
  --gradient-cta: linear-gradient(135deg, var(--indigo-700), var(--indigo-500), var(--indigo-600));
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Borders & Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}


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

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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


/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo-500);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

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


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(99, 102, 241, 0);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn--store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  font-size: var(--font-size-sm);
  min-width: 170px;
}

.btn--store:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--store svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn--store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn--store-text small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn--store-text span {
  font-size: 1.05rem;
  font-weight: 600;
}


/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

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

.card--glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.card--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}


/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

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

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-base);
}

.header--scrolled .header__logo-img {
  filter: none;
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--indigo-400);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--white);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header--scrolled .header__nav a {
  color: var(--gray-500);
}

.header--scrolled .header__nav a:hover,
.header--scrolled .header__nav a.active {
  color: var(--indigo-600);
}

.header--scrolled .header__nav a::after {
  background: var(--indigo-500);
}

.header__cta {
  display: none;
}

.header__cta .btn--primary {
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-sm);
}

/* Mobile Menu Button */
.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px 0;
  z-index: 1001;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header--scrolled .header__menu-btn span {
  background: var(--gray-700);
}

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

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

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

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 10, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.mobile-menu a:hover {
  opacity: 1;
}

.mobile-menu .btn--primary {
  margin-top: var(--space-lg);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(129, 140, 248, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--indigo-300);
  margin-bottom: var(--space-xl);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(135deg, var(--indigo-300), var(--indigo-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

/* Hero Phone Mockup */
.hero__phone-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero__phone {
  width: 260px;
  height: 520px;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 36px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(99, 102, 241, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
  position: relative;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1E1B4B 0%, #312E81 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
}

.hero__phone-content {
  padding: 44px 16px 16px;
  color: var(--white);
}

.hero__phone-greeting {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-bottom: 2px;
}

.hero__phone-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero__phone-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__phone-card-title {
  font-size: 0.65rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.hero__phone-shift {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.hero__phone-shift-time {
  font-weight: 600;
  font-size: 0.85rem;
}

.hero__phone-shift-badge {
  padding: 2px 8px;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--indigo-300);
}

.hero__phone-clock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: var(--gradient-primary);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 12px;
  border: none;
}

.hero__phone-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 10px 16px 14px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.hero__phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  opacity: 0.5;
  color: var(--white);
}

.hero__phone-nav-item.active {
  opacity: 1;
  color: var(--indigo-400);
}

.hero__phone-nav-item svg {
  width: 18px;
  height: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(-5deg); }
  50% { transform: translateY(-20px) rotateY(-5deg); }
}


/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-50);
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-md);
  color: var(--indigo-600);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  background: var(--indigo-600);
  color: var(--white);
  transform: scale(1.1);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  line-height: 1.6;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--space-4xl) 0;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.step__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.step__content h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.step__content p {
  font-size: var(--font-size-base);
  color: var(--gray-500);
  line-height: 1.6;
}


/* ============================================
   SCREENSHOTS
   ============================================ */
.screenshots {
  padding: var(--space-4xl) 0;
  background: var(--gradient-hero);
  overflow: hidden;
}

.screenshots .section-label {
  color: var(--indigo-300);
}

.screenshots .section-title {
  color: var(--white);
}

.screenshots .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.screenshots__grid {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-phone {
  width: 220px;
  flex-shrink: 0;
}

.screenshot-phone__frame {
  width: 100%;
  aspect-ratio: 9/18;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.screenshot-phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* Roster Screen */
.screen-roster {
  background: linear-gradient(180deg, #1E1B4B, #312E81);
  padding: 32px 14px 14px;
  color: var(--white);
}

.screen-roster__header {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.screen-roster__day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.65rem;
}

.screen-roster__day-name {
  font-weight: 600;
  min-width: 32px;
}

.screen-roster__day-time {
  opacity: 0.7;
}

.screen-roster__day-hours {
  padding: 2px 6px;
  background: rgba(99,102,241,0.25);
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--indigo-300);
}

/* Clock Screen */
.screen-clock {
  background: linear-gradient(180deg, #1E1B4B, #312E81);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  height: 100%;
}

.screen-clock__time {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.screen-clock__date {
  font-size: 0.65rem;
  opacity: 0.5;
  margin-bottom: 24px;
}

.screen-clock__button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
  margin-bottom: 8px;
}

.screen-clock__button svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.screen-clock__label {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.8;
}

/* Leave Screen */
.screen-leave {
  background: linear-gradient(180deg, #1E1B4B, #312E81);
  padding: 32px 14px 14px;
  color: var(--white);
}

.screen-leave__header {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.screen-leave__balance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.screen-leave__balance-item {
  padding: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  text-align: center;
}

.screen-leave__balance-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.screen-leave__balance-label {
  font-size: 0.5rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.screen-leave__request {
  padding: 8px 10px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 8px;
  font-size: 0.6rem;
}

.screen-leave__request-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.screen-leave__request-dates {
  opacity: 0.6;
}

.screen-leave__request-status {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 6px;
  background: rgba(74, 222, 128, 0.2);
  color: #4ADE80;
  border-radius: 4px;
  font-size: 0.5rem;
  font-weight: 600;
}

.screenshot-phone__label {
  text-align: center;
  margin-top: var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--space-4xl) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-2xl);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--star-color);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__text {
  font-size: var(--font-size-base);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.testimonial-card__author-info h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-card__author-info p {
  font-size: var(--font-size-sm);
  color: var(--gray-400);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq__item[open] {
  border-color: var(--indigo-200);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition-fast);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::marker {
  display: none;
  content: '';
}

.faq__item summary:hover {
  color: var(--indigo-600);
}

.faq__item summary svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq__item[open] summary svg {
  transform: rotate(180deg);
  color: var(--indigo-500);
}

.faq__item-content {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  line-height: 1.7;
}


/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download-cta {
  padding: var(--space-4xl) 0;
  background: var(--gradient-cta);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.download-cta__title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
}

.download-cta__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.download-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  position: relative;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.footer__logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer__socials a:hover {
  background: var(--indigo-600);
  color: var(--white);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
}

.footer__column h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__column a {
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer__column a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  font-size: var(--font-size-sm);
}

.footer__bottom a {
  color: var(--indigo-400);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--indigo-300);
}


/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero__title {
    font-size: var(--font-size-5xl);
  }

  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }

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

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

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

  .testimonials__grid .card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .download-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .download-cta__title {
    font-size: var(--font-size-4xl);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .section-title {
    font-size: var(--font-size-4xl);
  }
}


/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: block;
  }

  .header__menu-btn {
    display: none;
  }

  .hero {
    padding: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }

  .hero__content {
    text-align: left;
  }

  .hero__subtitle {
    margin-left: 0;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__title {
    font-size: var(--font-size-6xl);
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials__grid .card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .screenshot-phone {
    width: 240px;
  }
}
