/* ==========================================================================
   IMPAKTO IA - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. INITIAL SETUP & VARIABLES */
:root {
  /* Colors */
  --primary: #1B36FF;
  --primary-hover: #0d28e5;
  --primary-light: rgba(27, 54, 255, 0.08);
  --primary-glow: rgba(27, 54, 255, 0.25);
  
  --dark-bg: #04081C;
  --dark-bg-card: #091030;
  
  --text-primary: #0F172A; /* Slate 900 */
  --text-secondary: #475569; /* Slate 600 */
  --text-muted: #94A3B8; /* Slate 400 */
  --text-white: #FFFFFF;
  
  --bg-light: #FFFFFF;
  --bg-subtle: #F8FAFC; /* Slate 50 */
  --border-color: #E2E8F0; /* Slate 200 */
  --border-light: rgba(255, 255, 255, 0.1);
  
  /* Fonts */
  --font-header: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Spacing */
  --container-max: 1200px;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

li {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.25;
}

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

.text-white {
  color: var(--text-white) !important;
}

.text-gray {
  color: var(--text-muted) !important;
}

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

.w-full {
  width: 100%;
}

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

/* Structure Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* 2. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 15px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-light);
  color: var(--primary);
  background-color: var(--bg-light);
  border: 1px solid rgba(27, 54, 255, 0.3);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-footer-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-footer-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--text-white);
}

/* Arrow & Calendar Icons in buttons */
.arrow-icon {
  margin-left: 0.5rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.btn:hover .arrow-icon {
  transform: translateX(3px);
}

.calendar-icon {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
}

/* 3. HEADER / NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-normal);
}

/* Sticky navbar modifier */
.navbar.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(226, 232, 240, 0.8);
}

.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.navbar.scrolled .navbar-container {
  padding: 0.8rem 1.5rem;
}

/* Brand Logo Styling */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: var(--transition-normal);
}

.navbar-logo:hover .logo-img {
  transform: scale(1.03);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo .logo-img {
  height: 36px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-header);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-btn-mobile {
  display: none;
}

/* Mobile Toggle Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

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

/* 4. HERO SECTION */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-header);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Hero features grid (4 badges underneath) */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-normal);
}

.feature-item:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.feature-icon {
  width: 20px;
  height: 20px;
}

.feature-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Hero Image Right Side */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(27, 54, 255, 0.06) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-main-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(4, 8, 28, 0.08);
  transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-main-img {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(4, 8, 28, 0.12);
}

/* 5. TRUST SECTION (LOGOS) */
.trust-section {
  background-color: var(--bg-subtle);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.trust-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trust-title {
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.trust-logos-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.65;
  transition: var(--transition-normal);
  filter: grayscale(1);
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.trust-logo-svg {
  color: #475569;
  width: 22px;
  height: 22px;
}

.trust-logo:hover .trust-logo-svg {
  color: var(--primary);
}

.trust-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-top {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #475569;
}

.logo-bottom {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #334155;
}

/* 6. PACKAGES SECTION */
.packages-section {
  padding: 6.5rem 0;
  background-color: #ffffff;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-header);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Package Card Design */
.package-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(4, 8, 28, 0.06);
  border-color: rgba(27, 54, 255, 0.15);
}

/* Highlighted/Featured Engine Card */
.package-card.featured {
  box-shadow: 0 10px 30px rgba(4, 8, 28, 0.04);
  border-color: rgba(27, 54, 255, 0.15);
}

.package-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 16px 16px 0 0;
}

/* Card Icons with blue gradient backing */
.card-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 2rem;
  background: var(--primary-light);
  transition: var(--transition-normal);
}

.package-card:hover .card-icon-wrapper {
  transform: scale(1.05);
}

.origin-icon {
  background: linear-gradient(135deg, rgba(27, 54, 255, 0.12) 0%, rgba(27, 54, 255, 0.04) 100%);
}

.engine-icon {
  background: linear-gradient(135deg, rgba(27, 54, 255, 0.15) 0%, rgba(27, 54, 255, 0.05) 100%);
}

.core-icon {
  background: linear-gradient(135deg, rgba(27, 54, 255, 0.12) 0%, rgba(27, 54, 255, 0.04) 100%);
}

.package-name {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.package-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  display: block;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1; /* Pushes the button to the bottom */
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.check-icon {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.card-btn {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
}

.package-card.featured .card-btn {
  background-color: var(--primary);
  color: var(--text-white);
}

.package-card:not(.featured) .card-btn {
  background-color: transparent;
  border: 1px solid rgba(27, 54, 255, 0.3);
  color: var(--primary);
}

.package-card:not(.featured) .card-btn:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
}

/* 7. STATS & WHY IMPAKTO IA SECTION */
.stats-section {
  padding: 6.5rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.stats-header-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 440px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(4, 8, 28, 0.04);
  border-color: rgba(27, 54, 255, 0.12);
}

.stat-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-normal);
}

.stat-card:hover .stat-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 10px var(--primary-glow);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-header);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* 8. CTA SECTION */
.cta-section {
  padding: 6.5rem 0;
  background-color: #ffffff;
}

.cta-banner {
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5.5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(4, 8, 28, 0.15);
}

.cta-content {
  max-width: 550px;
  z-index: 2;
  position: relative;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #7da2ff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.cta-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* 9. FOOTER SECTION */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-white);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-col {
  max-width: 260px;
}

.brand-slogan {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Social icons layout */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.02);
}

.social-link:hover {
  color: var(--text-white);
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 3px;
}

.contact-col {
  max-width: 280px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  color: var(--text-muted);
  display: inline-flex;
  margin-top: 2px;
}

.contact-link,
.contact-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-link:hover {
  color: var(--text-white);
}

.btn-footer-outline {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--text-white);
}

/* 10. MODAL INTERACTIVO DE RESERVA */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 8, 28, 0.45);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(4, 8, 28, 0.15);
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--bg-subtle);
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 2rem;
  text-align: center;
}

.modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Modal Form Styles */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  outline: none;
  background-color: var(--bg-subtle);
  transition: var(--transition-fast);
  color: var(--text-primary);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.submit-btn {
  margin-top: 0.5rem;
  padding: 0.9rem;
  font-size: 1rem;
}

/* Success State Styles */
.modal-success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
  gap: 1.5rem;
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.modal-success-msg h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.modal-success-msg p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-success-msg .btn {
  width: 100%;
  max-width: 200px;
}

/* 11. RESPONSIVE MEDIA QUERIES */

/* Large Tablets / Laptops */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-container {
    gap: 2rem;
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .packages-grid .package-card:last-child {
    grid-column: span 2;
    max-width: calc(50% - 0.75rem);
    margin: 0 auto;
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-top .contact-col {
    grid-column: span 3;
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid var(--border-light);
    padding-top: 2.5rem;
  }
  
  .footer-top .contact-col > * {
    flex: 1;
  }
  
  .footer-top .contact-col .footer-title {
    display: none;
  }
}

/* Small Tablets / Mobiles */
@media (max-width: 768px) {
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
  
  /* Mobile Menu System */
  .menu-toggle {
    display: flex;
  }
  
  .navbar-container {
    padding: 1rem 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 3rem;
    gap: 1.5rem;
    transition: var(--transition-normal);
    z-index: 1005;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-btn-mobile {
    display: flex;
    width: 100%;
    margin-top: 1.5rem;
  }
  
  .navbar-actions {
    display: none;
  }
  
  /* Burger Animation */
  .menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Hero Section Mobile */
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 1.5rem;
  }
  
  /* Trust logos Mobile */
  .trust-logos-wrapper {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .trust-logo {
    flex: 1 1 40%;
    justify-content: center;
  }
  
  /* Packages Section Mobile */
  .packages-section {
    padding: 4.5rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .packages-grid .package-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  /* Stats Section Mobile */
  .stats-section {
    padding: 4.5rem 0;
  }
  
  .stats-header-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .stats-header-desc {
    margin: 0 auto;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* CTA Mobile */
  .cta-section {
    padding: 4.5rem 0;
  }
  
  .cta-banner {
    padding: 3rem 1.5rem;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(4, 8, 28, 0.95) 100%, rgba(4, 8, 28, 0.3) 100%), url('img/28b03de0-0e5a-4656-bf63-5d0b04c42f88.png') !important;
  }
  
  .cta-content {
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-desc {
    font-size: 0.95rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 4rem 0 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .brand-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .footer-top .contact-col {
    grid-column: span 1;
    flex-direction: column;
    padding-top: 0;
    border-top: none;
    align-items: center;
  }
  
  .contact-info-list {
    align-items: center;
  }
  
  .btn-footer-outline {
    align-self: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

/* ==========================================================================
   FORM FEEDBACK STATUS MESSAGES
   ========================================================================== */
.form-feedback {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-feedback.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
