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

:root {
  --navy:       #152944;
  --navy-dark:  #0e1f33;
  --gold:       #e8a000;
  --green:      #25D366;
  --text:       #374151;
  --text-light: #6b7280;
  --white:      #ffffff;
  --bg:         #f9fafb;
  --border:     #e5e7eb;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(21,41,68,.08);
  --shadow-lg:  0 8px 40px rgba(21,41,68,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  white-space: nowrap;
}

.btn--primary  { background: var(--navy); color: var(--white); }
.btn--primary:hover  { background: var(--navy-dark); transform: translateY(-1px); }

.btn--dark     { background: var(--navy); color: var(--white); }
.btn--dark:hover     { background: var(--navy-dark); transform: translateY(-1px); }

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

.btn--whatsapp { background: var(--green); color: var(--white); }
.btn--whatsapp:hover { background: #1fbd5b; transform: translateY(-1px); }

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-eyebrow--gold { color: var(--gold); }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title--white { color: var(--white); }

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 52px;
}
.section-divider--gold { background: var(--gold); }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__badge {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.logo__badge--sm {
  width: 22px;
  height: 22px;
  font-size: .48rem;
  border-radius: 4px;
}

.logo__text  { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name  { font-size: 1rem; font-weight: 800; color: var(--navy); }
.logo__sub   { font-size: .62rem; font-weight: 600; color: var(--text-light); }

.logo--white .logo__name,
.logo--white .logo__sub { color: var(--white); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.nav { margin-left: auto; }

.nav__list {
  display: flex;
  gap: 2px;
}

.nav__link {
  font-size: .855rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 11px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--navy); background: #f1f5f9; }
.nav__link.active { color: #2563eb; font-weight: 600; }

.header__cta { margin-left: 16px; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 72px 0 64px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: .97rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.75;
}

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

/* --- Slideshow --- */
.hero__visual { position: relative; }

.slideshow {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 7/5;
  background: #1a3660;
  box-shadow: var(--shadow-lg);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.slide-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Floating feature card */
.feature-card {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 215px;
  z-index: 5;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: #eef2fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.feature-item__title {
  font-size: .83rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}
.feature-item__sub {
  font-size: .71rem;
  color: var(--text-light);
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.service-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.service-card__link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .15s;
}
.service-card__link:hover { color: #2563eb; }

/* ===== HOW IT WORKS ===== */
.how {
  background: var(--navy);
  padding: 80px 0;
}

.how__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

/* Steps — FIXED layout */
.steps {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}

.step__bubble {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.step__connector {
  width: 2px;
  flex: 1;
  min-height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 1px;
  margin: 6px 0;
}

.step__content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 36px;
  flex: 1;
  min-width: 0;
}

.step:last-child .step__content { padding-bottom: 0; }

.step__num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 12px;
}

.step__body { flex: 1; min-width: 0; padding-top: 10px; }

.step__body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.step__body p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* Phone mockup */
.how__phone { flex-shrink: 0; }

.phone-mockup {
  width: 230px;
  background: #0c1826;
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.08);
}

.phone-mockup__notch {
  width: 72px;
  height: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  margin: 0 auto 12px;
}

.phone-mockup__screen {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
}

.phone-mini { padding: 14px 12px; }

.phone-mini__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.phone-mini__logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-mini__features {
  margin-top: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.phone-mini__feat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 6.5px;
  color: var(--navy);
}
.phone-mini__feat:last-child { border-bottom: none; }
.phone-mini__feat b { display: block; font-weight: 700; font-size: 6.5px; }
.phone-mini__feat span { color: var(--text-light); font-size: 6px; }

/* ===== WHY US ===== */
.why {
  padding: 80px 0;
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  text-align: center;
  padding: 36px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 18px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== TARIFS ===== */
.tarifs {
  padding: 80px 0;
  background: var(--bg);
}

.tarifs__intro {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}

.tarifs__intro-icon {
  width: 64px;
  height: 64px;
  background: #fef9ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.tarifs__intro-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.tarifs__intro-text p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.tarifs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.tarif-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.tarif-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.tarif-card__icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 20px;
}

.tarif-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.tarif-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.tarifs__bottom {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.tarifs__bottom p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .tarifs__intro { flex-direction: column; gap: 18px; padding: 24px 20px; }
  .tarifs__grid  { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta {
  background: var(--navy);
  padding: 56px 0;
}

.cta__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cta__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.cta__text { flex: 1; }

.cta__text h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.cta__text p {
  font-size: .93rem;
  color: rgba(255,255,255,.7);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand .logo { margin-bottom: 16px; }

.footer__tagline {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 230px;
}

.footer__col h5 {
  font-size: .83rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer__col ul li { margin-bottom: 10px; }

.footer__col ul li a,
.footer__col ul li span {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__col--contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
}
.footer__col--contact ul li svg { flex-shrink: 0; opacity: .65; }

.footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.social-link:hover {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .services__grid   { grid-template-columns: repeat(3, 1fr); }
  .why__grid        { grid-template-columns: repeat(2, 1fr); }
  .footer__inner    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature-card     { right: 8px; }
}

@media (max-width: 900px) {
  .how__inner    { grid-template-columns: 1fr; }
  .how__phone    { display: none; }
}

@media (max-width: 768px) {
  /* Mobile menu */
  .nav {
    display: none;
    position: fixed;
    inset: 70px 0 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav.open     { display: block; }
  .nav__list    { flex-direction: column; gap: 4px; }
  .nav__link    { display: block; padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .burger       { display: flex; }
  .header__cta  { display: none; }

  /* Hero */
  .hero__inner  { grid-template-columns: 1fr; gap: 36px; }
  .hero__title  { font-size: 2rem; }

  /* Feature card: below slideshow on mobile */
  .feature-card {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    box-shadow: var(--shadow);
  }
  .feature-item { width: calc(50% - 6px); }

  .section-title { font-size: 1.6rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr 1fr; }

  .cta__inner { flex-direction: column; text-align: center; }
  .cta__icon  { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__tagline { max-width: none; }
}

@media (max-width: 480px) {
  .hero { padding: 44px 0 36px; }
  .hero__title { font-size: 1.7rem; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .feature-card { flex-direction: column; }
  .feature-item { width: 100%; }
}

/* ===== FADE-IN ANIMATION ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content { animation: fadeUp .5s ease both; }
.hero__visual  { animation: fadeUp .5s .1s ease both; }

.service-card:nth-child(1) { animation: fadeUp .4s .0s ease both; }
.service-card:nth-child(2) { animation: fadeUp .4s .1s ease both; }
.service-card:nth-child(3) { animation: fadeUp .4s .2s ease both; }
.service-card:nth-child(4) { animation: fadeUp .4s .3s ease both; }
.service-card:nth-child(5) { animation: fadeUp .4s .4s ease both; }

.why-card:nth-child(1) { animation: fadeUp .4s .0s ease both; }
.why-card:nth-child(2) { animation: fadeUp .4s .1s ease both; }
.why-card:nth-child(3) { animation: fadeUp .4s .2s ease both; }
.why-card:nth-child(4) { animation: fadeUp .4s .3s ease both; }
