/* ==========================================================================
   SYSTEM DESIGN: Variables & Themes
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #1B7FCC;
  --primary-rgb: 27, 127, 204;
  --primary-hover: #15629F;
  --secondary: #0A3D62;
  --secondary-rgb: 10, 61, 98;
  --orange: #FF7A00;
  --orange-hover: #E06B00;
  
  /* Light Theme Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F7FA;
  --bg-tertiary: #FAFAFA;
  --bg-navbar: rgba(255, 255, 255, 0.85);
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  
  --border-color: #E2E8F0;
  --border-focus: #1B7FCC;
  
  --hero-grad-start: #0A3D62;
  --hero-grad-end: #F5F7FA;
  --hero-text: #FFFFFF;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 20px rgba(27, 127, 204, 0.15);
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  scroll-behavior: smooth;
}

body.dark-theme {
  /* Dark Theme Colors */
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-tertiary: #111827;
  --bg-navbar: rgba(15, 23, 42, 0.85);
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  --border-color: #334155;
  --border-focus: #38BDF8;
  
  --hero-grad-start: #06243A;
  --hero-grad-end: #0F172A;
  --hero-text: #F8FAFC;
  
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.15);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

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

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

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

.btn-full {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(27, 127, 204, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(27, 127, 204, 0.4), var(--shadow-glow);
}

.btn-orange {
  background-color: var(--orange);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.btn-blue-border {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-blue-border:hover {
  background-color: rgba(27, 127, 204, 0.08);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}

.btn-secondary-outline {
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary-outline:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(27, 127, 204, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(27, 127, 204, 0.15);
}

body.dark-theme .badge {
  background-color: rgba(56, 189, 248, 0.1);
  color: #38BDF8;
  border-color: rgba(56, 189, 248, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-navbar);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 45px;
  width: 180px;
}

.logo-svg {
  height: 100%;
  width: auto;
}

.logo-text-mxt {
  fill: var(--text-primary);
  transition: fill var(--transition-normal);
}

.nav-menu ul {
  display: flex;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

body.dark-theme .nav-item:hover, body.dark-theme .nav-item.active {
  color: #38BDF8;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

body.dark-theme .nav-item::after {
  background-color: #38BDF8;
}

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

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

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
}

.theme-toggle:hover {
  color: var(--primary);
  background-color: var(--border-color);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.sun-icon { display: block; }
.moon-icon { display: none; }

body.dark-theme .sun-icon { display: none; }
body.dark-theme .moon-icon { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: 150px;
  padding-bottom: 90px;
  background: linear-gradient(135deg, var(--hero-grad-start) 0%, var(--hero-grad-end) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle graphic element on hero background */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 127, 204, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  color: var(--hero-text);
  max-width: 640px;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: inherit;
  line-height: 1.15;
}

/* In light theme, the top part is dark blue, let's keep title highly readable */
.hero-section .hero-title {
  color: #FFFFFF;
}

body.dark-theme .hero-section .hero-title {
  color: #F8FAFC;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  color: #E2E8F0;
}

body.dark-theme .hero-subtitle {
  color: #94A3B8;
}

.hero-list {
  margin-bottom: 40px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #F1F5F9;
}

body.dark-theme .hero-list li {
  color: #CBD5E1;
}

.list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22C55E;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */

.why-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

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

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.blurb-card {
  background-color: var(--bg-primary);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.blurb-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 127, 204, 0.2);
}

body.dark-theme .blurb-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.blurb-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(27, 127, 204, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

body.dark-theme .blurb-icon-box {
  background-color: rgba(56, 189, 248, 0.1);
}

.blurb-card:hover .blurb-icon-box {
  background-color: var(--primary);
}

body.dark-theme .blurb-card:hover .blurb-icon-box {
  background-color: #38BDF8;
}

.blurb-card:hover .blurb-icon-box svg {
  stroke: #FFFFFF;
}

.blurb-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.blurb-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Featured Styling */
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md), 0 0 25px rgba(27, 127, 204, 0.08);
}

body.dark-theme .pricing-card.featured {
  border-color: #38BDF8;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

body.dark-theme .featured-badge {
  background-color: #38BDF8;
  color: #0F172A;
}

.card-header {
  margin-bottom: 30px;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.price-box .amount {
  font-size: 34px;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--text-primary);
}

.price-box .currency {
  font-size: 14px;
  font-weight: 600;
  margin-left: 4px;
}

.price-box .period {
  font-size: 13px;
  color: var(--text-secondary);
  margin-left: 6px;
}

.features-list {
  margin-bottom: 40px;
  flex-grow: 1;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.features-list li::before {
  content: '✓';
  color: #22C55E;
  font-weight: 700;
  margin-right: 10px;
}

/* ==========================================================================
   TECHNICAL SPECS SECTION
   ========================================================================== */

.specs-section {
  padding: 100px 0;
  background-color: var(--bg-tertiary);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 20px;
}

.specs-column {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.specs-col-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
  position: relative;
}

.specs-col-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--primary);
}

.specs-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.specs-list li:last-child {
  margin-bottom: 0;
}

.spec-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}

body.dark-theme .spec-bullet {
  background-color: #38BDF8;
}

.specs-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.specs-list p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================================================
   SUPPORT & TRUST SECTION
   ========================================================================== */

.support-section {
  padding: 80px 0;
  background-color: #0A3D62;
  color: #FFFFFF;
}

.support-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.support-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.support-icon {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-col h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.support-col p, .support-col li {
  color: #CBD5E1;
  font-size: 15px;
}

.phone-item {
  margin-bottom: 8px;
}

.phone-item a {
  color: #38BDF8;
  font-weight: 600;
}

.phone-item a:hover {
  text-decoration: underline;
}

.support-links li {
  margin-bottom: 10px;
}

.support-links a {
  color: #38BDF8;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.support-links a:hover {
  color: #FFFFFF;
}

.support-links a::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.support-links a:hover::after {
  transform: translateX(4px);
}

.about-text {
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.contact-container-form {
  max-width: 1100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.contact-info-panel h2 {
  font-size: 34px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.contact-info-panel p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.direct-icon {
  font-size: 20px;
}

.direct-text {
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form-panel {
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(27, 127, 204, 0.15);
}

.form-success-msg {
  display: none;
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34, 197, 94, 0.2);
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  margin-top: 10px;
}

body.dark-theme .form-success-msg {
  background-color: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  border-color: rgba(34, 197, 94, 0.25);
}

.form-success-msg.error-msg {
  background-color: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border-color: rgba(239, 68, 68, 0.15);
}

body.dark-theme .form-success-msg.error-msg {
  background-color: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.22);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: #1B1B1B;
  color: #94A3B8;
  padding: 60px 0;
  border-top: 1px solid #2D2D2D;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-links-row {
  display: flex;
  justify-content: center;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.footer-menu a {
  color: #CBD5E1;
  font-size: 14.5px;
  font-weight: 500;
}

.footer-menu a:hover {
  color: #FFFFFF;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2D2D2D;
  padding-top: 30px;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  max-width: 600px;
}

.footer .desc {
  max-width: 400px;
  text-align: right;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
  
  .footer .desc {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    position: relative;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 80px;
    left: -24px;
    width: calc(100% + 48px);
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .btn-nav-cta {
    display: none; /* Hide on mobile navbar to avoid clutter */
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-panel {
    padding: 24px 16px;
  }
}

/* Hamburguer menu animations */
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   MEXICAN BENEFITS SECTION
   ========================================================================== */

.mexico-benefits-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background-color: var(--bg-primary);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 127, 204, 0.2);
}

body.dark-theme .benefit-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.benefit-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(27, 127, 204, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: all var(--transition-normal);
}

body.dark-theme .benefit-icon-box {
  background-color: rgba(56, 189, 248, 0.1);
  color: #38BDF8;
}

.benefit-card:hover .benefit-icon-box {
  background-color: var(--primary);
  color: #FFFFFF;
}

body.dark-theme .benefit-card:hover .benefit-icon-box {
  background-color: #38BDF8;
  color: #0F172A;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: var(--font-title);
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-section {
  padding: 100px 0;
  background-color: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(27, 127, 204, 0.2);
  box-shadow: var(--shadow-md);
}

body.dark-theme .faq-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--primary);
}

body.dark-theme .faq-trigger:hover {
  color: #38BDF8;
}

.faq-icon {
  color: var(--text-muted);
  transition: transform var(--transition-normal), color var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--primary);
}

body.dark-theme .faq-item.active {
  border-color: #38BDF8;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

body.dark-theme .faq-item.active .faq-icon {
  color: #38BDF8;
}

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

.faq-content-inner {
  padding: 0 24px 24px;
}

.faq-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   PRICING DISCLAIMER NOTE
   ========================================================================== */

.pricing-note {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 24px 30px;
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

body.dark-theme .pricing-note {
  border-left-color: #38BDF8;
}

.pricing-note p strong {
  color: var(--text-primary);
}
