:root {
  --bg: #07121d;
  --bg-soft: #0c1f31;
  --bg-panel: rgba(8, 21, 35, 0.82);
  --surface: rgba(14, 31, 49, 0.82);
  --surface-strong: #112941;
  --surface-muted: #163551;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f7fc;
  --muted: #a9b8c9;
  --accent: #ff8f1f;
  --accent-strong: #ffae57;
  --accent-soft: rgba(255, 143, 31, 0.12);
  --secondary: #3ad5c0;
  --secondary-soft: rgba(58, 213, 192, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --font-display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Avenir", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(255, 143, 31, 0.17), transparent 30%),
    radial-gradient(circle at top right, rgba(58, 213, 192, 0.12), transparent 26%),
    linear-gradient(180deg, #06111b 0%, #071522 34%, #0a1725 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -14rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 31, 0.16), transparent 68%);
  filter: blur(12px);
}

body::after {
  bottom: -18rem;
  left: -14rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 213, 192, 0.12), transparent 72%);
  filter: blur(14px);
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(7, 18, 29, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand img {
  width: 188px;
  height: auto;
}

.brand-copy {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mini-contact {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.mini-contact strong {
  color: var(--text);
  font-size: 0.95rem;
}

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

.mini-contact a:hover {
  color: var(--accent-strong);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.page-hero {
  position: relative;
  padding: 3.8rem 0 2.6rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 143, 31, 0.08), transparent 45%),
    linear-gradient(300deg, rgba(58, 213, 192, 0.06), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: stretch;
  z-index: 1;
}

.hero-card,
.panel,
.card,
.cta-band,
.info-box,
.map-card {
  background: linear-gradient(180deg, rgba(17, 41, 65, 0.8), rgba(9, 21, 36, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.hero-copy h1,
.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 1rem 0 1rem;
  max-width: 13ch;
}

.page-intro h1 {
  margin-top: 1rem;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #d6deea;
  max-width: 62ch;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffb456);
  color: #08131f;
  box-shadow: 0 18px 50px rgba(255, 143, 31, 0.24);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-ghost {
  border-color: rgba(58, 213, 192, 0.24);
  background: rgba(58, 213, 192, 0.08);
  color: #bdf7ef;
}

.hero-panel {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.panel-top h2,
.section-heading h2,
.split-copy h2,
.faq-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.panel-top p,
.section-heading p,
.split-copy p,
.faq-copy p,
.info-box p {
  color: var(--muted);
  line-height: 1.75;
}

.chip-grid,
.stat-grid,
.card-grid,
.info-grid,
.footer-grid,
.social-grid,
.service-grid,
.product-grid,
.metric-grid {
  display: grid;
  gap: 1rem;
}

.chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chip {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chip strong,
.stat strong,
.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.chip span,
.stat span,
.metric span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.section {
  padding: 1rem 0 4rem;
}

.section-heading,
.page-intro,
.split-copy,
.faq-copy {
  max-width: 64ch;
  margin-bottom: 1.5rem;
}

.section-heading p,
.page-intro p {
  margin: 0.7rem 0 0;
}

.stat-grid,
.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-grid {
  margin-bottom: 1.5rem;
}

.stat,
.metric {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-grid,
.service-grid,
.product-grid,
.info-grid,
.footer-grid,
.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.info-box {
  padding: 1.55rem;
}

.card h3,
.info-box h3,
.footer-column h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.card p,
.card li,
.info-box li,
.footer-column li,
.table-wrap td,
.table-wrap th {
  color: var(--muted);
  line-height: 1.72;
}

.card ul,
.info-box ul,
.footer-column ul,
.bullet-list {
  padding-left: 1.1rem;
  margin: 0.9rem 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border: 1px solid rgba(255, 143, 31, 0.18);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.tag-secondary {
  background: var(--secondary-soft);
  border-color: rgba(58, 213, 192, 0.18);
  color: #bdf7ef;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb456);
  color: #08131f;
  font-weight: 800;
}

.timeline-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  padding: 1.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.04);
}

.map-card {
  padding: 0.7rem;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 22px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs span:last-child {
  color: var(--text);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-mini-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
}

.social-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link img {
  width: 38px;
  height: 38px;
}

.social-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-mini-link img {
  width: 22px;
  height: 22px;
}

.footer {
  padding: 1rem 0 2.2rem;
}

.footer-shell {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15, 32, 50, 0.82), rgba(7, 18, 30, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer-grid {
  margin-bottom: 1.4rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li + li {
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.93rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.keyword-section {
  padding-top: 0;
}

.keyword-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.keyword-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 143, 31, 0.08);
  border-color: rgba(255, 143, 31, 0.22);
}

.site-version-line {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.highlight-text {
  color: var(--accent-strong);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 54px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .faq-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid,
  .service-grid,
  .product-grid,
  .info-grid,
  .footer-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mini-contact {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(7, 18, 30, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: block;
  }

  .nav-links,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .header-actions .btn {
    width: 100%;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .info-box,
  .footer-shell,
  .cta-band {
    padding: 1.35rem;
  }

  .hero-copy h1,
  .page-intro h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 2.2rem;
  }

  .chip-grid,
  .stat-grid,
  .metric-grid,
  .card-grid,
  .service-grid,
  .product-grid,
  .info-grid,
  .footer-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 160px;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp img {
    width: 28px;
    height: 28px;
  }

  .social-link {
    width: 74px;
    height: 74px;
  }

  .social-link img {
    width: 32px;
    height: 32px;
  }

  .site-version-line {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .social-link,
  .social-mini-link,
  .keyword-chip,
  .floating-whatsapp {
    transition: none;
  }
}
