:root {
  --bg: #061318;
  --bg-deep: #030b0e;
  --surface: #0b2027;
  --surface-2: #0e2931;
  --cyan: #27c6df;
  --cyan-light: #8ceaf5;
  --text: #f6fbfc;
  --muted: #a8bec4;
  --line: rgba(140, 234, 245, .18);
  --line-soft: rgba(255,255,255,.08);
  --shadow: 0 28px 80px rgba(0,0,0,.42);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(39,198,223,.09), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, #07181e 55%, var(--bg-deep) 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 136px) 0; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: black;
}
.skip-link:focus { top: 16px; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(3, 11, 14, .92);
  border-color: var(--line-soft);
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.brand img {
  width: 72px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: .17em;
}
.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .03em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .9rem;
}
.nav a {
  position: relative;
  text-decoration: none;
  color: #dcebee;
}
.nav > a:not(.nav-whatsapp)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--cyan);
  transition: right .2s ease;
}
.nav > a:not(.nav-whatsapp):hover::after { right: 0; }
.nav-whatsapp {
  padding: 10px 17px;
  border: 1px solid rgba(140,234,245,.32);
  border-radius: 999px;
  background: rgba(39,198,223,.08);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  padding: 10px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 132px 0 84px;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -13%;
  top: 9%;
  width: 50vw;
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(39,198,223,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(39,198,223,.018), 0 0 0 180px rgba(39,198,223,.012);
}
.hero-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(46px, 7vw, 94px);
  align-items: center;
}
.overline {
  margin: 0 0 16px;
  color: var(--cyan-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.location-copy h2,
.contact-title-wrap h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(5rem, 10vw, 9.2rem);
  line-height: .83;
  letter-spacing: .045em;
  text-shadow: 0 0 32px rgba(39,198,223,.05);
}
.hero-subtitle {
  max-width: 480px;
  margin: 20px 0 0;
  color: #d8e8eb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
}
.hero-rule {
  width: min(320px, 72%);
  height: 1px;
  margin: 30px 0 20px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.hero-number {
  margin: 0;
  color: var(--muted);
}
.hero-number strong { color: white; font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--cyan);
  color: #041014;
  box-shadow: 0 16px 36px rgba(39,198,223,.13);
}
.button-ghost {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.025);
}
.hero-logo-wrap { position: relative; }
.hero-logo-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(140,234,245,.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}
.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  box-shadow: inset 0 0 80px rgba(39,198,223,.05);
  pointer-events: none;
}
.hero-logo-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}
.corner {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-color: var(--cyan);
}
.corner-a {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  border-radius: var(--radius-lg) 0 0 0;
}
.corner-b {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  border-radius: 0 0 var(--radius-lg) 0;
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px 0;
  color: #739299;
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.orbit-one,
.orbit-two {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.orbit-one {
  left: -220px;
  bottom: -300px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(39,198,223,.08);
}
.orbit-two {
  left: -80px;
  bottom: -165px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255,255,255,.055);
}

.intro { border-top: 1px solid var(--line-soft); }
.intro-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}
.section-heading { position: sticky; top: 118px; }
.section-heading h2 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: .96;
}
.identity-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(39,198,223,.055), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}
.identity-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2px 18px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.logo-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #0b0f10;
}
.logo-figure img { width: 100%; height: auto; object-fit: contain; }

.location { padding-top: 30px; }
.location-card {
  position: relative;
  min-height: 310px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 45%, rgba(39,198,223,.14), transparent 23rem),
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}
.location-symbol {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(140,234,245,.23);
  border-radius: 22px;
  background: rgba(39,198,223,.08);
}
.location-symbol svg { width: 34px; fill: var(--cyan); }
.location-copy { position: relative; z-index: 2; }
.location-copy h2 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: .95;
}
.location-word {
  position: absolute;
  right: -12px;
  bottom: -62px;
  color: rgba(255,255,255,.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 19vw, 15rem);
  letter-spacing: .03em;
  line-height: 1;
  pointer-events: none;
}

.contact {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}
.contact-title-wrap h2 {
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: .9;
  letter-spacing: .035em;
}
.contact-title-wrap > p:last-child { margin: 18px 0 0; color: var(--muted); }
.whatsapp-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(140,234,245,.25);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(39,198,223,.11), rgba(255,255,255,.025));
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.whatsapp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140,234,245,.48);
  background: linear-gradient(135deg, rgba(39,198,223,.15), rgba(255,255,255,.035));
}
.whatsapp-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
}
.whatsapp-icon svg { width: 31px; fill: #031014; }
.whatsapp-copy { display: grid; }
.whatsapp-copy span {
  color: var(--cyan-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.whatsapp-copy strong {
  margin: 5px 0 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}
.whatsapp-copy small { color: var(--muted); }
.arrow { color: white; font-size: 2rem; }

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line-soft);
  background: #02080a;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-inner > div { display: grid; }
.footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: .15em;
}
.footer span,
.footer a { color: var(--muted); font-size: .8rem; }
.footer a { text-decoration: none; }
.footer-right { text-align: right; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 15px 34px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 29px; fill: #031014; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav {
    position: absolute;
    top: 73px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: rgba(3,11,14,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 12px; border-radius: 10px; }
  .nav-whatsapp { margin-top: 5px; text-align: center; }
  .hero { min-height: auto; padding-top: 124px; }
  .hero-grid,
  .intro-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-subtitle,
  .hero-rule { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo-wrap { width: min(100%, 760px); margin-inline: auto; }
  .section-heading { position: static; }
  .location-card { min-height: 260px; }
  .contact-title-wrap { text-align: center; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 58px; height: 40px; }
  .brand-text small { display: none; }
  .hero { padding: 112px 0 78px; }
  .hero h1 { font-size: clamp(4.4rem, 22vw, 6.5rem); }
  .hero-grid { gap: 46px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-caption { display: none; }
  .hero-logo-card { padding: 8px; border-radius: 22px; }
  .hero-logo-card img { border-radius: 15px; }
  .section { padding: 82px 0; }
  .identity-panel { padding: 12px; border-radius: 22px; }
  .identity-topline { display: grid; gap: 3px; padding: 3px 3px 12px; }
  .logo-figure { border-radius: 15px; }
  .location { padding-top: 12px; }
  .location-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px 44px;
  }
  .location-symbol { width: 64px; height: 64px; border-radius: 18px; }
  .location-copy h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .location-word { display: none; }
  .whatsapp-card {
    grid-template-columns: auto 1fr;
    gap: 16px;
    min-height: 0;
    padding: 23px;
  }
  .whatsapp-icon { width: 54px; height: 54px; }
  .whatsapp-icon svg { width: 27px; }
  .whatsapp-copy strong { font-size: clamp(1.72rem, 8.2vw, 2.45rem); }
  .arrow { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-right { text-align: left; gap: 3px; }
  .floating-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
