﻿.currency-symbol {
  font-family: Arial, Helvetica, sans-serif;
}
/* ========================================
   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 {
  --cta-primary: #10b981;
  --cta-primary-hover: #059669;

  /* 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;
/* Header nav styles moved to header.php */

  /* Global Top Area Background */
  --bg-top-area: #f8f9fa;

  /* Full-screen dialogs ΓÇö above sticky nav (~2000), drawers, Razorpay, Google GIS */
  --proaimax-modal-z: 2147483000;
}

/* Blocking overlays / dialogs (uses --proaimax-modal-z) */
#checkoutAuthOverlay,
#bundleAuthOverlay,
.refund-modal,
.download-modal,
.fullscreen-notes-modal,
.rating-modal,
.enrollment-modal,
.modal-overlay,
.payment-success-overlay,
.embed-modal {
  z-index: var(--proaimax-modal-z) !important;
}

/* 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: #f8f9fa;
  /* Tinted background */
  color: #141414;
  line-height: var(--leading-normal);
  font-size: var(--font-base);
  overflow-x: clip;
  width: 100%;
}


.app-container {
  background-color: #f8f9fa;
  /* Tinted background */
  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: var(--bg-top-area);
  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;
    /* Remove lateral padding that was causing header inconsistency */
    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;
}


.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  padding: clamp(4rem, 12vw, 7.5rem) 0 clamp(3rem, 8vw, 6.25rem) !important;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  width: 100%;
  max-width: min(100%, 927px);
  padding: 0 clamp(0.25rem, 2vw, var(--spacing-md));
  box-sizing: border-box;
}

.hero-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  color: #003a5b;
  font-size: clamp(1.5rem, 5.5vw + 0.65rem, 3.75rem);
  text-align: center;
  letter-spacing: 0;
  line-height: clamp(2rem, 5.8vw + 1rem, 4.25rem);
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.hero-subtitle {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  color: rgba(0, 30, 50, 0.9);
  font-size: clamp(1.115rem, 1.55vw + 0.775rem, 1.3rem);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.6;
  padding: 0 var(--spacing-xs);
  margin-top: var(--spacing-xs);
}

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-cta-buttons {
    flex-direction: row;
    gap: 20px;
  }
}

.hero-btn-primary {
  background-color: #22c55e;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary:hover {
  background-color: #16a34a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
  background-color: #233b5c;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:hover {
  background-color: #1a2d45;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Partner Section */
.partner-section {
  width: 100%;
  background-color: #f8f9fa;
  /* Consistent tint */
  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: 1200px) {
  .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 {
    order: -1;
  }

  .partner-image-container {
    order: 1;
  }
}

.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .challenges-list {
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .challenges-list {
    max-width: 640px;
    flex: 0 1 auto;
  }
}

/* Optimized layout for 1280px screens - content first, video second */
@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;
  }

  .challenges-list {
    order: -1;
  }

  .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: 1200px) {
  .partner-image-container {
    width: auto;
    flex: 0 0 auto;
  }
}

.partner-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .partner-image {
    width: 660px;
    height: 427px;
  }
}

/* Homepage video container - match partner-image size */
.homepage-video-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .homepage-video-container {
    width: 660px;
    height: 427px;
  }
}

.homepage-video-wrapper {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .homepage-video-wrapper {
    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: 1280px) {
  .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;
  }
}

.feature-card--coming-soon {
  position: relative;
}

.feature-card-coming-soon-label {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b;
  background: rgba(148, 163, 184, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

/* 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(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .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: #f1f5f9;
  /* Clean professional light slate */
  background-image: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  padding: var(--padding-section-sm) var(--spacing-md);
  border-top: 1px solid #e2e8f0;
}

@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: 40px;
}

@media (min-width: 768px) {
  .cta-header {
    gap: 20px;
    margin-bottom: 64px;
  }
}

.cta-title-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  color: #003a5b;
  font-size: 32px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 48px;
  }
}

.cta-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .cta-logo {
    height: 52px;
  }
}

.cta-description {
  max-width: 100%;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 500;
  color: #475569;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cta-description {
    max-width: 720px;
    font-size: 18px;
  }
}


.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .cta-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container-2xl);
  }
}

.cta-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-card.no-image {
  min-height: 200px;
  justify-content: center;
  background: #ffffff;
  /* Clean white */
  border: 1px solid #e2e8f0;
  border-top: 5px solid #008a8a;
  /* Branding teal accent */
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card.no-image:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #008a8a;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .cta-card {
    border-radius: var(--radius-lg);
  }
}

.cta-card-content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  height: 100%;
  justify-content: center;
}

.cta-card.no-image .cta-card-content {
  padding: 32px;
  text-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-card-content {
    gap: 16px;
  }
}

.cta-card.no-image .cta-card-title,
.cta-card.no-image .cta-card-title * {
  color: #008a8a !important;
  /* Professional Teal */
  text-shadow: none;
}

.cta-card.no-image .cta-card-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.cta-card.no-image .cta-card-title p {
  margin: 0;
  display: block;
  font-size: inherit;
}

.cta-card.no-image .cta-card-description,
.cta-card.no-image .cta-card-description * {
  color: #334155 !important;
  /* Dark slate for high readability on white */
}

.cta-card.no-image .cta-card-description {
  font-size: 15px;
  line-height: 1.6;
}

.cta-card.no-image .cta-card-description p {
  margin: 0;
  display: block;
}

/* Global Override for Benefits Section */
#benefitsContainer .cta-card.no-image {
  border: 1px solid #e2e8f0 !important;
  border-top: 5px solid #008a8a !important;
  background-color: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
  min-height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#benefitsContainer .cta-card.no-image:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 138, 138, 0.12) !important;
  border-color: rgba(0, 138, 138, 0.3) !important;
}

#benefitsContainer .cta-card.no-image .cta-card-content {
  padding: 32px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  align-items: center !important;
  justify-content: center !important;
}

#benefitsContainer .cta-card.no-image .cta-card-title,
#benefitsContainer .cta-card.no-image .cta-card-title * {
  color: #008a8a !important;
  font-family: 'Playfair Display', Helvetica, serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-shadow: none !important;
}

#benefitsContainer .cta-card.no-image .cta-card-description,
#benefitsContainer .cta-card.no-image .cta-card-description * {
  color: #475569 !important;
  font-family: 'Rethink Sans', Helvetica, sans-serif !important;
  font-size: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  line-height: 1.6 !important;
  text-align: center !important;
}

#benefitsContainer .cta-card.no-image .cta-card-description {
  font-weight: 500;
}

#benefitsContainer .cta-card.no-image .cta-card-description strong,
#benefitsContainer .cta-card.no-image .cta-card-description b {
  font-weight: 700 !important;
}

.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: var(--font-lg);
  letter-spacing: 0;
  line-height: var(--leading-tight);
}

.cta-card-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(20, 20, 20, 0.6);
  font-size: var(--font-sm);
  letter-spacing: 0;
  line-height: var(--leading-normal);
  white-space: pre-line;
}

/* 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);
}

/* All on-call services off in admin: keep homepage blocks visible, non-clickable, read as plain text */
.features-section.on-call-all-inactive .features-grid .feature-card {
  pointer-events: none;
  cursor: default;
}

.features-section.on-call-all-inactive .features-grid .feature-card:hover {
  transform: none;
  box-shadow: none;
}

.video-card.on-call-all-inactive .video-card-button {
  pointer-events: none;
  cursor: default;
  height: auto;
  min-height: 0;
  padding: 0;
  margin-top: 16px;
  background: transparent;
  box-shadow: none;
  border: none;
  color: #263140;
  font-weight: 600;
  justify-content: flex-start;
  width: auto;
}

.video-card.on-call-all-inactive .video-card-button:hover {
  background: transparent;
  color: #263140;
}

.video-card.on-call-all-inactive .video-card-button .button-icon {
  display: none;
}

@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 - Modern Design */
.footer-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: linear-gradient(180deg, #001826 0%, #000f1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  width: 100%;
  padding: 35px 20px;
  background-color: #001826;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 45px 48px;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
  }
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: 'Playfair Display', Helvetica, serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .footer-logo {
    font-size: 28px;
  }
}

.footer-tagline {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #a0aec0;
  margin: 0;
  max-width: 280px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column-title {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list li {
  margin: 0;
}

.footer-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #008a8a;
  transition: width 0.2s ease;
}

.footer-link:hover::before {
  width: 4px;
}

/* Contact Section */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer "Get in Touch" card (screenshot-style UI) */
.footer-contact-card {
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
  padding: 18px;
  box-sizing: border-box;
  background:
    radial-gradient(900px 460px at 18% -10%, rgba(0, 138, 138, 0.24), transparent 58%),
    radial-gradient(900px 460px at 110% 10%, rgba(255, 255, 255, 0.10), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 138, 138, 0.10) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-contact-card-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}

.footer-contact-row--phone {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 138, 138, 0.14);
  border: 1px solid rgba(0, 138, 138, 0.28);
  color: #52e3e3;
  flex-shrink: 0;
}

.footer-contact-icon i {
  font-size: 18px;
  line-height: 1;
}

.footer-contact-value {
  color: rgba(203, 213, 224, 0.95);
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  font-size: 18px;
  line-height: 1.2;
  min-width: 0;
}

.footer-contact-value--email {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-contact-value:hover {
  color: #ffffff;
}

.footer-contact-value--phone {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0.6px;
  color: #ffffff;
  white-space: nowrap;
  min-width: 0;
}

.footer-contact-value--phone .footer-phone-country,
.footer-contact-value--phone .footer-phone-number {
  font-weight: inherit;
  letter-spacing: inherit;
}

.footer-phone-country {
  font-size: 20px;
  line-height: 1;
}

.footer-phone-number {
  font-size: 20px;
  line-height: 1;
}

.footer-contact-actions-label {
  margin-top: 6px;
  color: rgba(203, 213, 224, 0.85);
  font-size: 14px;
  font-weight: 600;
}

.footer-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  font-weight: 700;
  font-size: 14px;
  min-height: 48px;
  text-align: center;
}

.footer-contact-action i {
  font-size: 16px;
  line-height: 1;
  width: 16px;
  text-align: center;
}

.footer-contact-action span {
  letter-spacing: 0.2px;
  min-width: 84px;
}

.footer-contact-action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 138, 138, 0.28);
  color: #ffffff;
}

.footer-contact-action.whatsapp {
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.25);
}

.footer-contact-action.telegram {
  background: rgba(0, 136, 204, 0.12);
  border-color: rgba(0, 136, 204, 0.25);
}

.footer-contact-action.callus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
}

.footer-contact-action.botim {
  background: rgba(148, 163, 184, 0.10);
  border-color: rgba(148, 163, 184, 0.22);
}

@media (max-width: 520px) {
  .footer-contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact-card { max-width: 100%; }
  .footer-contact-value--email { font-size: 18px; }
  .footer-phone-country { font-size: 22px; }
  .footer-phone-number { font-size: 28px; }
}

.footer-email-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 15px;
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border: none;
}

.footer-email-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-email-link svg {
  flex-shrink: 0;
  color: #008a8a;
}

.footer-email-link span {
  word-break: break-word;
}

.footer-contact-info .footer-contact-item {
  display: block;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  color: #cbd5e0;
  margin-top: 4px;
}

.footer-contact-info a.footer-contact-item {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a.footer-contact-item:hover {
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  width: 100%;
  padding: 16px 20px;
  background-color: #000f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    padding: 18px 48px;
  }
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 13px;
  color: #718096;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal-links {
    justify-content: flex-end;
  }
}

.legal-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 13px;
  color: #718096;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: #ffffff;
}

.legal-separator {
  color: #718096;
  font-size: 13px;
}


/* Extra small screens - ensure cart icon is visible and properly sized */
@media (max-width: 480px) {
  .nav-item.nav-cart .nav-link {
    padding: 14px 16px;
    min-height: 48px;
  }

  .nav-item.nav-cart .nav-link i {
    font-size: 1.3rem;
  }

  .nav-item.nav-cart .cart-badge {
    top: 10px;
    right: 16px;
    min-width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }
}

/* Ensure cart icon doesn't break layout on any screen */
.nav-item.nav-cart {
  flex-shrink: 0;
}

/* Profile dropdown cart badge positioning */
.profile-dropdown .cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-dropdown .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff4d4f;
  color: white;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  min-width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
}

.profile-dropdown #cartLink {
  justify-content: space-between;
}

.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 - 1919px) ΓÇö page layout only */
@media (min-width: 1024px) and (max-width: 1919px) {
  .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: 100%;
    margin: 0;
  }

  .nav-menu {
    gap: 20px;
  }

  .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);
  }

}

/* 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: 105px;
    height: 32px;
  }

  .logo-tagline {
    font-size: 13px;
    max-width: none;
    display: block;
    white-space: nowrap;
    overflow: visible;
  }

  .nav-menu {
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 17px;
    padding: 8px 4px;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-menu.active {
    display: flex !important;
    justify-content: flex-start;
    align-items: stretch;
  }

  .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;
    }
  }


  .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;
  }


  /* 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) {
  .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%;
  }

  /* Inline nav: right-aligned cluster; hamburger below 1280px or .nav-force-drawer */
  @media (min-width: 1280px) {
    .nav-container:not(.nav-force-drawer) .nav-actions,
    .nav-container:not(.nav-force-drawer) .nav-menu {
      flex-wrap: nowrap !important;
      justify-content: flex-end !important;
    }
  }

  /* Optimize logo and tagline for tablet */
  .logo-container {
    flex-shrink: 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;
  }

}

/* 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%;
  }

  /* Hamburger drawer uses column layout; do not apply row-style flex-end here */

  /* Ensure dropdowns don't overflow */
  .dropdown-content {
    max-width: calc(100vw - 40px);
    left: auto;
    right: 0;
  }

  /* 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: 100px;
    height: 30px;
  }

  .logo-tagline {
    font-size: 12px;
    max-width: none;
    display: block;
    white-space: nowrap;
    overflow: visible;
    line-height: 1.3;
    margin-top: 2px;
  }

  /* Row nav tweaks only apply when the bar is shown inline (ΓëÑ1280px); this query is <1000px so hamburger is always used */
  .nav-menu {
    gap: 12px;
    flex-wrap: wrap;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-link {
    font-size: 17px;
    padding: 6px 6px;
    white-space: nowrap;
  }

  /* Ensure profile dropdown doesn't break layout */
  .nav-item.nav-login,
  .nav-item.nav-profile {
    flex-shrink: 0;
  }

  .hamburger-menu {
    display: flex !important;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-menu.active {
    display: flex !important;
    justify-content: flex-start;
    align-items: stretch;
  }

  /* 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;
  }

  /* 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;
  }

}

/* 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: 110px;
    height: 32px;
  }

  .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: wrap;
  }

  .nav-link {
    font-size: 18px;
    padding: 8px 8px;
  }

  .hero-content {
    padding: 100px 0;
  }

  .hero-title {
    font-size: 44px;
    line-height: 52px;
  }

  .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(90px, 12vw + 32px, 115px);
    height: clamp(26px, 3vw + 16px, 36px);
  }

  .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;
  }

  /* Drawer panel layout lives in @media (max-width: 1279px); keep only display toggles here */
  .nav-menu {
    display: none !important;
  }

  .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;
  }

  /* 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);
  }

  /* 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) {
  .hero-content {
    padding: 160px 0;
  }

  .partner-content {
    flex-direction: row;
    align-items: flex-start;
  }
}


/* Consolidated Footer Contact Styles */
.footer-mobile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin-top: 12px;
}

.footer-phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 15px;
  color: #cbd5e0;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-phone-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-phone-link svg {
  color: #008a8a;
  flex-shrink: 0;
}

.footer-app-connect {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.footer-app-btn {
  height: auto;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e0;
  background-color: transparent;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.footer-app-btn i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-app-btn span {
  opacity: 0.9;
}

.footer-app-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

/* Hover States for Contact & Social - Pure color highlight, no boxes */
.footer-app-btn.whatsapp:hover {
  color: #22c55e;
}

.footer-app-btn.telegram:hover {
  color: #0088cc;
}

.footer-app-btn.botim:hover {
  color: #0084ff;
}

.footer-app-btn.call:hover {
  color: #10b981;
}


/* Brand Social Icons (Icon Only) */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-size: 18px;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.linkedin:hover {
  color: #0077b5;
  background-color: rgba(0, 119, 181, 0.1);
  border-color: rgba(0, 119, 181, 0.3);
}

.social-icon.facebook:hover {
  color: #1877f2;
  background-color: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.3);
}

.social-icon.instagram:hover {
  color: #e4405f;
  background-color: rgba(228, 64, 95, 0.1);
  border-color: rgba(228, 64, 95, 0.3);
}

.social-icon.twitter:hover {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .footer-app-connect {
    grid-template-columns: 1fr;
  }
}

/* Quill Font Families - Support for Homepage Rendering */
.ql-font-arial {
  font-family: Arial, sans-serif !important;
}

.ql-font-arial-black {
  font-family: 'Arial Black', sans-serif !important;
}

.ql-font-bahnschrift {
  font-family: 'Bahnschrift', sans-serif !important;
}

.ql-font-calibri {
  font-family: Calibri, sans-serif !important;
}

.ql-font-cambria {
  font-family: Cambria, serif !important;
}

.ql-font-candara {
  font-family: Candara, sans-serif !important;
}

.ql-font-comic-sans {
  font-family: 'Comic Sans MS', cursive !important;
}

.ql-font-consolas {
  font-family: Consolas, monospace !important;
}

.ql-font-courier-new {
  font-family: 'Courier New', monospace !important;
}

.ql-font-garamond {
  font-family: Garamond, serif !important;
}

.ql-font-georgia {
  font-family: Georgia, serif !important;
}

.ql-font-impact {
  font-family: Impact, sans-serif !important;
}

.ql-font-inter {
  font-family: 'Inter', sans-serif !important;
}

.ql-font-lato {
  font-family: 'Lato', sans-serif !important;
}

.ql-font-lucida-console {
  font-family: 'Lucida Console', monospace !important;
}

.ql-font-lucida-sans {
  font-family: 'Lucida Sans Unicode', sans-serif !important;
}

.ql-font-montserrat {
  font-family: 'Montserrat', sans-serif !important;
}

.ql-font-open-sans {
  font-family: 'Open Sans', sans-serif !important;
}

.ql-font-palatino {
  font-family: 'Palatino Linotype', serif !important;
}

.ql-font-poppins {
  font-family: 'Poppins', sans-serif !important;
}

.ql-font-roboto {
  font-family: 'Roboto', sans-serif !important;
}

.ql-font-segoe-ui {
  font-family: 'Segoe UI', sans-serif !important;
}

.ql-font-tahoma {
  font-family: Tahoma, sans-serif !important;
}

.ql-font-times-new-roman {
  font-family: 'Times New Roman', serif !important;
}

.ql-font-trebuchet {
  font-family: 'Trebuchet MS', sans-serif !important;
}

.ql-font-ubuntu {
  font-family: 'Ubuntu', sans-serif !important;
}

.ql-font-verdana {
  font-family: Verdana, sans-serif !important;
}


/* Drawer panel UI ΓÇö mobile/tablet and desktop overflow (.nav-force-drawer) */
.nav-container.drawer-open .nav-menu,
.nav-container.nav-force-drawer .nav-menu.active {
  border: 1px solid rgba(0, 58, 91, 0.08) !important;
  box-shadow: 0 20px 40px rgba(0, 58, 91, 0.15) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Scrollable drawer when many items (logged-in menu) */
.nav-container.drawer-open .nav-menu.active,
.nav-container.nav-force-drawer .nav-menu.active {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  max-height: min(
    calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 4.75rem),
    calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 4.75rem),
    36rem
  ) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y !important;
  min-height: 0 !important;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px)) !important;
}

.nav-container.drawer-open .nav-menu.active > li,
.nav-container.nav-force-drawer .nav-menu.active > li {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.nav-container.drawer-open .nav-menu.active .nav-link {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.65rem !important;
  padding: 0.5rem 0.75rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 58, 91, 0.08) !important;
  border-radius: 8px !important;
  margin: 2px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 42px !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}

.nav-container.drawer-open .nav-menu.active .nav-link:hover,
.nav-container.drawer-open .nav-menu.active .nav-link:active {
  background: rgba(16, 185, 129, 0.06) !important;
  color: #059669 !important;
  border-color: rgba(16, 185, 129, 0.15) !important;
  opacity: 1 !important;
  transform: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .nav-container.drawer-open .nav-menu.active .nav-link:hover {
    transform: translateX(3px) !important;
  }
}

.nav-container.drawer-open .nav-menu .nb-icon {
  color: #10b981 !important;
  font-size: 1.1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: auto !important;
  height: auto !important;
}

.nav-container.drawer-open .nav-menu .nb-icon svg {
  width: 18px !important;
  height: 18px !important;
}

.nav-container.drawer-open .nav-menu .nb-link-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 0 !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

.nav-container.drawer-open .nav-menu .nb-link-title {
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  color: #003a5b !important;
  line-height: 1.25 !important;
  white-space: normal !important;
}

.nav-container.drawer-open .nav-menu .nb-link-sub {
  display: block !important;
  font-size: 0.75rem !important;
  color: #64748b !important;
  margin-top: 1px !important;
  line-height: 1.3 !important;
  white-space: normal !important;
}

.nav-container.drawer-open .nav-cta-item.nav-cta-item--drawer:not([hidden]) {
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(0, 58, 91, 0.08) !important;
  width: 100% !important;
  display: block !important;
}

.nav-container.drawer-open .nav-cta-item[hidden] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

.nav-container.drawer-open .nav-cta-item .nb-cta {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  background: var(--cta-primary) !important;
  color: #ffffff !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  padding: 0.65rem 0.85rem !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
  box-sizing: border-box !important;
  text-align: center !important;
  text-decoration: none !important;
}

.nav-container.drawer-open .nav-cta-item .nb-cta:hover {
  background: var(--cta-primary-hover) !important;
  color: #ffffff !important;
  transform: none !important;
}

/* Logged-in utility rows ΓÇö match full nav-link rows (icon + label) */
.nav-container.drawer-open .nav-item.nav-cart .nav-link,
.nav-container.drawer-open .nav-item.nav-wallet .nav-link,
.nav-container.drawer-open .nav-item.nav-profile > .nav-link.nav-link--icon-only,
.nav-container.nav-force-drawer .nav-item.nav-cart .nav-link,
.nav-container.nav-force-drawer .nav-item.nav-wallet .nav-link,
.nav-container.nav-force-drawer .nav-item.nav-profile > .nav-link.nav-link--icon-only {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 42px !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.5rem 0.75rem !important;
  margin: 2px 0 !important;
  border: 1px solid rgba(0, 58, 91, 0.04) !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

.nav-container.drawer-open .nav-item.nav-cart .nav-link::after,
.nav-container.nav-force-drawer .nav-item.nav-cart .nav-link::after {
  content: 'My Cart';
  font-size: 1.0625rem;
  font-weight: 700;
  color: #003a5b;
  line-height: 1.3;
  flex: 1 1 auto;
  text-align: left;
}

.nav-container.drawer-open .nav-item.nav-wallet .nb-link-body,
.nav-container.drawer-open .nav-item.nav-profile > .nav-link .nb-link-body,
.nav-container.nav-force-drawer.drawer-open .nav-item.nav-wallet .nb-link-body,
.nav-container.nav-force-drawer.drawer-open .nav-item.nav-profile > .nav-link .nb-link-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.nav-container.drawer-open .nav-item.nav-cart .nb-icon--utility,
.nav-container.drawer-open .nav-item.nav-wallet .nb-icon--utility,
.nav-container.drawer-open .nav-item.nav-profile .nb-icon--utility,
.nav-container.nav-force-drawer .nav-item.nav-cart .nb-icon--utility,
.nav-container.nav-force-drawer .nav-item.nav-wallet .nb-icon--utility,
.nav-container.nav-force-drawer .nav-item.nav-profile .nb-icon--utility {
  flex-shrink: 0 !important;
  width: 24px !important;
  justify-content: center !important;
}

.nav-container.drawer-open .nav-item.nav-profile,
.nav-container.nav-force-drawer .nav-item.nav-profile {
  width: 100% !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

.nav-container.drawer-open .nav-item.nav-profile .dropdown-content,
.nav-container.nav-force-drawer .nav-item.nav-profile .dropdown-content {
  position: static !important;
  display: none;
  width: 100% !important;
  min-width: 0 !important;
  margin: 4px 0 0 !important;
  padding: 4px 0 !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  border: 1px solid rgba(0, 58, 91, 0.08) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.nav-container.drawer-open .nav-item.nav-profile.active .dropdown-content,
.nav-container.drawer-open .nav-item.nav-profile.open .dropdown-content,
.nav-container.nav-force-drawer .nav-item.nav-profile.active .dropdown-content,
.nav-container.nav-force-drawer .nav-item.nav-profile.open .dropdown-content {
  display: flex !important;
  flex-direction: column !important;
}

@media (prefers-reduced-motion: reduce) {
  .nav-container.drawer-open .nav-menu .nav-link:hover,
  .nav-container.drawer-open .nav-menu .nav-link:active {
    transform: none !important;
  }
}

/* Shared footer component (footer.html) ΓÇö neutralize legacy footer layout */
#footer-container {
  display: block !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
}

.footer-section {
  display: block !important;
  flex-direction: unset !important;
  background: #0b1120 !important;
  border-top: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.footer-section .footer-main {
  background: transparent !important;
  max-width: none !important;
}

.footer-section .footer-bottom-wrapper {
  background: #111827 !important;
}

/* Sticky-footer layout for pages using .app-container */
body.site-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.site-page .app-container {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

body.site-page .app-container > main,
body.site-page .app-container > .wallet-page {
  flex: 1 0 auto;
}

body.site-page #footer-container {
  flex-shrink: 0;
  margin-top: auto !important;
}

