*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ocean-50: #f0f9ff;
  --ocean-100: #e0f2fe;
  --ocean-200: #bae6fd;
  --ocean-500: #0284c7;
  --ocean-700: #0369a1;
  --ocean-800: #075985;
  --ocean-900: #0c4a6e;
  --ocean-dark: #03192e;
  --silver-50: #f8fafc;
  --silver-100: #f1f5f9;
  --silver-200: #e2e8f0;
  --silver-300: #cbd5e1;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --brand-shadow: 0 16px 40px -16px rgba(2, 132, 199, 0.28);
  --soft-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.22);
  --glass: rgba(255, 255, 255, 0.84);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(186, 230, 253, 0.42), transparent 30%),
    radial-gradient(circle at top right, rgba(2, 132, 199, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef5fb 48%, #f8fafc 100%);
  color: var(--slate-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.page-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--glass);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 24px -22px rgba(15, 23, 42, 0.55);
}

.site-header__inner,
.hero-section,
.cred-band,
.section-shell,
.site-footer__inner {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup__box {
  background: var(--slate-900);
  border-radius: 22px;
  padding: 10px 12px;
  box-shadow: var(--soft-shadow);
}

.brand-lockup__box img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-lockup__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-900);
}

.brand-lockup__sub {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.mobile-strip a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-strip a:hover,
.mobile-strip a.is-active {
  color: var(--ocean-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ocean-500), var(--ocean-800));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--brand-shadow);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.chip-link:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--soft-shadow);
}

.btn-ghost {
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(203, 213, 225, 0.9);
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(3, 25, 46, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #7dd3fc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px -28px rgba(2, 132, 199, 0.8);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.18);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px 0 34px;
}

.hero-copy,
.hero-visual,
.panel,
.panel-soft,
.panel-dark {
  border-radius: 32px;
  overflow: hidden;
}

.hero-copy {
  padding: 36px clamp(22px, 4vw, 44px);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(7, 89, 133, 0.92));
  color: var(--white);
  box-shadow: 0 32px 55px -36px rgba(2, 132, 199, 0.65);
}

.hero-title {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-title span {
  background: linear-gradient(135deg, #7dd3fc, #e0f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 56ch;
  margin: 0 0 26px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 15px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 255, 0.96));
  border: 1px solid rgba(186, 230, 253, 0.9);
  box-shadow: var(--soft-shadow);
}

.hero-visual__image {
  width: 100%;
  min-height: 100%;
  border-radius: 26px;
  background:
    linear-gradient(165deg, rgba(14, 165, 233, 0.12), rgba(2, 132, 199, 0.06)),
    linear-gradient(145deg, #ffffff, #eff6ff);
  border: 1px solid rgba(186, 230, 253, 0.9);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual__image img {
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 14px 25px rgba(2, 132, 199, 0.16));
}

.hero-stat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-stat {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(186, 230, 253, 0.9);
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ocean-800);
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
}

.hero-stat span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cred-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 16px;
}

.cred-item {
  padding: 18px 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.88);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.cred-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  color: var(--ocean-700);
}

.cred-item span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-shell {
  padding: 42px 0 90px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--ocean-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.section-title span {
  color: var(--ocean-700);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-link:hover {
  color: var(--ocean-600);
}

.panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--soft-shadow);
}

.panel-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: var(--soft-shadow);
}

.panel-dark {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  color: var(--white);
  box-shadow: 0 30px 55px -38px rgba(15, 23, 42, 0.9);
}

.site-footer {
  background: var(--slate-900);
  color: var(--white);
  padding: 74px 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 26px;
  margin-bottom: 28px;
}

.footer-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(30, 41, 59, 0.76);
  border: 1px solid rgba(51, 65, 85, 0.9);
}

.footer-card h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.contact-stack,
.social-grid {
  display: grid;
  gap: 14px;
}

.contact-pill,
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(51, 65, 85, 0.95);
}

.contact-pill__text span,
.social-link span {
  display: block;
}

.contact-pill__label {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.contact-pill__value {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.whatsapp-badge {
  padding: 11px 16px;
  border-radius: 14px;
  background: #25d366;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-link {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-link small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.social-link__arrow {
  color: #38bdf8;
  font-size: 18px;
  font-weight: 900;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(51, 65, 85, 0.86);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #94a3b8;
  font-size: 12px;
}

.mobile-toggle,
.mobile-strip {
  display: none;
}

@media (max-width: 1024px) {
  .hero-section,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .cred-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    background: rgba(255, 255, 255, 0.84);
    color: var(--slate-900);
  }

  .mobile-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 16px 16px;
    white-space: nowrap;
  }

  .hero-copy {
    padding: 30px 24px;
  }

  .hero-stat-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .hero-section,
  .cred-band,
  .section-shell,
  .site-footer__inner {
    width: min(1280px, calc(100vw - 24px));
  }

  .brand-lockup__box img {
    width: 98px;
  }

  .hero-title,
  .section-title {
    letter-spacing: -0.04em;
  }

  .cred-band {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
