/* ============================================
   MDC — MAKAYANG DIGITAL CENTER
   Built Beyond Limits
   Identité : cyber-tech futuriste
   ============================================ */

:root {
  /* Couleurs officielles MDC - Nouveau logo */
  --cyan: #00d4aa;        /* Turquoise (anciennement cyan) */
  --green: #0097ff;       /* Bleu (anciennement vert) */
  --bg: #050d18;
  --bg-2: #0a1828;
  --bg-3: #112638;
  --line: rgba(0, 212, 170, 0.12);
  --line-strong: rgba(0, 212, 170, 0.3);
  --text: #e6f4ff;
  --text-dim: #8aa0b8;
  --text-faded: #5a7185;
  --whatsapp: #25D366;
  --danger: #ff4d6d;

  /* Typo */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Easing */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-weight: 400;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.grad {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================
   BACKGROUND DECOR
   ============================================ */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, .04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}
.bg-glow-1 {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
}
.bg-glow-2 {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, var(--green), transparent 70%);
  opacity: .25;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 13, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark { 
  width: 60px; 
  height: 36px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--text);
}
.logo-tag {
  font-size: .62rem;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
}
.nav a:hover { color: var(--cyan); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  z-index: 2;
}

.hero-inner {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: 2px;
  color: var(--cyan);
  background: rgba(0, 212, 170, .04);
  margin-bottom: 32px;
  animation: fadeUp .8s var(--ease) backwards;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  animation: fadeUp .9s var(--ease) backwards;
}
.hero-title .line:nth-child(1) { animation-delay: .1s; }
.hero-title .line:nth-child(2) { animation-delay: .25s; }
.hero-title .line:nth-child(3) { animation-delay: .4s; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeUp .9s var(--ease) .55s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .9s var(--ease) .7s backwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  animation: fadeUp .9s var(--ease) .85s backwards;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span {
  font-size: .82rem;
  color: var(--text-faded);
  letter-spacing: .5px;
}

.hero-deco {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: .4;
  z-index: 1;
  animation: rotate 60s linear infinite;
}
@keyframes rotate {
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn span {
  transition: transform .3s var(--ease);
  display: inline-block;
}
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--bg);
  box-shadow: 0 0 0 1px rgba(0, 212, 170, .3), 0 8px 24px rgba(0, 212, 170, .25);
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(0, 212, 170, .5), 0 12px 32px rgba(0, 212, 170, .4);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(0, 212, 170, .03);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 170, .08);
  color: var(--cyan);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  margin-top: 24px;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .4);
}

.btn-block { width: 100%; justify-content: center; }

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(0, 212, 170, .03), rgba(0, 212, 170, .01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 212, 170, .1), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--text-faded);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 212, 170, .1), rgba(0, 151, 255, .05));
  border: 1px solid var(--line-strong);
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.service-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1px solid var(--line);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .5px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.service-link:hover { color: var(--green); }

.service-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 170, .1), rgba(0, 151, 255, .05));
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all .3s var(--ease);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-more span {
  display: block;
  line-height: 1;
  margin-top: -2px;
}
.service-more:hover {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--bg);
  border-color: transparent;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 20px rgba(0, 212, 170, .4);
}

/* ============================================
   MODAL SERVICE DESCRIPTION
   ============================================ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.service-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 24, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  transform: scale(0.95);
  transition: transform .3s var(--ease);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.service-modal.open .modal-content {
  transform: scale(1);
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 212, 170, .05);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s var(--ease);
  z-index: 2;
}
.modal-close:hover {
  background: var(--danger);
  border-color: var(--danger);
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  position: relative;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.modal-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(5, 13, 24, 0.8);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: 2px;
  color: var(--cyan);
}

.modal-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.modal-icon {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, rgba(0, 212, 170, .1), rgba(0, 151, 255, .05));
  border: 1px solid var(--line-strong);
}

.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-tagline {
  color: var(--text-dim);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: 24px 0;
}

.modal-description {
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}
.modal-description p {
  margin-bottom: 16px;
}
.modal-description p:last-child {
  margin-bottom: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.modal-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 180px;
}

/* Scrollbar custom pour la modal */
.modal-content::-webkit-scrollbar {
  width: 6px;
}
.modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 3px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* Responsive modal */
@media (max-width: 600px) {
  .modal-content {
    padding: 24px;
    max-height: 95vh;
  }
  .modal-image {
    height: 180px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn {
    width: 100%;
  }
}

/* ============================================
   PACKS
   ============================================ */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pack-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}

.pack-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(0, 212, 170, .06), var(--bg));
  box-shadow: 0 0 0 1px rgba(0, 212, 170, .3), 0 20px 40px rgba(0, 0, 0, .3);
  transform: scale(1.03);
}

.pack-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.pack-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--bg);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

.pack-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.pack-tagline {
  font-size: .9rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  min-height: 2.5em;
}

.pack-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.pack-price strong {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pack-price span {
  color: var(--text-faded);
  font-size: .9rem;
}

.pack-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pack-features li {
  padding: 10px 0;
  font-size: .92rem;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pack-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pack-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  transition: all .3s var(--ease);
}
.pack-card.featured .pack-cta {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--bg);
  border-color: transparent;
}
.pack-cta:hover {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
}

.packs-note {
  text-align: center;
  margin-top: 48px;
  color: var(--text-dim);
}
.packs-note a { color: var(--cyan); font-weight: 600; }

/* ============================================
   ABOUT
   ============================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-tag,
.about-text .section-title { text-align: left; margin-left: 0; }
.about-text p {
  color: var(--text-dim);
  margin-bottom: 16px;
  max-width: 540px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  padding: 24px 20px;
  background: rgba(0, 212, 170, .03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.pillar:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--cyan);
  letter-spacing: 2px;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 12px 0 8px;
  letter-spacing: .5px;
}
.pillar p {
  font-size: .85rem;
  color: var(--text-dim);
  margin: 0;
}

.about-visual { position: relative; }
.about-card {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 3s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.about-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.5s infinite;
}
.about-list {
  list-style: none;
  margin-bottom: 24px;
}
.about-list li {
  padding: 10px 0;
  color: var(--text-dim);
  font-family: 'Courier New', monospace;
  font-size: .9rem;
  display: flex;
  gap: 12px;
}
.about-list span { color: var(--cyan); }
.about-card-foot {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: 2px;
  color: var(--green);
  text-align: center;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.contact-info .section-tag,
.contact-info .section-title { text-align: left; }
.contact-info > p { color: var(--text-dim); margin-bottom: 32px; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(0, 212, 170, .03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-ico {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, .1);
  border-radius: var(--radius);
  font-size: 1.2rem;
}
.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 4px;
}
.contact-list a, .contact-list span {
  color: var(--text);
  font-size: .95rem;
}
.contact-list a:hover { color: var(--cyan); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green), transparent);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
  letter-spacing: .5px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label span {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 212, 170, .03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .95rem;
  transition: all .3s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0, 212, 170, .06);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, .1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form select option { background: var(--bg-2); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label { margin-bottom: 0; }

.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius);
  font-size: .9rem;
  text-align: center;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(0, 151, 255, .1);
  border: 1px solid var(--green);
  color: var(--green);
}
.form-status.error {
  display: block;
  background: rgba(255, 77, 109, .1);
  border: 1px solid var(--danger);
  color: var(--danger);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo-name {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-tag {
  margin: 0 0 16px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: .9rem;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h5 {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: 1.5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-cols a, .footer-cols span {
  display: block;
  padding: 6px 0;
  color: var(--text-dim);
  font-size: .9rem;
}
.footer-cols a:hover { color: var(--cyan); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-faded);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 99;
  transition: transform .3s var(--ease);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-2);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-deco { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row label { margin-bottom: 16px; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .pack-card.featured { transform: none; }
  .pack-card.featured:hover { transform: translateY(-4px); }
}
