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

:root {
  --navy: #050D1A;
  --navy2: #0A1628;
  --navy3: #0F2040;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-glow: rgba(37, 99, 235, 0.3);
  --gold: #F59E0B;
  --green: #25D366;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

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

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  justify-self: start;
}

.logo span {
  color: var(--blue-light);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-self: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-wa,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--green);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  border: 2px solid var(--green);
  transition: all 0.3s ease;
}

.btn-wa:hover,
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid var(--blue);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--blue-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--blue-light);
  background: rgba(59, 130, 246, 0.1);
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, #3B82F6, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SECTION TAG ─── */
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.25);
  top: -100px;
  left: -100px;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.15);
  top: 20%;
  right: -80px;
  animation-delay: -3s;
}

.blob3 {
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.15);
  bottom: -50px;
  left: 35%;
  animation-delay: -6s;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
}

.badge span {
  color: #4ADE80;
  font-weight: 700;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.hero-orb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
  animation: spin linear infinite;
}

.r1 { width: 300px; height: 300px; animation-duration: 20s; }
.r2 { width: 220px; height: 220px; border-color: rgba(245, 158, 11, 0.2); animation-duration: 15s; animation-direction: reverse; }
.r3 { width: 150px; height: 150px; animation-duration: 10s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orb-core {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.5);
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(12px);
  animation: cardFloat 4s ease-in-out infinite alternate;
  z-index: 3;
}

.floating-card:first-child {
  top: 40px;
  left: -30px;
}

.floating-card.card-bottom {
  bottom: 40px;
  right: -20px;
  animation-delay: -2s;
}

.card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-icon { font-size: 24px; }

.card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.card-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.card-check {
  width: 28px;
  height: 28px;
  background: #4ADE80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
  font-weight: 800;
  flex-shrink: 0;
}

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

/* ─── STATS ─── */
.stats-section {
  background: var(--navy2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  display: inline;
}

.stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-light);
  display: inline;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 30px;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  transition: color 0.2s;
}

.card-link:hover {
  color: #fff;
}

/* ─── HOW PREVIEW ─── */
.how-preview {
  background: var(--navy2);
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 48px;
}

.step {
  text-align: center;
  padding: 36px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.3);
  margin-bottom: 12px;
  line-height: 1;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 28px;
  color: var(--blue-light);
  font-weight: 700;
  text-align: center;
}

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

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  overflow: hidden;
  padding-bottom: 100px;
}

.marquee-wrapper {
  overflow: hidden;
  margin-top: 48px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
  display: flex;
  gap: 24px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.t-card {
  padding: 30px;
  min-width: 320px;
  max-width: 340px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.t-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.t-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy2), rgba(37, 99, 235, 0.1));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 100px 0;
}

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

.cta-inner h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-wa {
  font-size: 14px;
  padding: 12px 20px;
  width: 100%;
  justify-content: center;
}

.footer-form-btn {
  margin-top: 12px;
  display: block;
  text-align: center;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── FLOATING WA ─── */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: #fff;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.float-wa:hover {
  transform: scale(1.1);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.2), transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── SERVICES PAGE ─── */
.services-full {
  padding: 80px 0;
}

.service-full-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.service-full-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-big-icon {
  font-size: 56px;
  line-height: 1;
}

.service-full-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-full-card > div > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ADE80;
  font-weight: 700;
}

.page-cta {
  text-align: center;
  padding: 60px 0 100px;
}

/* ─── TIMELINE ─── */
.timeline {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 0;
  align-items: start;
}

.tl-item:last-child .tl-line {
  display: none;
}

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.tl-line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, var(--blue), rgba(37, 99, 235, 0.1));
  margin-top: 12px;
}

.tl-content {
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.tl-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
}

.tl-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.tl-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tl-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 0 40px;
}

.pricing-card {
  padding: 44px 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--blue-light);
  background: rgba(37, 99, 235, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 40px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}

.pricing-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-quote {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #3B82F6, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.pricing-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 28px 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ADE80;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto 80px;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

/* ─── CONTACT ─── */
.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.wa-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 60px;
  padding: 0 28px;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-big:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 14px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.contact-detail:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.contact-detail a {
  color: var(--text);
}

.response-note {
  font-size: 14px;
  color: var(--text-muted);
  padding: 16px 20px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.contact-form-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 44px 40px;
  backdrop-filter: blur(12px);
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
}

.form-group select option {
  background: var(--navy2);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-submit:hover:not(:disabled) {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--blue-glow);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-success {
  text-align: center;
  padding: 48px 32px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success .tick {
  font-size: 56px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 80px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}

.faq-item.open {
  border-color: rgba(59, 130, 246, 0.4);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  font-size: 22px;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
}

@media (max-width: 768px) {
  .hero h1, .page-hero h1 { font-size: 40px; }
  .section-header h2, .cta-inner h2 { font-size: 32px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
    justify-self: stretch;
    grid-column: 1 / -1;
  }

  .nav-links.open a { font-size: 16px; }
  .nav-right .nav-wa { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-whatsapp, .btn-outline { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 24px; }
  .service-full-card { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 60px 1fr; gap: 20px; }

  .float-wa { bottom: 20px; right: 20px; }
}
