/* ========================================
   FLUID RESPONSIVE DESIGN SYSTEM
   ========================================
   
   This stylesheet uses CSS variables and clamp() functions for automatic
   responsive scaling. No need for device-specific tweaks!
   
   KEY PRINCIPLES:
   1. Use CSS variables (--spacing-md, --font-lg, etc.) for consistent scaling
   2. Use clamp() for custom fluid sizing
   3. Only use media queries for layout changes (not sizing)
   4. Everything scales automatically between breakpoints
   
   QUICK REFERENCE:
   - Typography: --font-xs through --font-5xl
   - Spacing: --spacing-xs through --spacing-2xl  
   - Gaps: --gap-xs through --gap-xl
   - Containers: --container-sm through --container-2xl
   
   See RESPONSIVE_DESIGN_GUIDE.md for full documentation.
   ======================================== */

/* ========================================
   CSS VARIABLES FOR RESPONSIVE DESIGN
   ======================================== */
:root {
  /* Fluid Spacing - scales automatically */
  --spacing-xs: clamp(0.5rem, 0.5vw + 0.25rem, 0.75rem);
  --spacing-sm: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  --spacing-md: clamp(1rem, 1.5vw + 0.75rem, 1.5rem);
  --spacing-lg: clamp(1.5rem, 2.5vw + 1rem, 2.5rem);
  --spacing-xl: clamp(2rem, 4vw + 1.5rem, 4rem);
  --spacing-2xl: clamp(3rem, 6vw + 2rem, 6rem);
  
  /* Fluid Typography - automatically scales */
  --font-xs: clamp(0.75rem, 0.5vw + 0.625rem, 0.875rem);
  --font-sm: clamp(0.875rem, 0.75vw + 0.625rem, 1rem);
  --font-base: clamp(1rem, 1vw + 0.75rem, 1.125rem);
  --font-md: clamp(1rem, 1.25vw + 0.75rem, 1.25rem);
  --font-lg: clamp(1.125rem, 1.5vw + 0.875rem, 1.5rem);
  --font-xl: clamp(1.25rem, 2vw + 1rem, 1.875rem);
  --font-2xl: clamp(1.5rem, 3vw + 1.25rem, 2.25rem);
  --font-3xl: clamp(1.875rem, 4vw + 1.5rem, 3rem);
  --font-4xl: clamp(2.25rem, 5vw + 1.75rem, 3.75rem);
  --font-5xl: clamp(3rem, 7vw + 2rem, 4.5rem);
  
  /* Container Widths - responsive containers */
  --container-sm: min(100% - 2rem, 640px);
  --container-md: min(100% - 2rem, 768px);
  --container-lg: min(100% - 3rem, 1024px);
  --container-xl: min(100% - 4rem, 1280px);
  --container-2xl: min(100% - 4rem, 1400px);
  
  /* Grid Gaps - fluid gaps */
  --gap-xs: clamp(0.5rem, 1vw, 0.75rem);
  --gap-sm: clamp(0.75rem, 1.5vw, 1rem);
  --gap-md: clamp(1rem, 2vw, 1.5rem);
  --gap-lg: clamp(1.5rem, 3vw, 2rem);
  --gap-xl: clamp(2rem, 4vw, 3rem);
  
  /* Border Radius - scales smoothly */
  --radius-sm: clamp(4px, 0.5vw, 8px);
  --radius-md: clamp(8px, 1vw, 12px);
  --radius-lg: clamp(12px, 1.5vw, 16px);
  --radius-xl: clamp(16px, 2vw, 22px);
  
  /* Padding - responsive padding */
  --padding-section-sm: clamp(2rem, 4vw, 3rem);
  --padding-section-md: clamp(3rem, 6vw, 5rem);
  --padding-section-lg: clamp(4rem, 8vw, 6rem);
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  
  /* Breakpoints (for reference, use in JS if needed) */
  --bp-xs: 480px;
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-2xl: 1536px;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px; /* Base font size - scales naturally */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  background-color: #ffffff;
  color: #141414;
  line-height: var(--leading-normal);
  font-size: var(--font-base);
  overflow-x: hidden;
  width: 100%;
}

.app-container {
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Why Choose Section (Navigation + Hero) */
.why-choose-section {
  position: relative;
  width: 100%;
  background-color: #fafafa;
  border-radius: var(--radius-lg);
  overflow: visible;
  padding: var(--spacing-sm) var(--spacing-md);
}

@media (min-width: 768px) {
  .why-choose-section {
    border-radius: var(--radius-xl);
    padding: 0 clamp(2rem, 4vw, 3.125rem);
    overflow: visible;
  }
}

.why-choose-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.why-choose-content {
  position: relative;
  z-index: 1;
}

.nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  padding: var(--spacing-sm) var(--spacing-md);
  position: relative;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .nav-container {
    padding: clamp(1.25rem, 2.5vw, 1.875rem) clamp(2rem, 4vw, 2.5rem);
    gap: var(--gap-lg);
  }
  
  .logo-tagline {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .logo-tagline {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    display: block !important;
  }
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xs);
  flex: 0 1 auto;
  min-width: 0;
  overflow: visible;
}

.logo {
  width: clamp(100px, 12vw + 60px, 198px);
  height: clamp(32px, 3.5vw + 20px, 60px);
  object-fit: cover;
  flex-shrink: 0;
}

.logo-tagline {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(0, 58, 91, 0.9);
  font-size: clamp(0.6875rem, 0.75vw + 0.5rem, 1rem);
  text-align: left;
  letter-spacing: 0;
  line-height: 1.3;
  padding: 0;
  margin: 0;
  display: none; /* Hidden by default on mobile */
  white-space: nowrap;
  overflow: visible;
  max-width: none;
  min-width: 0;
}

@media (min-width: 500px) {
  .logo-tagline {
    display: block !important;
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    min-width: 0;
  }
}

/* Hide tagline only on very small screens where it definitely won't fit */
@media (max-width: 500px) {
  .logo-tagline {
    display: none !important;
  }
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

@media (min-width: 1000px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #003a5b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  gap: 12px;
  list-style: none;
  margin: 0;
  margin-top: 8px;
  z-index: 1000;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-menu.active {
  display: flex;
}

/* Ensure hamburger menu shows and nav-menu is hidden for screens less than 1000px */
@media (max-width: 999px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

@media (min-width: 1000px) {
  .nav-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    gap: 16px;
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
    border-top: none;
  }
  
  .nav-menu li {
    width: auto;
  }
}

@media (min-width: 768px) {
  .nav-menu {
    gap: 24px;
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    gap: 37.5px;
  }
}

.nav-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 500;
  color: #003a5b;
  text-decoration: none;
  font-size: clamp(1rem, 0.9vw + 0.9rem, 1.125rem);
  letter-spacing: 0;
  line-height: 1.5;
  transition: opacity 0.2s, color 0.2s;
  padding: clamp(0.625rem, 1vw, 0) 0;
  display: block;
  white-space: nowrap;
  border: none;
  background: none;
  width: 100%;
}

.nav-link i {
  margin-left: 0.25rem;
  font-size: 0.85em;
  vertical-align: middle;
  transition: transform 0.2s;
}

.nav-item.dropdown.active .nav-link i {
  transform: rotate(180deg);
}

@media (min-width: 640px) {
  .nav-link {
    padding: 0;
    display: inline;
    width: auto;
  }
}

.nav-link:hover {
  opacity: 0.8;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  padding: clamp(4rem, 8vw, 12.5rem) 0;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  max-width: min(100% - 2rem, 927px);
  padding: 0 var(--spacing-md);
}

.hero-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  color: #003a5b;
  font-size: clamp(1.875rem, 5vw + 1rem, 3.75rem);
  text-align: center;
  letter-spacing: 0;
  line-height: clamp(2.5rem, 5.5vw + 1.25rem, 4.25rem);
}

.hero-subtitle {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  color: rgba(0, 58, 91, 0.5);
  font-size: clamp(0.875rem, 1.25vw + 0.625rem, 1.125rem);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.6;
  padding: 0 var(--spacing-xs);
  margin-top: var(--spacing-xs);
}

/* Partner Section */
.partner-section {
  width: 100%;
  background-color: #ffffff;
  padding: var(--padding-section-sm) var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .partner-section {
    padding: var(--padding-section-lg) clamp(2rem, 4vw, 3.125rem);
  }
}

.partner-header {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  margin-bottom: var(--spacing-xl);
  width: 100%;
  max-width: var(--container-2xl);
}

@media (min-width: 768px) {
  .partner-header {
    gap: var(--gap-lg);
    margin-bottom: clamp(3rem, 8vw, 4.9375rem);
  }
}

.partner-title {
  width: 100%;
  max-width: 100%;
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #141414;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
  letter-spacing: 0;
  line-height: clamp(2rem, 4.5vw + 0.75rem, 3.5rem);
}

@media (min-width: 768px) {
  .partner-title {
    max-width: 652px;
  }
}

.partner-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(0, 58, 91, 0.5);
  font-size: clamp(1rem, 1.25vw + 0.75rem, 1.125rem);
  letter-spacing: 0;
  line-height: var(--leading-normal);
}

.partner-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  width: 100%;
}

@media (min-width: 768px) {
  .partner-content {
    gap: clamp(3rem, 8vw, 5.625rem);
  }
}

@media (min-width: 1024px) {
  .partner-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: var(--container-2xl);
    margin: 0 auto;
    gap: clamp(2rem, 5vw, 3.75rem);
  }
}

.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .challenges-list {
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .challenges-list {
    max-width: 640px;
    flex: 0 1 auto;
  }
}

/* Optimized layout for 1280px screens - video on top, challenges in grid below */
@media (min-width: 1200px) and (max-width: 1400px) {
  .partner-content {
    flex-direction: column !important;
    max-width: 1200px;
    align-items: center;
    gap: 3rem;
  }

  .partner-image-container {
    width: 100% !important;
    max-width: 600px;
    order: -1;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none !important;
  }

  .partner-image {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .challenges-list {
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    flex: none !important;
  }

  .challenge-card {
    width: 100%;
  }

  .challenge-card-content {
    padding: 18px;
  }

  .challenge-title {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .challenge-description {
    font-size: 13px;
    line-height: 20px;
  }

  .video-cta-buttons {
    flex-direction: row;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
  }

  .video-cta-button {
    padding: 20px 32px;
    font-size: 17px;
    flex: 0 1 auto;
    min-width: 200px;
  }
}

.challenge-card {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #dadfe7;
}

@media (min-width: 768px) {
  .challenge-card {
    border-radius: 12px;
  }
}

.challenge-card-content {
  padding: 12px;
}

@media (min-width: 768px) {
  .challenge-card-content {
    padding: 20px;
  }
}

.challenge-title {
  margin-bottom: 8px;
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #141414;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
}

@media (min-width: 768px) {
  .challenge-title {
    margin-bottom: 12px;
    font-size: 16px;
  }
}

.challenge-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #627084;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}

@media (min-width: 768px) {
  .challenge-description {
    font-size: 14px;
    line-height: 22px;
  }
}

.partner-image-container {
  flex-shrink: 0;
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .partner-image-container {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .partner-image-container {
    width: auto;
    flex: 0 0 auto;
  }
}

.partner-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .partner-image {
    width: 660px;
    height: 427px;
  }
}

.video-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
}

@media (min-width: 640px) {
  .video-cta-buttons {
    gap: 20px;
    margin-top: 24px;
  }
}

@media (min-width: 1024px) {
  .video-cta-buttons {
    gap: 24px;
    margin-top: 32px;
  }
}

.video-cta-button {
  padding: 20px 32px;
  border-radius: 10px;
  border: none;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .video-cta-button {
    padding: 24px 40px;
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .video-cta-button {
    padding: 28px 48px;
    font-size: 22px;
  }
}

.video-cta-download {
  background-color: #008a8a;
  color: #ffffff;
}

.video-cta-download:hover {
  background-color: #007070;
}

.video-cta-join {
  background-color: #233b5c;
  color: #ffffff;
}

.video-cta-join:hover {
  background-color: #1a2d45;
}

/* Features Section */
.features-section {
  width: 100%;
  padding: var(--padding-section-sm) var(--spacing-md);
}

@media (min-width: 768px) {
  .features-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
}

.features-container {
  max-width: var(--container-xl);
  margin: 0 auto;
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
  .features-header {
    gap: var(--gap-md);
    margin-bottom: var(--spacing-2xl);
  }
}

.features-badge {
  background-color: rgba(0, 138, 138, 0.1);
  color: #008a8a;
  border: 0;
  padding: 6px 12px;
  border-radius: 9999px;
  font-family: 'Segoe UI', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}

@media (min-width: 768px) {
  .features-badge {
    padding: 8px 16px;
    font-size: 14.4px;
    line-height: 20.6px;
  }
}

.features-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .features-title-container {
    flex-direction: row;
  }
}

.features-logo {
  width: 96px;
  height: 28px;
}

@media (min-width: 768px) {
  .features-logo {
    width: 212px;
    height: 48px;
  }
}

.features-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #141414;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
  text-align: center;
  letter-spacing: 0;
  line-height: clamp(1.75rem, 4.5vw + 0.75rem, 3.5rem);
}

.features-subtitle {
  font-family: 'Segoe UI', Helvetica, sans-serif;
  font-weight: 400;
  color: #627084;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

@media (min-width: 768px) {
  .features-subtitle {
    font-size: 20.6px;
    line-height: 28.8px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: none;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .feature-card {
    border-radius: 12px;
  }
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

@media (min-width: 768px) {
  .feature-card-content {
    padding: 25.5px;
  }
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.feature-icon:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }
}

.feature-card-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #1f2937;
  font-size: 16px;
  letter-spacing: -0.51px;
  line-height: 24px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .feature-card-title {
    font-size: 20px;
    line-height: 28.8px;
    margin-top: 22.6px;
  }
}

.feature-card-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #6b7280;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .feature-card-description {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10.3px;
  }
}

.feature-card-tagline {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #008A8A;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: auto;
  padding-top: 16px;
}

@media (min-width: 768px) {
  .feature-card-tagline {
    font-size: 14px;
    line-height: 24px;
    padding-top: 24px;
  }
}

.feature-card-note {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #22c55e;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 8px;
  padding-top: 8px;
}

@media (min-width: 768px) {
  .feature-card-note {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Benefits Section */
.benefits-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .benefits-section {
    gap: 40px;
    padding: 40px 24px;
  }
}

.benefits-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .benefits-header {
    gap: 24px;
    max-width: 831px;
  }
}

.benefits-title-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media (min-width: 640px) {
  .benefits-title-container {
    flex-direction: row;
    align-items: flex-end;
  }
}

.benefits-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #141414;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 36px;
}

@media (min-width: 768px) {
  .benefits-title {
    font-size: 48px;
    line-height: 56px;
  }
}

.benefits-logo {
  width: 128px;
  height: 36px;
}

@media (min-width: 768px) {
  .benefits-logo {
    width: 212px;
    height: 48px;
  }
}

.benefits-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(0, 58, 91, 0.5);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

@media (min-width: 768px) {
  .benefits-description {
    font-size: 18px;
    line-height: 30px;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #dadfe7;
  overflow: hidden;
}

@media (min-width: 768px) {
  .benefit-card {
    border-radius: 16px;
  }
}

.benefit-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .benefit-card-content {
    padding: 24px;
  }
}

.benefit-icon {
  width: 48px;
  height: 48px;
}

@media (min-width: 768px) {
  .benefit-icon {
    width: 64px;
    height: 64px;
  }
}

.benefit-card-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #263140;
  font-size: 16px;
  letter-spacing: -0.51px;
  line-height: 24px;
}

@media (min-width: 768px) {
  .benefit-card-title {
    font-size: 18px;
    line-height: 28.8px;
  }
}

.benefit-card-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #627084;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}

@media (min-width: 768px) {
  .benefit-card-description {
    font-size: 14px;
    line-height: 26px;
  }
}

/* Quote Section */
.quote-section {
  width: 100%;
  background-color: #ffffff;
  padding: var(--padding-section-lg) var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .quote-section {
    padding: clamp(5rem, 10vw, 7.5rem) var(--spacing-lg);
  }
}

.quote-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 12px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.quote-mark {
  font-family: 'Playfair Display', Helvetica, serif;
  font-size: 80px;
  font-weight: 700;
  color: #008A8A;
  line-height: 1;
  display: inline-block;
}

@media (min-width: 768px) {
  .quote-mark {
    font-size: 140px;
  }
}

.quote-mark-open {
  grid-column: 1;
  align-self: start;
  margin-top: 0;
  margin-right: -8px;
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .quote-mark-open {
    margin-top: 0;
    margin-right: -12px;
    transform: translateY(-8px);
  }
}

.quote-mark-close {
  grid-column: 3;
  align-self: end;
  margin-bottom: 0;
  margin-left: -8px;
  transform: translateY(5px);
}

@media (min-width: 768px) {
  .quote-mark-close {
    margin-bottom: 0;
    margin-left: -12px;
    transform: translateY(8px);
  }
}

.quote-text {
  grid-column: 2;
  justify-self: center;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw + 0.75rem, 2.25rem);
  line-height: clamp(2rem, 3.5vw + 1rem, 3.125rem);
  letter-spacing: 0;
  color: #003A5B;
  text-align: center;
  margin: 0;
  max-width: min(100% - 2rem, 900px);
}

.quote-line-1 {
  display: inline-block;
}

@media (min-width: 640px) {
  .quote-text {
    font-size: 30px;
    line-height: 42px;
  }
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 36px;
    line-height: 50px;
  }
  
  .quote-line-1 {
    white-space: nowrap;
  }
}

/* Call to Action Section */
.cta-section {
  position: relative;
  width: 100%;
  background-color: #233b5c;
  padding: var(--padding-section-sm) var(--spacing-md);
}

@media (min-width: 768px) {
  .cta-section {
    padding: var(--padding-section-lg) var(--spacing-md);
  }
}

.cta-container {
  max-width: var(--container-xl);
  margin: 0 auto;
}

.cta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cta-header {
    gap: 18px;
    margin-bottom: 136px;
  }
}

.cta-title-container {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
  letter-spacing: 0;
  line-height: clamp(2rem, 4.5vw + 0.75rem, 3.5rem);
}

.cta-logo {
  width: 96px;
  height: 28px;
}

@media (min-width: 768px) {
  .cta-logo {
    width: 212px;
    height: 48px;
  }
}

.cta-description {
  max-width: 100%;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

@media (min-width: 768px) {
  .cta-description {
    max-width: 865px;
    font-size: 18px;
    line-height: 30px;
  }
}

.cta-br {
  display: none;
}

@media (min-width: 768px) {
  .cta-br {
    display: block;
  }
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container-2xl);
  }
}

.cta-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-card {
    border-radius: 16px;
  }
}

.cta-card-content {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .cta-card-content {
    gap: 16px;
  }
}

.cta-card-image {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .cta-card-image {
    height: 175px;
  }
}

.cta-card-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #141414;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
}

@media (min-width: 768px) {
  .cta-card-title {
    font-size: 16px;
    line-height: 28px;
  }
}

.cta-card-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(20, 20, 20, 0.6);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .cta-card-description {
    line-height: 19.4px;
  }
}

/* Testimonial Section */
.testimonial-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .testimonial-section {
    gap: 31px;
    padding: 0 16px;
  }
}

.testimonial-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  color: #263140;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 32px;
}

@media (min-width: 768px) {
  .testimonial-title {
    font-size: 48px;
    line-height: 48px;
  }
}

.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: transparent;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

@media (min-width: 768px) {
  .testimonial-content {
    font-size: 20px;
    line-height: 20px;
  }
}

.testimonial-text {
  color: #627084;
  line-height: 24px;
}

@media (min-width: 768px) {
  .testimonial-text {
    line-height: 38px;
  }
}

.testimonial-bold {
  font-weight: 700;
  color: #263140;
  line-height: 24px;
}

@media (min-width: 768px) {
  .testimonial-bold {
    line-height: 38px;
  }
}

/* Hero and Video Container */
.hero-video-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

@media (min-width: 768px) {
  .hero-video-container {
    gap: 24px;
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .hero-video-container {
    flex-direction: row;
  }
}

.hero-card,
.video-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #dadfe7;
}

@media (min-width: 768px) {
  .hero-card,
  .video-card {
    border-radius: 16px;
  }
}

.hero-card-content,
.video-card-content {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

@media (min-width: 768px) {
  .hero-card-content,
  .video-card-content {
    padding: 36px;
  }
}

.hero-card-icon,
.video-card-icon {
  width: 48px;
  height: 48px;
}

@media (min-width: 768px) {
  .hero-card-icon,
  .video-card-icon {
    width: 64px;
    height: 64px;
  }
}

.hero-card-title,
.video-card-title {
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  color: #263140;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
}

@media (min-width: 768px) {
  .hero-card-title,
  .video-card-title {
    margin-top: 24.4px;
    max-width: 408.81px;
    font-size: 24px;
    line-height: 32px;
  }
}

.hero-card-description,
.video-card-description {
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #627084;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
}

@media (min-width: 768px) {
  .hero-card-description,
  .video-card-description {
    margin-top: 20.4px;
    max-width: 560px;
    font-size: 16px;
    line-height: 26px;
  }
}

.hero-card-button,
.video-card-button {
  margin-top: 16px;
  height: 48px;
  background-color: #008a8a;
  border-radius: 8px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  width: 100%;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.hero-card-button:hover {
  background-color: #007070;
}

.video-card-button {
  background-color: #233b5c;
}

.video-card-button:hover {
  background-color: rgba(35, 59, 92, 0.9);
}

@media (min-width: 768px) {
  .hero-card-button,
  .video-card-button {
    margin-top: 20.2px;
    height: 54px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 28px;
    width: auto;
  }
}

.button-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

/* Footer Section */
.footer-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  background-color: transparent;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  width: 100%;
  background-color: #001826;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    padding: 48px;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-left {
    gap: 160px;
    width: auto;
  }
}

.footer-catalog {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-catalog {
    gap: 32px;
  }
}

.footer-label {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 500;
  color: #828c90;
  font-size: 8px;
  letter-spacing: 0.4px;
  line-height: 12px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .footer-label {
    font-size: 10px;
    line-height: 14px;
  }
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-links-container {
    gap: 12px;
  }
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .footer-links-row {
    gap: 12px;
  }
}

.footer-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: -0.28px;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 28px;
    line-height: 33.6px;
  }
}

.footer-sep {
  width: 16px;
  height: 16px;
}

@media (min-width: 768px) {
  .footer-sep {
    width: 23.72px;
    height: 24.69px;
  }
}

.footer-bottom-links {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    gap: 24px;
  }
}

.footer-bottom-link {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #828c90;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.footer-bottom-link:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-bottom-link {
    font-size: 14px;
    line-height: 19.6px;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-right {
    flex-direction: row;
    gap: 0;
  }
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-contact-container {
    flex-direction: row;
    gap: 32px;
  }
}

.footer-contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-contact-left {
    gap: 32px;
  }
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-email {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  word-break: break-all;
}

@media (min-width: 768px) {
  .footer-email {
    font-size: 14px;
    line-height: 19.6px;
    white-space: nowrap;
  }
}

.footer-contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-contact-right {
    align-items: flex-end;
    gap: 32px;
  }
}

.footer-label-right {
  text-align: left;
}

@media (min-width: 768px) {
  .footer-label-right {
    text-align: right;
  }
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

@media (min-width: 768px) {
  .footer-social-links {
    align-items: flex-end;
  }
}

.footer-social-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 12px;
  text-align: left;
  letter-spacing: 0;
  line-height: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.footer-social-link:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-social-link {
    font-size: 14px;
    line-height: 19.6px;
    text-align: right;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 16px;
  width: 100%;
  background-color: #001826;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 24px;
    padding: 16px 48px;
  }
}

.footer-bottom-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
  width: 100%;
}

.footer-copyright {
  flex: 1;
  opacity: 0.6;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #828c90;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
}

@media (min-width: 768px) {
  .footer-copyright {
    line-height: 16.8px;
  }
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-bottom-right {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.footer-legal {
  opacity: 0.6;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #828c90;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  word-break: break-word;
}

@media (min-width: 768px) {
  .footer-legal {
    white-space: nowrap;
    line-height: 16.8px;
  }
}

.footer-rights {
  opacity: 0.6;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: #828c90;
  font-size: 12px;
  text-align: left;
  letter-spacing: 0;
  line-height: 16px;
}

@media (min-width: 768px) {
  .footer-rights {
    text-align: right;
    line-height: 16.8px;
  }
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
  position: relative;
  overflow: visible;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1001;
  top: 100%;
  left: 0;
  margin-top: 8px;
  padding: 8px 0;
  overflow: visible;
  white-space: nowrap;
}

/* Profile dropdown - align to right to prevent overflow */
.nav-item.dropdown:has(.profile-name-display) .dropdown-content {
  left: auto;
  right: 0;
}

/* Fallback for browsers that don't support :has() */
.nav-item.dropdown .dropdown-content.profile-dropdown {
  left: auto;
  right: 0;
}

@media (max-width: 639px) {
  .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin-top: 4px;
    margin-left: 16px;
    padding: 4px 0;
    background: rgba(0, 0, 0, 0.02);
  }
}

.nav-item.dropdown.active .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

@media (max-width: 639px) {
  .dropdown-content a {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
}

/* Profile Dropdown Styles */
.nav-profile {
  position: relative;
  display: none;
  align-items: center;
  margin-left: auto;
}

@media (max-width: 639px) {
  .nav-profile {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

.nav-profile.active {
  display: flex;
}

.profile-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: opacity 0.2s, color 0.2s;
  width: auto;
  text-align: left;
}

.profile-toggle.nav-link {
  padding: 0;
  display: flex;
  width: auto;
}

.profile-toggle:hover {
  opacity: 0.8;
}

.profile-name-display {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 500;
  color: #003a5b;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .profile-name-display {
    font-size: 13px;
  }
}

@media (min-width: 640px) {
  .profile-name-display {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .profile-name-display {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .profile-name-display {
    font-size: 14px;
  }
}

.profile-arrow {
  font-size: 10px;
  color: #003a5b;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.nav-profile.open .profile-arrow {
  transform: rotate(180deg);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

@media (max-width: 639px) {
  .profile-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
}

.nav-profile.open .profile-dropdown {
  display: flex;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.profile-details strong {
  font-size: 0.95rem;
  color: #1a2b44;
}

.profile-details span {
  font-size: 0.85rem;
  color: #5c6b7f;
}

.profile-dropdown a,
.profile-dropdown button {
  background: transparent;
  border: none;
  color: #1a2b44;
  text-align: left;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: block;
}

.profile-dropdown a:hover,
.profile-dropdown button:hover {
  background: rgba(0, 196, 255, 0.12);
  color: #0074d9;
}

.profile-dropdown button.logout {
  color: #dc2626;
  background: transparent;
  border: none;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
}

.profile-dropdown button.logout:hover {
  background: transparent;
  color: #b91c1c;
  text-decoration: underline;
}

/* iPad Air and Large Tablet Responsive Styles */
/* iPad Air: 2048×1536 (viewport typically 1024px landscape, 768px portrait) */

/* For tablets and iPad Air in landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  .nav-container {
    padding: 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .nav-menu {
    gap: 28px;
  }

  .why-choose-section {
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 150px 0;
  }

  .hero-title {
    font-size: 54px;
    line-height: 62px;
  }

  .partner-section {
    max-width: 1400px;
    margin: 0 auto;
  }

  .features-container {
    max-width: 1200px;
  }

  .benefits-section {
    max-width: 1400px;
    margin: 0 auto;
  }

  .cta-container {
    max-width: 1200px;
  }

  .hero-video-container {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* For iPad Air and larger tablets (1366px - 1536px) */
@media (min-width: 1366px) and (max-width: 1536px) {
  .nav-container {
    padding: 28px 50px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .nav-menu {
    gap: 32px;
  }

  .why-choose-section {
    max-width: 1600px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 180px 0;
  }

  .hero-title {
    font-size: 58px;
    line-height: 65px;
  }

  .partner-section {
    max-width: 1600px;
    margin: 0 auto;
  }

  .features-container {
    max-width: 1400px;
  }

  .benefits-section {
    max-width: 1600px;
    margin: 0 auto;
  }

  .cta-container {
    max-width: 1400px;
  }

  .hero-video-container {
    max-width: 1600px;
    margin: 0 auto;
  }
}

/* For iPad Air in portrait and similar sizes (768px - 1024px portrait) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .nav-container {
    padding: 20px 32px;
  }

  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 18px;
  }

  .hero-content {
    padding: 120px 0;
  }

  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .partner-content {
    flex-direction: column;
  }

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

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

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

/* Galaxy Tab 10 and similar Android tablets (800px - 900px) */
@media (min-width: 800px) and (max-width: 900px) {
  .nav-container {
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .logo {
    width: 140px;
    height: 42px;
  }

  .logo-tagline {
    font-size: 13px;
    max-width: none;
    display: block;
    white-space: nowrap;
    overflow: visible;
  }

  .nav-menu {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-link {
    font-size: 17px;
    padding: 8px 4px;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .why-choose-section {
    padding: 16px 24px;
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 42px;
    line-height: 50px;
    padding: 0 16px;
  }

  .hero-subtitle {
    font-size: 16px;
    padding: 0 16px;
  }

  .partner-section {
    padding: 40px 24px;
  }

  .partner-title {
    font-size: 36px;
    line-height: 44px;
  }

  .partner-description {
    font-size: 16px;
  }

  .partner-content {
    flex-direction: column;
    gap: 32px;
  }

  .challenges-list {
    gap: 14px;
  }

  .challenge-card-content {
    padding: 16px;
  }

  .challenge-title {
    font-size: 15px;
    line-height: 18px;
  }

  .challenge-description {
    font-size: 13px;
    line-height: 20px;
  }

  .partner-image-container {
    width: 100%;
  }

  .partner-image {
    width: 100%;
    height: auto;
  }

  .video-cta-buttons {
    gap: 16px;
    margin-top: 20px;
  }

  .video-cta-button {
    padding: 20px 32px;
    font-size: 18px;
  }

  .features-section {
    padding: 48px 24px;
  }

  .features-container {
    max-width: 100%;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 40px;
    line-height: 48px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .feature-card-content {
    padding: 20px;
  }

  .feature-card-title {
    font-size: 18px;
    line-height: 26px;
  }

  .feature-card-description {
    font-size: 14px;
    line-height: 22px;
  }

  .benefits-section {
    padding: 48px 24px;
  }

  .benefits-title {
    font-size: 40px;
    line-height: 48px;
  }

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

  .benefit-card-content {
    padding: 20px;
  }

  .quote-section {
    padding: 60px 20px;
  }

  .quote-container {
    max-width: 100%;
    padding: 0 12px;
    gap: 10px;
    grid-template-columns: auto 1fr auto;
  }

  .quote-mark {
    font-size: 70px;
  }

  @media (max-width: 850px) {
    .quote-mark {
      font-size: 60px;
    }
  }

  .quote-mark-open {
    margin-right: -8px;
    transform: translateY(-4px);
  }

  .quote-mark-close {
    margin-left: -8px;
    transform: translateY(4px);
  }

  .quote-text {
    font-size: 24px;
    line-height: 34px;
    padding: 0 4px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .quote-line-1 {
    white-space: normal;
    display: inline;
  }

  /* If quote marks cause overflow, stack them */
  @media (max-width: 820px) {
    .quote-container {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .quote-mark-open {
      grid-column: 1;
      margin: 0;
      transform: none;
      align-self: center;
      font-size: 50px;
    }

    .quote-mark-close {
      grid-column: 1;
      margin: 0;
      transform: none;
      align-self: center;
      font-size: 50px;
    }

    .quote-text {
      grid-column: 1;
      font-size: 22px;
      line-height: 32px;
      padding: 0;
    }
  }

  .cta-section {
    padding: 48px 24px;
  }

  .cta-title {
    font-size: 40px;
    line-height: 48px;
  }

  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .testimonial-section {
    padding: 40px 24px;
  }

  .testimonial-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-video-container {
    padding: 24px;
    gap: 20px;
  }

  .hero-card-content,
  .video-card-content {
    padding: 28px;
  }

  .hero-card-title,
  .video-card-title {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-card-description,
  .video-card-description {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-card-button,
  .video-card-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* Galaxy Tab 10 in portrait orientation (800px width) */
@media (min-width: 800px) and (max-width: 900px) and (orientation: portrait) {
  .nav-container {
    padding: 16px 20px;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-link {
    font-size: 16px;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 38px;
    line-height: 46px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Quote section fixes for portrait */
  .quote-section {
    padding: 50px 16px;
  }

  .quote-container {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .quote-mark {
    font-size: 50px;
    display: inline-block;
  }

  .quote-mark-open {
    grid-column: 1;
    margin: 0;
    transform: none;
    align-self: center;
  }

  .quote-mark-close {
    grid-column: 1;
    margin: 0;
    transform: none;
    align-self: center;
  }

  .quote-text {
    grid-column: 1;
    font-size: 20px;
    line-height: 30px;
    padding: 0;
    max-width: 100%;
  }
}

/* For very large displays (1920px and above) */
@media (min-width: 1920px) {
  .nav-container {
    padding: 32px 60px;
    max-width: 1920px;
    margin: 0 auto;
  }

  .why-choose-section {
    max-width: 1920px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 220px 0;
  }

  .hero-title {
    font-size: 64px;
    line-height: 72px;
  }

  .partner-section {
    max-width: 1920px;
    margin: 0 auto;
  }

  .features-container {
    max-width: 1600px;
  }

  .benefits-section {
    max-width: 1920px;
    margin: 0 auto;
  }

  .cta-container {
    max-width: 1600px;
  }

  .hero-video-container {
    max-width: 1920px;
    margin: 0 auto;
  }
}

/* Additional iPad Air specific fixes */
@media (min-width: 768px) and (max-width: 2048px) {
  /* Prevent horizontal overflow */
  .app-container {
    overflow-x: hidden;
    width: 100%;
  }

  /* Ensure navigation doesn't overflow */
  .nav-menu {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* Optimize logo and tagline for tablet */
  .logo-container {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-tagline {
    max-width: none;
    white-space: nowrap;
    overflow: visible;
  }

  /* Ensure text doesn't become too large */
  .hero-subtitle {
    max-width: 90%;
  }

  /* Optimize card layouts */
  .challenge-card-content {
    padding: 18px;
  }

  .feature-card-content {
    padding: 22px;
  }

  /* Ensure buttons are appropriately sized */
  .video-cta-button {
    padding: 22px 36px;
    font-size: 19px;
  }

  /* Optimize grid gaps for tablet */
  .features-grid {
    gap: 20px;
  }

  .benefits-grid {
    gap: 18px;
  }

  .cta-grid {
    gap: 20px;
  }
}

/* Galaxy Tab 10 specific overflow and spacing fixes */
@media (min-width: 800px) and (max-width: 900px) {
  /* Ensure no horizontal scrolling */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .app-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  /* Fix navigation wrapping */
  .nav-container {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo-container {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 50%;
  }

  .nav-menu {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  /* Ensure dropdowns don't overflow */
  .dropdown-content {
    max-width: calc(100vw - 40px);
    left: auto;
    right: 0;
  }

  /* Fix section padding */
  .why-choose-section,
  .partner-section,
  .features-section,
  .benefits-section,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Optimize text sizes for readability */
  .partner-title,
  .features-title,
  .benefits-title,
  .cta-title,
  .testimonial-title {
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Ensure images don't overflow */
  .partner-image,
  .features-logo,
  .benefits-logo,
  .cta-logo {
    max-width: 100%;
    height: auto;
  }

  /* Fix grid items */
  .feature-card,
  .benefit-card,
  .cta-card,
  .challenge-card {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Quote section overflow prevention */
  .quote-section {
    overflow-x: hidden;
    width: 100%;
  }

  .quote-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .quote-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* Comprehensive responsive styles for 640px - 1000px range */
@media (min-width: 640px) and (max-width: 1000px) {
  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .app-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  /* Navigation adjustments */
  .nav-container {
    padding: 18px 20px;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }

  .logo-container {
    flex: 0 0 auto;
    min-width: 0;
    max-width: 45%;
  }

  .logo {
    width: 130px;
    height: 40px;
  }

  .logo-tagline {
    font-size: 12px;
    max-width: none;
    display: block;
    white-space: nowrap;
    overflow: visible;
    line-height: 1.3;
    margin-top: 2px;
  }

  .nav-menu {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
  }

  .nav-link {
    font-size: 17px;
    padding: 6px 6px;
    white-space: nowrap;
  }

  /* Ensure profile dropdown doesn't break layout */
  .nav-item.nav-login,
  .nav-item.dropdown:has(.profile-name-display) {
    flex-shrink: 0;
  }

  .hamburger-menu {
    display: flex !important;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-menu.active {
    display: flex !important;
  }

  /* Hero section */
  .why-choose-section {
    padding: 16px 20px;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-text-container {
    max-width: 100%;
    padding: 0 12px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 46px;
    padding: 0;
    word-wrap: break-word;
    hyphens: auto;
  }

  .hero-subtitle {
    font-size: 15px;
    padding: 0;
    max-width: 100%;
    line-height: 1.5;
  }

  /* Partner section */
  .partner-section {
    padding: 40px 20px;
  }

  .partner-header {
    margin-bottom: 32px;
  }

  .partner-title {
    font-size: 32px;
    line-height: 40px;
    word-wrap: break-word;
    hyphens: auto;
    margin-bottom: 12px;
  }

  .partner-description {
    font-size: 15px;
    line-height: 22px;
  }

  .partner-content {
    flex-direction: column;
    gap: 28px;
  }

  .challenges-list {
    gap: 12px;
  }

  .challenge-card {
    width: 100%;
    box-sizing: border-box;
  }

  .challenge-card-content {
    padding: 14px;
  }

  .challenge-title {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 6px;
  }

  .challenge-description {
    font-size: 13px;
    line-height: 19px;
  }

  .partner-image-container {
    width: 100%;
  }

  .partner-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .video-cta-buttons {
    gap: 16px;
    margin-top: 20px;
  }

  .video-cta-button {
    padding: 20px 32px;
    font-size: 18px;
    width: 100%;
  }

  /* Features section */
  .features-section {
    padding: 48px 24px;
  }

  .features-container {
    max-width: 100%;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 38px;
    line-height: 46px;
    word-wrap: break-word;
  }

  .features-subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .feature-card-content {
    padding: 20px;
  }

  .feature-card-title {
    font-size: 18px;
    line-height: 26px;
  }

  .feature-card-description {
    font-size: 14px;
    line-height: 22px;
  }

  /* Benefits section */
  .benefits-section {
    padding: 48px 24px;
  }

  .benefits-title {
    font-size: 38px;
    line-height: 46px;
    word-wrap: break-word;
  }

  .benefits-description {
    font-size: 17px;
    line-height: 26px;
  }

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

  .benefit-card-content {
    padding: 20px;
  }

  .benefit-card-title {
    font-size: 17px;
    line-height: 26px;
  }

  .benefit-card-description {
    font-size: 13px;
    line-height: 22px;
  }

  /* Quote section */
  .quote-section {
    padding: 60px 20px;
    overflow-x: hidden;
    width: 100%;
  }

  .quote-container {
    max-width: 100%;
    padding: 0 12px;
    gap: 10px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .quote-mark {
    font-size: 70px;
  }

  .quote-mark-open {
    margin-right: -8px;
    transform: translateY(-4px);
  }

  .quote-mark-close {
    margin-left: -8px;
    transform: translateY(4px);
  }

  .quote-text {
    font-size: 24px;
    line-height: 34px;
    padding: 0 4px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
  }

  .quote-line-1 {
    white-space: normal;
    display: inline;
  }

  /* CTA section */
  .cta-section {
    padding: 48px 24px;
  }

  .cta-title {
    font-size: 38px;
    line-height: 46px;
    word-wrap: break-word;
  }

  .cta-description {
    font-size: 17px;
    line-height: 26px;
  }

  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .cta-card-content {
    padding: 16px;
  }

  .cta-card-title {
    font-size: 15px;
    line-height: 22px;
  }

  .cta-card-description {
    font-size: 12px;
    line-height: 18px;
  }

  /* Testimonial section */
  .testimonial-section {
    padding: 40px 24px;
  }

  .testimonial-title {
    font-size: 38px;
    line-height: 46px;
  }

  .testimonial-content {
    font-size: 18px;
    line-height: 26px;
  }

  /* Hero video container */
  .hero-video-container {
    padding: 24px;
    gap: 20px;
    flex-direction: column;
  }

  .hero-card-content,
  .video-card-content {
    padding: 28px;
  }

  .hero-card-title,
  .video-card-title {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-card-description,
  .video-card-description {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-card-button,
  .video-card-button {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
  }

  /* Dropdown fixes */
  .dropdown-content {
    max-width: calc(100vw - 40px);
    left: auto;
    right: 0;
  }

  /* Ensure all images are responsive */
  .features-logo,
  .benefits-logo,
  .cta-logo {
    max-width: 100%;
    height: auto;
  }

  /* Grid item fixes */
  .feature-card,
  .benefit-card,
  .cta-card,
  .challenge-card {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Mid-range adjustments for 750px - 900px */
@media (min-width: 750px) and (max-width: 900px) {
  .nav-container {
    padding: 18px 24px;
    gap: 14px;
  }

  .logo-container {
    max-width: 42%;
  }

  .logo {
    width: 145px;
    height: 43px;
  }

  .logo-tagline {
    font-size: 12.5px;
    white-space: nowrap;
    overflow: visible;
    max-width: none;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-link {
    font-size: 17px;
    padding: 7px 6px;
  }

  .hero-content {
    padding: 65px 0;
  }

  .hero-title {
    font-size: 39px;
    line-height: 47px;
  }

  .partner-section {
    padding: 44px 22px;
  }

  .partner-title {
    font-size: 33px;
    line-height: 41px;
  }
}

/* Quote section stacking for smaller tablets (640px - 750px) */
@media (min-width: 640px) and (max-width: 750px) {
  .quote-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-mark-open {
    grid-column: 1;
    margin: 0;
    transform: none;
    align-self: center;
    font-size: 50px;
  }

  .quote-mark-close {
    grid-column: 1;
    margin: 0;
    transform: none;
    align-self: center;
    font-size: 50px;
  }

  .quote-text {
    grid-column: 1;
    font-size: 22px;
    line-height: 32px;
    padding: 0;
  }
}

/* Specific adjustments for 900px - 1000px range */
@media (min-width: 900px) and (max-width: 1000px) {
  .nav-container {
    padding: 20px 28px;
    gap: 16px;
  }

  .logo-container {
    max-width: 40%;
  }

  .logo {
    width: 150px;
    height: 45px;
  }

  .logo-tagline {
    font-size: 13px;
    max-width: none;
    white-space: nowrap;
    overflow: visible;
  }

  .nav-menu {
    gap: 16px;
    flex-wrap: nowrap;
  }

  .nav-link {
    font-size: 18px;
    padding: 8px 8px;
  }

  .hero-content {
    padding: 100px 0;
  }

  .hero-title {
    font-size: 44px;
    line-height: 52px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quote-mark {
    font-size: 80px;
  }

  .quote-text {
    font-size: 26px;
    line-height: 36px;
  }
}

/* Specific fixes for 596px width (narrow mobile devices) */
@media (min-width: 480px) and (max-width: 640px) {
  /* Navigation adjustments */
  .nav-container {
    padding: var(--spacing-sm) var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--gap-sm);
  }

  .logo-container {
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100%;
  }

  .logo {
    width: clamp(110px, 15vw + 50px, 140px);
    height: clamp(35px, 4vw + 25px, 45px);
  }

  .logo-tagline {
    font-size: clamp(0.6875rem, 0.5vw + 0.5rem, 0.8125rem);
    max-width: none;
    display: block;
    white-space: nowrap;
    overflow: visible;
    line-height: 1.3;
    margin-top: 2px;
  }

  .hamburger-menu {
    display: flex !important;
    z-index: 1001;
  }

  .nav-menu {
    display: none !important;
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: var(--gap-sm);
    margin-top: var(--spacing-xs);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    font-size: clamp(1.0625rem, 1.1vw + 0.85rem, 1.1875rem);
    padding: var(--spacing-sm) 0;
    width: 100%;
    display: block;
  }

  /* Hero section */
  .why-choose-section {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .hero-content {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }

  .hero-text-container {
    padding: 0 var(--spacing-sm);
  }

  .hero-title {
    font-size: clamp(1.75rem, 4vw + 1rem, 2.25rem);
    line-height: clamp(2.25rem, 4.5vw + 1.25rem, 2.75rem);
  }

  .hero-subtitle {
    font-size: clamp(0.875rem, 1.25vw + 0.625rem, 1rem);
    padding: 0 var(--spacing-xs);
  }

  /* Partner section */
  .partner-section {
    padding: var(--padding-section-sm) var(--spacing-md);
  }

  .partner-title {
    font-size: clamp(1.5rem, 3.5vw + 0.75rem, 2rem);
    line-height: clamp(1.875rem, 4vw + 1rem, 2.5rem);
  }

  .partner-description {
    font-size: clamp(0.9375rem, 1.25vw + 0.6875rem, 1.0625rem);
    line-height: 1.5;
  }

  .challenge-card-content {
    padding: var(--spacing-md);
  }

  .challenge-title {
    font-size: clamp(0.9375rem, 1.5vw + 0.6875rem, 1.0625rem);
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
  }

  .challenge-description {
    font-size: clamp(0.8125rem, 1vw + 0.625rem, 0.9375rem);
    line-height: 1.5;
  }

  /* Features section */
  .features-section {
    padding: var(--padding-section-sm) var(--spacing-md);
  }

  .features-title {
    font-size: clamp(1.5rem, 3.5vw + 0.75rem, 2rem);
    line-height: clamp(1.875rem, 4vw + 1rem, 2.5rem);
  }

  .features-subtitle {
    font-size: clamp(0.9375rem, 1.25vw + 0.6875rem, 1.0625rem);
  }

  .features-grid {
    gap: var(--gap-md);
  }

  .feature-card-content {
    padding: var(--spacing-md);
  }

  .feature-card-title {
    font-size: clamp(1rem, 1.5vw + 0.75rem, 1.125rem);
    line-height: 1.5;
  }

  .feature-card-description {
    font-size: clamp(0.875rem, 1vw + 0.625rem, 0.9375rem);
    line-height: 1.5;
  }

  /* Benefits section */
  .benefits-section {
    padding: var(--padding-section-sm) var(--spacing-md);
  }

  .benefits-title {
    font-size: clamp(1.5rem, 3.5vw + 0.75rem, 2rem);
    line-height: clamp(1.875rem, 4vw + 1rem, 2.5rem);
  }

  .benefits-description {
    font-size: clamp(0.9375rem, 1.25vw + 0.6875rem, 1.0625rem);
  }

  .benefit-card-content {
    padding: var(--spacing-md);
  }

  .benefit-card-title {
    font-size: clamp(0.9375rem, 1.5vw + 0.6875rem, 1.0625rem);
    line-height: 1.5;
  }

  .benefit-card-description {
    font-size: clamp(0.8125rem, 1vw + 0.625rem, 0.9375rem);
    line-height: 1.5;
  }

  /* Quote section */
  .quote-section {
    padding: var(--padding-section-sm) var(--spacing-md);
  }

  .quote-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    padding: 0;
  }

  .quote-mark {
    font-size: clamp(3rem, 6vw + 2rem, 4rem);
  }

  .quote-mark-open,
  .quote-mark-close {
    grid-column: 1;
    margin: 0;
    transform: none;
    align-self: center;
  }

  .quote-text {
    grid-column: 1;
    font-size: clamp(1.125rem, 2.5vw + 0.75rem, 1.5rem);
    line-height: clamp(1.5rem, 3vw + 1rem, 2rem);
    padding: 0;
  }

  /* CTA section */
  .cta-section {
    padding: var(--padding-section-sm) var(--spacing-md);
  }

  .cta-title {
    font-size: clamp(1.5rem, 3.5vw + 0.75rem, 2rem);
    line-height: clamp(1.875rem, 4vw + 1rem, 2.5rem);
  }

  .cta-description {
    font-size: clamp(0.9375rem, 1.25vw + 0.6875rem, 1.0625rem);
  }

  .cta-grid {
    gap: var(--gap-md);
  }

  .cta-card-content {
    padding: var(--spacing-md);
  }

  .cta-card-title {
    font-size: clamp(0.9375rem, 1.5vw + 0.6875rem, 1.0625rem);
  }

  .cta-card-description {
    font-size: clamp(0.8125rem, 1vw + 0.625rem, 0.9375rem);
  }

  /* Hero video container */
  .hero-video-container {
    padding: var(--spacing-md);
    gap: var(--gap-md);
  }

  .hero-card-content,
  .video-card-content {
    padding: var(--spacing-lg);
  }

  .hero-card-title,
  .video-card-title {
    font-size: clamp(1.125rem, 2vw + 0.875rem, 1.375rem);
    line-height: 1.4;
  }

  .hero-card-description,
  .video-card-description {
    font-size: clamp(0.875rem, 1.25vw + 0.625rem, 1rem);
    line-height: 1.5;
  }

  .hero-card-button,
  .video-card-button {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: clamp(0.9375rem, 1.25vw + 0.6875rem, 1.0625rem);
    width: 100%;
  }

  /* Video CTA buttons */
  .video-cta-button {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: clamp(1rem, 1.5vw + 0.75rem, 1.125rem);
    width: 100%;
  }

  /* Testimonial section */
  .testimonial-section {
    padding: var(--padding-section-sm) var(--spacing-md);
  }

  .testimonial-title {
    font-size: clamp(1.5rem, 3.5vw + 0.75rem, 2rem);
    line-height: clamp(1.875rem, 4vw + 1rem, 2.5rem);
  }

  .testimonial-content {
    font-size: clamp(0.9375rem, 1.25vw + 0.6875rem, 1.0625rem);
  }

  /* Ensure no horizontal overflow */
  .app-container,
  .why-choose-section,
  .partner-section,
  .features-section,
  .benefits-section,
  .quote-section,
  .cta-section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  /* Dropdown fixes */
  .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    margin-left: var(--spacing-md);
    margin-top: var(--spacing-xs);
  }
}

/* Fix for iPad Air landscape orientation specifically */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .nav-menu {
    gap: 24px;
    flex-wrap: nowrap;
  }

  .nav-link {
    font-size: 19px;
  }

  .hero-content {
    padding: 160px 0;
  }

  .partner-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

