/* ===== TOKENS ===== */
:root {
  --navy: #070f1e;
  --navy-mid: #0d1b30;
  --navy-light: #142240;
  --navy-card: rgba(255, 255, 255, 0.04);
  --blue: #1B4FBF;
  --blue-light: #2563eb;
  --orange: #FF8C00;
  --yellow: #FFB800;
  --yellow-light: #FFD23F;
  --text: #dce8f5;
  --text-muted: #7a9abf;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --max: 1160px;
  --header-h: 72px;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

strong {
  font-weight: 700;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--max);
  z-index: 200;
  background: rgba(7, 15, 30, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(7, 15, 30, 0.97);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 38px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-conf {
  color: var(--blue-light);
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.logo-en {
  color: var(--yellow);
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

/* Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-desktop a {
  padding: 8px 11px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 28px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%);
  box-shadow: 0 8px 28px rgba(255, 184, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-dark {
  background: var(--navy);
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

.btn-dark:hover {
  background: var(--yellow);
  color: #0a0a0a;
}

.btn-text {
  color: var(--yellow);
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-text:hover {
  text-decoration: underline;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + 16px);
  left: 16px;
  right: 16px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta .btn-primary {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: calc(var(--header-h) + 60px) 24px 100px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 90% 70% at 60% 10%, rgba(27, 79, 191, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(255, 140, 0, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0c1828 0%, #070f1e 55%, #070f1e 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-1 {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 79, 191, 0.22) 0%, transparent 70%);
  top: -10%;
  right: 5%;
}

.glow-2 {
  width: 350px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.14) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
}

.glow-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
  top: 40%;
  right: 35%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--yellow);
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.25);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.highlight {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-list {
  list-style: none;
  margin-bottom: 36px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  font-size: 0.95rem;
  color: rgba(220, 232, 245, 0.9);
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check svg {
  width: 12px;
  height: 12px;
  stroke: #0a0a0a;
  stroke-width: 3;
  fill: none;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-sun-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
}

.sun-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 184, 0, 0.2);
  animation: spin 18s linear infinite;
}

.orbit-1 {
  width: 200px;
  height: 200px;
  border-color: rgba(255, 184, 0, 0.18);
}

.orbit-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(27, 79, 191, 0.2);
  animation-direction: reverse;
  animation-duration: 28s;
}

.sun-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 220, 80, 0.2) 0%, rgba(255, 140, 0, 0.08) 100%);
  border: 2px solid rgba(255, 184, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(255, 184, 0, 0.2), 0 0 120px rgba(255, 140, 0, 0.1);
}

.sun-core img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.float-card,
.float-card-2 {
  position: absolute;
  background: rgba(13, 27, 48, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.float-card {
  bottom: 40px;
  left: -20px;
  animation: floatA 4s ease-in-out infinite;
}

.float-card-2 {
  top: 30px;
  right: -10px;
  animation: floatB 5s ease-in-out infinite;
}

.float-card strong,
.float-card-2 strong {
  font-size: 1rem;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.float-card p,
.float-card-2 p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hc-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(10px)
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 100;
  pointer-events: none;
  opacity: 0.8;
  animation: fadeIn 1s ease both 1.2s;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  margin: 6px auto 0;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0)
  }

  50% {
    transform: rotate(45deg) translateY(4px)
  }
}

/* ===== STATS ===== */
.stats-bar {
  padding: 0 24px;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    margin-top: 0;
    padding-top: 40px;
  }
}

.stat-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 24px;
}

.section-dark {
  background: var(--navy);
}

.section-mid {
  background: var(--navy-mid);
}

.section-head {
  margin-bottom: 52px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.22);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* ===== SOBRE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

.about-pils {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pil {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(27, 79, 191, 0.2);
  border: 1px solid rgba(27, 79, 191, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acs-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color var(--transition), transform var(--transition);
}

.acs-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateX(4px);
}

.acs-card:nth-child(2) {
  margin-left: 24px;
}

.acs-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.acs-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.acs-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 26px;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  position: relative;
  transition: border-color var(--transition);
}

.step:hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #0a0a0a;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.step-portal {
  border-color: rgba(255, 184, 0, 0.25);
  background: linear-gradient(160deg, rgba(255, 184, 0, 0.06) 0%, transparent 100%);
}

.step-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateY(-4px);
}

.service-card-highlight {
  border-color: rgba(255, 184, 0, 0.3);
  background: linear-gradient(160deg, rgba(255, 184, 0, 0.07) 0%, rgba(255, 140, 0, 0.03) 100%);
}

.sc-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.sc-icon {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.service-card>p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.sc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.sc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 15, 30, 0.92) 0%, rgba(7, 15, 30, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.po-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0a0a0a;
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.portfolio-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-overlay p {
  font-size: 0.82rem;
  color: rgba(220, 232, 245, 0.8);
}

.portfolio-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.tcard {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.tcard:hover {
  border-color: rgba(255, 184, 0, 0.35);
  transform: translateY(-3px);
}

.tcard-video {
  position: relative;
}

.tcard-play {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 80, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.tcard-play svg {
  width: 44px;
  height: 44px;
  color: white;
}

.tcard-google {
  flex-direction: column;
}

.tcard-stars {
  font-size: 1.2rem;
  color: var(--yellow);
  padding: 16px 20px 0;
  letter-spacing: 2px;
}

/* Instagram embed cards */
.tcard-embed {
  overflow: hidden;
}

.ig-embed-wrap {
  width: 100%;
  background: #000;
  overflow: hidden;
}

.ig-embed-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .ig-embed-wrap iframe {
    height: 420px;
  }
}

.tcard-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.tcard-type {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tcard-body h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
}

.tcard-body p {
  font-size: 0.855rem;
  color: var(--text-muted);
  flex: 1;
}

.tcard-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--yellow);
  margin-top: 8px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 70px 24px;
  background: linear-gradient(135deg, #0d1f3e 0%, #122448 50%, #0d1a38 100%);
  border-top: 1px solid rgba(255, 184, 0, 0.15);
  border-bottom: 1px solid rgba(255, 184, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.footer-logo .logo-conf { color: #1B4FBF !important; font-weight: 800; }
.footer-logo .logo-en { color: #FFB800 !important; font-weight: 800; }
.footer-logo .logo-text { font-size: 1.1rem !important; }

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

details {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color var(--transition);
}

details[open] {
  border-color: rgba(255, 184, 0, 0.3);
}

details summary {
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

details summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: var(--yellow);
  margin-bottom: 10px;
}

details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {

  .contact-grid,
  .contact-grid-2 {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition);
}

.contact-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.contact-card-cta {
  border-color: rgba(255, 184, 0, 0.2);
  background: linear-gradient(160deg, rgba(255, 184, 0, 0.06) 0%, transparent 100%);
}

.cc-icon {
  font-size: 1.8rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
footer {
  padding: 56px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #030910;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--yellow);
  color: #0a0a0a;
}

.footer-logo {
  margin-bottom: 4px;
}

.footer-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

footer li a:hover {
  color: var(--yellow);
}

.copy {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copy p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 190;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}