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

:root {
  --navy-950: #1e1726;
  --navy-900: #2b2233;
  --navy-800: #3d2e4a;
  --navy-700: #4b3f92;
  --cyan-400: #c9a6e0;
  --cyan-500: #6e2e90;
  --ink: #241e2c;
  --gray-700: #55505c;
  --gray-500: #7c7686;
  --gray-200: #e8e3ee;
  --gray-100: #f6f3fa;
  --white: #ffffff;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(43, 34, 51, 0.08);
  --shadow-md: 0 12px 32px rgba(43, 34, 51, 0.14);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.2; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--navy-700), var(--cyan-500)); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-700); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--gray-200); color: var(--navy-900); }
.btn--ghost:hover { border-color: var(--cyan-500); color: var(--cyan-500); }
.btn--light { background: var(--white); color: var(--navy-900); }
.btn--light:hover { background: var(--cyan-400); color: var(--navy-950); }
.btn--sm { padding: 10px 20px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { display: flex; align-items: center; line-height: 1.1; }
.logo__img { height: 46px; width: auto; }
.logo__mark { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--navy-900); }
.logo__mark--light { color: var(--white); }
.logo__accent { color: var(--cyan-500); }
.logo__mark--light .logo__accent { color: var(--cyan-400); }
.logo__sub { font-size: 0.65rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-500); }

.nav { display: flex; gap: 28px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--gray-700); transition: color .15s ease; }
.nav a:hover { color: var(--cyan-500); }

.header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  padding: 84px 0 90px;
  background: radial-gradient(circle at 80% 0%, rgba(110,46,144,.10), transparent 55%), var(--white);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero__lead {
  font-size: 1.08rem;
  color: var(--gray-700);
  max-width: 54ch;
  margin-bottom: 30px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 20px; }
.hero__points li {
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
  padding-left: 22px;
  position: relative;
}
.hero__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-500);
  font-weight: 800;
}

.hero__visual { position: relative; height: 380px; }
.hero__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 28px;
  z-index: 0;
}
.panel {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--white);
  position: absolute;
  width: 240px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: panelEnter .7s ease forwards, panelFloat 5s ease-in-out infinite;
}
.panel__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel__icon svg { width: 19px; height: 19px; }
.panel__text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.panel--1 { animation-delay: 0s, .7s; }
.panel--2 { animation-delay: .15s, .95s; animation-duration: .7s, 5.6s; }
.panel--3 { animation-delay: .3s, 1.2s; animation-duration: .7s, 4.8s; }

@keyframes panelEnter {
  from { opacity: 0; transform: translateY(22px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.panel__label { font-size: 0.78rem; color: rgba(255,255,255,.7); }
.panel__status { font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.panel__status--ok::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(201,166,224,.35);
  animation: statusPulse 2.2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,166,224,.35); }
  50% { box-shadow: 0 0 0 8px rgba(201,166,224,.12); }
}

@media (prefers-reduced-motion: reduce) {
  .panel, .panel__status--ok::before { animation: none; opacity: 1; }
}
.panel--1 { top: 24px; left: 24px; }
.panel--2 { top: 150px; left: 90px; }
.panel--3 { top: 276px; left: 40px; }

/* ===== Trust bar ===== */
.trust { background: var(--navy-900); padding: 30px 0; }
.trust__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust p { color: rgba(255,255,255,.7); font-size: 0.92rem; max-width: 220px; }
.trust__grid { display: flex; gap: 36px; flex-wrap: wrap; }
.trust__item { display: flex; flex-direction: column; color: var(--white); }
.trust__item strong { font-family: var(--font-head); color: var(--cyan-400); font-size: 1.05rem; }
.trust__item span { font-size: 0.82rem; color: rgba(255,255,255,.65); }

/* ===== Section shared ===== */
section { padding: 96px 0; }
.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-lead { color: var(--gray-700); max-width: 62ch; font-size: 1.02rem; }
.services > .container > .eyebrow--center,
.process > .container > .eyebrow--center,
.faq > .container > .eyebrow--center { text-align: center; }
.services .section-title, .services .section-lead,
.process .section-title, .process .section-lead,
.faq .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.services .section-lead, .process .section-lead { margin-bottom: 52px; }

/* ===== Services ===== */
.services { background: var(--gray-100); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--gray-200);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cyan-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--gray-700); font-size: 0.95rem; }

/* ===== Why ===== */
.why__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.why__list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.why__list li { padding-left: 26px; position: relative; }
.why__list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--cyan-500);
}
.why__list strong { display: block; font-family: var(--font-head); font-size: 1rem; margin-bottom: 3px; color: var(--navy-900); }
.why__list span { color: var(--gray-700); font-size: 0.92rem; }

.why__stats { display: flex; flex-direction: column; gap: 18px; }
.stat-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--gray-200);
}
.stat-card__icon { font-size: 1.6rem; }
.stat-card strong { font-family: var(--font-head); color: var(--navy-900); }
.stat-card span { color: var(--gray-700); font-size: 0.9rem; }

/* ===== Process ===== */
.process { background: var(--navy-900); color: var(--white); }
.process .eyebrow { color: var(--cyan-400); }
.process .section-title { color: var(--white); }
.process .section-lead { color: rgba(255,255,255,.7); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.step__num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--cyan-400); }
.step h3 { color: var(--white); font-size: 1.05rem; margin: 10px 0 8px; }
.step p { color: rgba(255,255,255,.68); font-size: 0.92rem; }

/* ===== About ===== */
.about__inner { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 56px; align-items: start; }
.about__text p { color: var(--gray-700); margin-bottom: 16px; }
.about__text .btn { margin-top: 8px; }
.about__card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.about__card h3 { color: var(--cyan-400); font-size: 1.05rem; margin-bottom: 12px; }
.about__card p { color: rgba(255,255,255,.85); font-size: 0.94rem; margin-bottom: 12px; }
.about__card hr { border: none; border-top: 1px solid rgba(255,255,255,.14); margin: 16px 0; }

/* ===== Reviews (Google) ===== */
.reviews { background: var(--gray-100); }
.reviews .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.reviews__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--gray-700);
}
.reviews__stars { color: #f5a623; letter-spacing: 2px; font-size: 1.2rem; }
.reviews__score strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy-900); }
.reviews__cta { display: flex; margin: 40px auto 0; width: fit-content; }

.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card__stars { display: block; color: #f5a623; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card__quote { color: var(--gray-700); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__author img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.testimonial-card__author strong { display: block; font-family: var(--font-head); color: var(--navy-900); font-size: 0.92rem; }
.testimonial-card__author span { font-size: 0.82rem; color: var(--gray-500); }

/* ===== FAQ ===== */
.faq { background: var(--gray-100); }
.faq__list { max-width: 760px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 18px 22px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.3rem; color: var(--cyan-500); flex-shrink: 0; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--gray-700); font-size: 0.94rem; margin-top: 12px; }

/* ===== CTA ===== */
.cta { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); }
.cta__inner { text-align: center; }
.cta h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.75); margin-bottom: 28px; }

/* ===== Contact ===== */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact__list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.contact__list strong { display: block; font-family: var(--font-head); color: var(--navy-900); font-size: 0.95rem; margin-bottom: 3px; }
.contact__list span { color: var(--gray-700); font-size: 0.92rem; }

.contact__form {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--gray-200);
}
.contact__form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--navy-900); }
.contact__form input, .contact__form textarea {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  resize: vertical;
}
.contact__form input:focus, .contact__form textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(110,46,144,.15);
}
.contact__hint { font-size: 0.8rem; color: var(--gray-500); text-align: center; font-weight: 400; }

/* ===== Footer ===== */
.footer { background: var(--navy-950); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo-icon { height: 38px; width: auto; }
.footer__brand p { margin-top: 12px; font-size: 0.9rem; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 4px; }
.footer__col a, .footer__col span { font-size: 0.9rem; color: rgba(255,255,255,.65); }
.footer__col a:hover { color: var(--cyan-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom-link { color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom-link:hover { color: var(--cyan-400); }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ===== WhatsApp Chat Bubble ===== */
.chat-bubble {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 300px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  padding: 18px 18px 16px;
  z-index: 91;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.chat-bubble.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-bubble__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  border: none;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-bubble__close:hover { background: var(--gray-200); }
.chat-bubble__header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.chat-bubble__avatar { position: relative; width: 38px; height: 38px; flex-shrink: 0; }
.chat-bubble__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: contain; background: var(--navy-900); padding: 6px; }
.chat-bubble__online {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 10px; height: 10px;
  background: #25D366;
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: statusPulse 2.2s ease-in-out infinite;
}
.chat-bubble__who { display: flex; flex-direction: column; line-height: 1.3; }
.chat-bubble__who strong { font-family: var(--font-head); font-size: 0.92rem; color: var(--navy-900); }
.chat-bubble__who span { font-size: 0.76rem; color: var(--gray-500); }
.chat-bubble__msg { font-size: 0.88rem; color: var(--gray-700); margin-bottom: 14px; }

@media (max-width: 480px) {
  .chat-bubble { right: 16px; left: 16px; width: auto; bottom: 92px; }
}

/* ===== Reveal animation ===== */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 300px; order: -1; }
  .why__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--gray-200); transform: translateY(-150%); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
  .nav.is-open { transform: translateY(0); opacity: 1; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-toggle { display: flex; }
  .header__actions .btn--sm { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .footer__inner { grid-template-columns: 1fr; }
  .trust__inner { flex-direction: column; align-items: flex-start; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
