/* ========================================
   DESIGN SYSTEM & COLOR PALETTE - DARK THEME
   ======================================== */
:root {
  --primary: #f8fafc;
  --primary-light: #e2e8f0;
  --accent: #00d9ff;
  --accent-dark: #00a8cc;
  --accent-light: #33e6ff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text-dark: #f8fafc;
  --text-gray: #cbd5e1;
  --text-light: #0f172a;
  --bg-white: #0f172a;
  --bg-light: #1a1f3a;
  --bg-subtle: #111428;
  --border-light: #1e293b;
  --border-med: #334155;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 40px rgba(0, 212, 255, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   GLOBAL TYPOGRAPHY & BASE STYLES
   ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-gray);
  margin-bottom: 1.25rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-light);
}

/* ========================================
   SKIP LINK
   ======================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--text-light);
  padding: 10px 14px;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   HEADER / NAVIGATION - TALLER
   ======================================== */
.site-header {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-med);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  max-width: 1400px;
  margin: 0 auto;
  height: 100px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  padding: 0px;
}

.brand-fallback {
  display: none;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--text-light);
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}

.brand-name {
  display: none;
  flex-wrap: wrap;
  gap: 3px;
}

.brand-name-aide {
  color: var(--text-dark);
}

.brand-name-info {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* Navigation */
.nav-links {
  display: none;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.nav-links.open {
  display: flex;
}

.nav-links li {
  border: none;
}

.nav-links a {
  display: block;
  padding: 14px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-links a:hover {
  background: var(--bg-subtle);
  color: var(--accent);
  border-left-color: var(--accent);
}

.nav-links a[aria-current="page"] {
  background: var(--bg-subtle);
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  position: relative;
  z-index: 100;
}

.menu-toggle:hover {
  background: var(--accent);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
  }

  .nav-links {
    position: fixed;
    top: 100px;
    left: 8px;
    right: 8px;
    width: auto;
  }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    border: none;
    box-shadow: none;
    gap: 35px;
  }

  .nav-links a {
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid transparent;
    position: relative;
  }

  .nav-links a:hover {
    background: transparent;
    border-bottom-color: var(--accent);
  }

  .nav-links a[aria-current="page"] {
    background: transparent;
    border-left: none;
    border-bottom-color: var(--accent);
  }
}

/* ========================================
   MAIN CONTENT SPACING
   ======================================== */
main {
  padding-top: 120px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(
    135deg,
    var(--bg-white) 0%,
    var(--bg-light) 50%,
    var(--bg-subtle) 100%
  );
  color: var(--text-dark);
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 168, 204, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight {
  color: var(--accent);
  font-weight: 900;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 6px;
}

.hero-slogan {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.4;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.quick-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quick-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.quick-points li::before {
  content: '?';
  color: var(--accent);
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: -2px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
  border: 2px solid transparent;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--text-light);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.hero .btn-ghost {
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 100px 20px;
  position: relative;
}

.section h2 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.section-alt {
  background: var(--bg-subtle);
}

.section-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.page-intro {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 80px 20px;
  text-align: center;
}

.page-intro .eyebrow {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
}

.page-intro h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-intro .hero-text {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-gray);
}

/* ========================================
   CARDS GRID
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.35s cubic-bezier(0.15, 0.83, 0.66, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
  transform: translateY(-8px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--accent);
}

.card p {
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.section-contact {
  background: var(--bg-white);
}

.contact-box {
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 56px 48px 80px;
  box-shadow: var(--shadow-lg);
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 16px 16px 0 0;
}

.contact-box h2 {
  padding-top: 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-box > p {
  margin-bottom: 36px;
  font-size: 1.05rem;
  color: var(--text-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-subtle);
  transition: all 0.35s cubic-bezier(0.15, 0.83, 0.66, 1);
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(203, 213, 225, 0.5);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--border-med);
  background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-light);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  font-size: 0.95rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-bottom: 20px;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-mail:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.form-note {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  display: none;
  margin-top: 16px;
}

.form-note:not(:empty) {
  display: block;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.form-note.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: #ef4444;
}

.form-note.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: #10b981;
}

.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 32px;
  cursor: pointer;
  padding: 18px 24px 18px 48px;
  background: var(--bg-subtle);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label:hover {
  border-color: var(--accent);
  background: var(--bg-white);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  padding: 18px 24px 18px 52px;
  background: var(--bg-subtle);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--bg-white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-label::after {
  content: '✓';
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: bold;
  color: var(--bg-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-label::before,
.checkbox-label:has(input[type="checkbox"]:checked)::before {
  background: var(--accent);
}

.checkbox-label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.checkbox-label:hover::before {
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.25);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 20px 30px;
  text-align: center;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.3),
    transparent
  );
}

.site-footer p {
  margin: 12px 0;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.site-footer a {
  color: var(--accent);
  font-weight: 600;
  transition: all 0.25s ease;
}

.site-footer a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ========================================
   CONTAINERS & UTILITIES
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  }
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.35s cubic-bezier(0.15, 0.83, 0.66, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.2);
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
  transform: scale(1.02);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--bg-white);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

.pricing-body {
  flex-grow: 1;
  margin-bottom: 32px;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price-tag .amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}

.price-tag .unit {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.btn-sm {
  padding: 12px 20px;
  font-size: 0.9rem;
}

/* ========================================
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 80px 20px;
  }

  .contact-box {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 120px;
  }

  .hero {
    padding: 80px 20px 60px;
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .hero-slogan {
    font-size: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 16px 20px;
    justify-content: center;
  }

  .section {
    padding: 60px 20px;
  }

  .page-intro {
    padding: 60px 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 28px;
  }

  .contact-box {
    padding: 28px;
    border-radius: 12px;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn,
  .contact-mail {
    width: 100%;
  }

  .section-cta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px 40px;
  }

  .hero-copy h1 {
    font-size: 1.5rem;
  }

  .hero-slogan {
    font-size: 1rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .section {
    padding: 50px 16px;
  }

  .cards-grid {
    gap: 16px;
  }

  .card {
    padding: 20px;
  }

  .eyebrow {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  padding: 80px 20px;
}

.packages-section h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 42px);
  color: #f8f9fa;
}

.section-intro {
  text-align: center;
  color: #cbd5e1;
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 500;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.package-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-card:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(0, 217, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.package-icon {
  font-size: 48px;
  line-height: 1;
}

.package-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f8fafb;
  margin: 0;
  line-height: 1.3;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #00d9ff;
  margin: 8px 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  flex-grow: 1;
  text-align: left;
}

.package-features li {
  color: #cbd5e1;
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00d9ff;
  font-weight: bold;
}

.package-card .btn {
  margin-top: auto;
  align-self: stretch;
}

.section-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .section-cta {
    flex-direction: column;
  }

  .section-cta .btn {
    width: 100%;
  }
}

/* ========================================
   ABOUT PAGE - BENEFITS & COMMITMENTS
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 217, 255, 0.08);
}

.benefit-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f8fafb;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0;
}

.commitment-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.commitment-item {
  background: rgba(0, 217, 255, 0.06);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.commitment-item:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.35);
}

.commitment-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 12px;
  margin-top: 0;
}

.commitment-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0;
}
