/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --bg:        #06060E;
  --surface:   #0E0E1C;
  --card:      #12122A;
  --border:    #1E1E40;
  --accent:    #5B5EF4;
  --accent2:   #00E5C3;
  --accent3:   #FF6B6B;
  --text:      #E8E8F0;
  --muted:     #7A7A9D;
  --white:     #FFFFFF;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:    14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Noise overlay ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* ── Glow blobs ─────────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: rgba(91,94,244,0.18); top: -100px; left: -100px; animation: float1 12s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: rgba(0,229,195,0.12); top: 200px; right: -80px; animation: float2 15s ease-in-out infinite; }
.blob-3 { width: 350px; height: 350px; background: rgba(255,107,107,0.10); bottom: -100px; left: 40%; animation: float1 18s ease-in-out infinite reverse; }

@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-25px,35px)} }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent2);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--accent2); border-radius: 2px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.highlight { color: var(--accent); }
.highlight2 { color: var(--accent2); }

/* ── Fade-in on scroll ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}
nav.scrolled {
  background: rgba(6,6,14,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo span { color: var(--accent); }
.logo sub-text { font-size: 0.6rem; display: block; color: var(--muted); letter-spacing: 0.1em; font-family: var(--font-body); font-weight: 300; margin-top: -4px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--accent2);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #4346e0 !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,94,244,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 70px;
  background: rgba(6,6,14,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text); }
.mobile-menu a:hover { color: var(--accent2); }

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,94,244,0.12); border: 1px solid rgba(91,94,244,0.3);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 500; color: var(--accent);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent2); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.9s ease 0.1s both;
}
.hero-title .line-accent, .line-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 480px;
  line-height: 1.7; margin-bottom: 40px;
  animation: fadeSlideUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #4346e0; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(91,94,244,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--accent2); color: var(--accent2); transform: translateY(-3px); }
.hero-visual {
  position: relative;
  animation: fadeSlideUp 1s ease 0.2s both;
}
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hc-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(91,94,244,0.15); border: 1px solid rgba(91,94,244,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.hc-title { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.hc-sub { font-size: 0.78rem; color: var(--muted); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 8px; }
.stat-box {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px; text-align: center;
}
.stat-box .num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.stat-box .lbl { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  background: rgba(0,229,195,0.08); border: 1px solid rgba(0,229,195,0.2);
  border-radius: 50px; padding: 5px 14px;
  font-size: 0.75rem; color: var(--accent2); font-weight: 500;
}
.floating-badge {
  position: absolute;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  animation: floatBadge 3s ease-in-out infinite;
}
.floating-badge.b1 { bottom: -24px; left: -30px; animation-delay: 0s; }
.floating-badge.b2 { top: -20px; right: -20px; animation-delay: 1.5s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fb-icon { font-size: 1.3rem; }
.fb-label { font-size: 0.7rem; color: var(--muted); }
.fb-val { font-weight: 700; color: var(--white); font-size: 0.85rem; }

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

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--muted); font-weight: 500;
}
.trust-item .icon { font-size: 1.2rem; }

/* ── SERVICES ───────────────────────────────────────────── */
#services { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,94,244,0.07), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(91,94,244,0.4); box-shadow: 0 20px 60px rgba(91,94,244,0.15); }
.service-card:hover::after { opacity: 1; }
.sc-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800;
  color: rgba(91,94,244,0.12); position: absolute; top: 20px; right: 24px;
  line-height: 1;
}
.sc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(91,94,244,0.12); border: 1px solid rgba(91,94,244,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.sc-title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.sc-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── PLANS ──────────────────────────────────────────────── */
#plans { background: var(--bg); }
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.plan-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 64px rgba(91,94,244,0.25);
}
.plan-card.featured:hover { box-shadow: 0 0 0 1px var(--accent), 0 32px 80px rgba(91,94,244,0.35); }
.plan-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 50px; text-transform: uppercase;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.plan-price span { font-size: 1.2rem; color: var(--muted); font-weight: 400; }
.plan-range { font-size: 0.8rem; color: var(--muted); margin-bottom: 32px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; color: var(--text);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-features li:last-child { border-bottom: none; }
.check { color: var(--accent2); font-size: 1rem; flex-shrink: 0; }
.plan-cta {
  display: block; text-align: center;
  margin-top: 32px;
  padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}
.plan-cta-outline {
  background: transparent; border: 1.5px solid var(--border); color: var(--text);
}
.plan-cta-outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-cta-fill {
  background: var(--accent); border: 1.5px solid var(--accent); color: var(--white);
}
.plan-cta-fill:hover { background: #4346e0; box-shadow: 0 12px 32px rgba(91,94,244,0.4); }

/* ── WHY US ─────────────────────────────────────────────── */
#why { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.why-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; position: relative;
}
.timeline-item {
  display: flex; gap: 16px; position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: 15px; top: 36px;
  width: 2px; height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item:last-child::before { display: none; }
.tl-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(91,94,244,0.15); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.tl-text .tl-title { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.tl-text .tl-sub { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.why-points li {
  display: flex; gap: 16px;
  margin-bottom: 28px;
}
.why-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,229,195,0.1); border: 1px solid rgba(0,229,195,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.why-text h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.why-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── CONTACT ────────────────────────────────────────────── */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.contact-info h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.contact-info p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px; font-size: 0.9rem;
}
.cd-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(91,94,244,0.12); border: 1px solid rgba(91,94,244,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.cd-label { font-size: 0.75rem; color: var(--muted); }
.cd-val { font-weight: 600; color: var(--white); }
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; margin-top: 24px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.wa-btn:hover { background: #1ab952; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.35); }

/* Form */
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 1; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,94,244,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--accent), #6f72ff);
  border: none; border-radius: 10px;
  color: var(--white); font-family: var(--font-head);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  position: relative; overflow: hidden;
}
.submit-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(91,94,244,0.4); }
.submit-btn:hover::before { opacity: 1; }
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 12px; }
.success-msg { display: none; background: rgba(0,229,195,0.1); border: 1px solid rgba(0,229,195,0.3); border-radius: 10px; padding: 14px; text-align: center; color: var(--accent2); font-size: 0.9rem; margin-top: 12px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  margin-bottom: 24px;
}
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--white); }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; font-size: 0.8rem; color: var(--muted); }

/* ── FLOATING WA BUTTON ─────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 200;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.wa-float-tooltip {
  position: absolute; right: 70px;
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  padding: 6px 12px; font-size: 0.78rem; white-space: nowrap; color: var(--text);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 100px; right: 33px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted); cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 200;
  line-height: 1;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ── Select dark fix ────────────────────────────────────── */
.form-group select option {
  background: #12122A;
  color: var(--white);
}
.form-group select {
  color: var(--text);
  cursor: pointer;
}
.form-group select option[value=""] { color: var(--muted); }

/* ── Hamburger open state ───────────────────────────────── */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Social links ───────────────────────────────────────── */
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.social-link:hover { background: rgba(91,94,244,0.15); border-color: var(--accent); transform: translateY(-3px); }
.social-link.wa:hover { background: rgba(37,211,102,0.15); border-color: #25D366; }
.social-link.ig:hover { background: rgba(225,48,108,0.15); border-color: #E1306C; }

/* ── Footer social ──────────────────────────────────────── */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: rgba(91,94,244,0.2); border-color: var(--accent); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
