/* ==========================================================================
   CSS Design System & Stylesheet for V Downloader
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary-red: #FF2D3F;
  --primary-red-hover: #E01E2F;
  --primary-blue: #1E5EF0;
  --primary-blue-hover: #1546C2;
  --primary-blue-light: #EBF1FF;
  
  --text-dark: #0F172A;
  --text-medium: #475569;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --container-max-width: 1200px;
}

/* --- Base Resets & Typography --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-medium);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

ul {
  list-style: none;
}

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

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

.text-primary {
  color: var(--primary-blue);
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(226, 232, 240, 1);
}

.header-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.site-header.scrolled .header-container {
  height: 70px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 45, 63, 0.2);
}

.app-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-medium);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-blue);
}

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

.main-nav a.active::after,
.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Language Selector Dropdown --- */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  background-color: var(--bg-white);
  transition: var(--transition-fast);
}

.lang-btn:hover {
  background-color: var(--bg-light);
  border-color: var(--text-light);
}

.globe-icon {
  width: 18px;
  height: 18px;
}

.chevron-icon {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
}

.lang-btn[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-normal);
  z-index: 1010;
  overflow: hidden;
  padding: 6px 0;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown button {
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.lang-dropdown button:hover,
.lang-dropdown button.active {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  font-weight: 600;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Hamburger Animations */
.mobile-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 10% 20%, rgba(235, 241, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 90% 80%, rgba(255, 45, 63, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge-wrap {
  align-self: flex-start;
}

.hero-badge {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-dark);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 480px;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 10px;
}

.play-store-btn img {
  height: 52px;
  transition: transform var(--transition-fast);
}

.play-store-btn:hover img {
  transform: translateY(-2px);
}

.hero-checkmarks {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #10B981; /* green indicator */
}

/* --- Hero Mockups Styling --- */
.hero-mockups {
  position: relative;
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-decor-circle {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(30, 94, 240, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* General Phone Mockup Container */
.phone-mockup {
  position: absolute;
  width: 260px;
  height: 530px;
  background-color: #000;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  transition: transform var(--transition-slow);
}

.phone-mockup:hover {
  transform: translateY(-8px);
}

.phone-1 {
  transform: translateX(-105px) translateY(-20px);
  z-index: 3;
}

.phone-1:hover {
  transform: translateX(-105px) translateY(-28px);
}

.phone-2 {
  transform: translateX(105px) translateY(20px);
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.phone-2:hover {
  transform: translateX(105px) translateY(12px);
}

/* Phone Inner Elements */
.phone-frame {
  width: 100%;
  height: 100%;
  border: 10px solid #1a1a1a;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 20px;
  background-color: #000000;
  border-radius: 12px;
  z-index: 100;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 14px 10px 14px; /* offset top notch */
  position: relative;
  overflow: hidden;
  user-select: none;
}

/* Status Bar inside mockup */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0 4px;
  margin-bottom: 12px;
}

.phone-status-icons {
  display: flex;
  gap: 4px;
}

.status-svg {
  width: 12px;
  height: 12px;
}

/* Phone Header */
.phone-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.phone-logo-img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.phone-title-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

/* Screen 1: Home View elements */
.phone-search-container {
  margin-bottom: 14px;
}

.phone-search-bar {
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: 30px;
  padding: 3px 3px 3px 10px;
  border: 1px solid var(--border-color);
}

.phone-search-icon {
  width: 14px;
  height: 14px;
  color: var(--text-light);
  margin-right: 6px;
}

.phone-search-bar input {
  border: none;
  background: none;
  font-size: 0.75rem;
  width: 100%;
  outline: none;
  color: var(--text-medium);
}

.phone-paste-btn {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Social Grid inside mockup */
.phone-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: auto;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

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

.social-name {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-medium);
  text-align: center;
  white-space: nowrap;
}

/* Social Branding Colors */
.youtube-color { background-color: #FF0000; }
.facebook-color { background-color: #1877F2; }
.instagram-color { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tiktok-color { background-color: #000000; }
.twitter-color { background-color: #000000; }
.vimeo-color { background-color: #1AB7EA; }
.dailymotion-color {
  background-color: #0066DC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-txt {
  color: white;
  font-size: 1.4rem;
  line-height: 1;
}
.vk-color { background-color: #4A76A8; }
.more-color {
  background-color: #F1F5F9;
  border: 1px solid var(--border-color);
}
.more-icon {
  width: 16px;
  height: 16px;
  color: var(--text-medium);
}

/* Phone Onboarding/Tips banner */
.phone-tips-card {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  margin-top: 10px;
}

.tips-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tips-title {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-dark);
}

.tips-desc {
  font-size: 0.6rem;
  color: var(--text-medium);
  line-height: 1.3;
  max-width: 140px;
}

.tips-arrow-btn {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tips-arrow-btn svg {
  width: 10px;
  height: 10px;
}

/* Screen 2: Downloads View elements */
.list-header {
  justify-content: space-between;
  margin-bottom: 8px;
}

.phone-more-actions {
  color: var(--text-medium);
}

.phone-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.phone-tabs span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-medium);
  padding-bottom: 4px;
  position: relative;
}

.phone-tabs span.active {
  color: var(--primary-blue);
}

.phone-tabs span.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
  border-radius: 1px;
}

.phone-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: auto;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.item-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.nature-gradient { background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%); }
.city-gradient { background: linear-gradient(135deg, #30CFD0 0%, #33086F 100%); }
.ocean-gradient { background: linear-gradient(135deg, #5EE7DF 0%, #B490CA 100%); }

.item-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.item-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.item-meta {
  font-size: 0.6rem;
  color: var(--text-light);
}

.item-status {
  font-size: 0.6rem;
  font-weight: 700;
}

.text-green { color: #10B981; }

.item-menu-btn {
  color: var(--text-light);
}

/* Phone Bottom Tab Navigator */
.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-color);
  padding-top: 6px;
  margin-top: 8px;
  background-color: var(--bg-white);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-light);
}

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

.nav-item span {
  font-size: 0.58rem;
  font-weight: 500;
}

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

/* ==========================================================================
   Core Features Highlight Bar
   ========================================================================== */
.features-section {
  padding-bottom: 60px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.blue-bg {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
}

.blue-bg-light {
  background-color: rgba(30, 94, 240, 0.06);
  color: var(--primary-blue);
}

.feature-svg-icon {
  width: 24px;
  height: 24px;
}

.hd-badge-svg {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.how-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.step-card {
  flex: 1;
  background-color: var(--bg-white);
  padding: 36px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-fast);
  border: 1px solid var(--border-color);
}

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

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
  max-width: 220px;
}

/* Connecting Dotted Arrows */
.step-arrow {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.step-arrow svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 800px;
}

.faq-section .section-title {
  margin-bottom: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg-white);
  transition: var(--transition-normal);
}

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

.faq-item.open {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: justify;
  align-items: center;
  text-align: left;
}

.faq-trigger span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform var(--transition-normal);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
}

.faq-item.open .faq-content {
  max-height: 300px; /* arbitrary height to slide to */
}

.faq-content p {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ==========================================================================
   Bottom CTA Banner Section
   ========================================================================== */
.bottom-cta-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.cta-container {
  width: 100%;
}

.cta-card {
  background: linear-gradient(135deg, rgba(235, 241, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(30, 94, 240, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-app-icon-wrap {
  flex-shrink: 0;
}

.cta-app-logo {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(255, 45, 63, 0.2);
}

.cta-text h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.cta-text p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

.play-store-btn-large img {
  height: 58px;
  transition: transform var(--transition-fast);
}

.play-store-btn-large:hover img {
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.site-footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

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

/* ==========================================================================
   Responsive Design & Media Queries
   ========================================================================== */

/* --- Tablet Devices (max-width: 992px) --- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-desc {
    margin: 0 auto;
  }
  
  .hero-checkmarks {
    justify-content: center;
  }
  
  .hero-mockups {
    height: 480px;
  }
  
  .phone-1 {
    transform: translateX(-80px) translateY(-10px) scale(0.9);
  }
  .phone-1:hover {
    transform: translateX(-80px) translateY(-18px) scale(0.9);
  }
  
  .phone-2 {
    transform: translateX(80px) translateY(10px) scale(0.9);
  }
  .phone-2:hover {
    transform: translateX(80px) translateY(2px) scale(0.9);
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .steps-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
  }
  
  .step-card {
    min-width: 250px;
  }
  
  .step-arrow {
    display: none; /* Hide arrows on wrap layouts */
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 36px 24px;
  }
  
  .cta-left {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- Mobile Nav Trigger --- */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-normal);
  }
  
  .site-header.scrolled .main-nav {
    top: 70px;
  }
  
  .main-nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 1.1rem;
    display: block;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 6px;
  }
}

/* --- Small Mobile Devices (max-width: 576px) --- */
@media (max-width: 576px) {
  .hero-section {
    padding-top: 120px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  
  .hero-checkmarks {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .hero-mockups {
    height: 400px;
  }
  
  .phone-1 {
    transform: translateX(-55px) translateY(-10px) scale(0.72);
  }
  .phone-1:hover {
    transform: translateX(-55px) translateY(-18px) scale(0.72);
  }
  
  .phone-2 {
    transform: translateX(55px) translateY(15px) scale(0.72);
  }
  .phone-2:hover {
    transform: translateX(55px) translateY(7px) scale(0.72);
  }
  
  .features-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  
  .step-card {
    width: 100%;
  }

  .cta-text h2 {
    font-size: 1.5rem;
  }
}
