/* =========
   Hub styles (match aesthetic)
   ========= */
:root{
  --bg: #0b0c10;
  --bg2: #10121a;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --shadow: 0 18px 50px rgba(0,0,0,0.35);
  --radius: 18px;
  --max: 1100px;
  --accent: #7c3aed;
  --accent2: #22c55e;
}

:root[data-theme="light"]{
  --bg: #f6f7fb;
  --bg2: #eef1f8;
  --card: rgba(0,0,0,0.04);
  --border: rgba(0,0,0,0.10);
  --text: rgba(0,0,0,0.88);
  --muted: rgba(0,0,0,0.65);
  --muted2: rgba(0,0,0,0.50);
  --shadow: 0 18px 50px rgba(0,0,0,0.12);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(124,58,237,0.25), transparent 55%),
              radial-gradient(1100px 700px at 80% 10%, rgba(34,197,94,0.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.6;
}
a{ color: inherit; text-underline-offset: 4px; }
a:hover{ opacity: 0.92; }

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

.skip{
  position:absolute; left:-999px; top:0;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: .75rem 1rem;
  border-radius: 12px;
  z-index: 999;
}
.skip:focus{ left: 1rem; top: 1rem; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: .75rem 0;
}
.brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.nav__menu{
  display:flex;
  gap: .85rem;
  align-items:center;
}
.nav__menu a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: .55rem .65rem;
  border-radius: 12px;
}
.nav__menu a:hover{
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
}

/* Sections */
.section{ padding: 4.25rem 0; }
.section--alt{ background: color-mix(in srgb, var(--bg2) 55%, transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section__head h2{ margin: 0; letter-spacing: -0.02em; }
.muted{ color: var(--muted); margin: .25rem 0 0 0; }

/* Grid & card */
.grid{ display:grid; gap: 1rem; }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem;
  box-shadow: var(--shadow);
}

.list{ margin: .75rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.list--compact{ margin-top: .5rem; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent2) 55%, var(--accent)));
  color: white;
  font-weight: 600;
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-1px); opacity: .95; }
.btn:active{ transform: translateY(0px); }
.btn--ghost{
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--small{ padding: .5rem .75rem; border-radius: 12px; font-weight: 600; }

/* Hero */
.hero{
  position: relative;
  padding: 6.25rem 0 5rem;
  overflow: clip;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.eyebrow{
  margin: 0 0 .35rem 0;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}
.hero h1{
  margin: 0 0 .75rem 0;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.lead{ margin: 0 0 1.25rem 0; color: var(--muted); font-size: 1.05rem; }
.hero__cta{ display:flex; flex-wrap: wrap; gap: .75rem; margin: 1.15rem 0 1.1rem; }
.hero__links{
  list-style:none;
  display:flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  padding:0;
  margin: 0.25rem 0 0;
  color: var(--muted2);
}
.hero__links a{ text-decoration: none; padding: .15rem 0; border-bottom: 1px dashed var(--border); }

.hero__bg{
  position:absolute; inset: -150px -150px auto -150px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(124,58,237,0.26), transparent 70%),
              radial-gradient(closest-side, rgba(34,197,94,0.18), transparent 70%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

/* Profile card */
.card__kicker{ color: var(--muted2); margin: 0; font-size: .9rem; }
.card__value{ margin: .2rem 0 0; font-weight: 700; }
.profile{ display:flex; gap: 1rem; align-items:center; }
.profile__img{
  width: 96px; height: 96px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.choice__links{ display:flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

/* Footer */
.footer{
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg2) 55%, transparent);
}
.footer__grid{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .grid--2{ grid-template-columns: 1fr; }
  .nav__menu{ gap: .4rem; }
}


.hero__img{ width: 100%; height: auto; aspect-ratio: 3 / 4; }
  .hero__overlay{ position: relative; bottom: 0; margin-top: .85rem; }
}


.social-grid{ grid-template-columns: 1fr; }
}


/* =========
   Visual polish
   ========= */
.hero__img{
  width: clamp(320px, 34vw, 460px);
  height: clamp(420px, 46vw, 600px);
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  box-shadow: var(--shadow);
  background: color-mix(in srgb, var(--bg2) 70%, transparent);
}

.route-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.25rem 0 1.1rem;
}
.route{
  padding: 1.05rem 1.05rem;
}
.route p.muted{ margin-top: .35rem; }
.route__links{ display:flex; flex-wrap: wrap; gap: .55rem; margin-top: .85rem; }

.hero__grid{ gap: 1.6rem; }

@media (min-width: 980px){
  .route-grid{ max-width: 560px; }
}

@media (max-width: 980px){
  .hero__img{ width: 100%; height: auto; aspect-ratio: 3 / 4; }
}


/* =========
   Icons + contact form
   ========= */
.icon{
  width: 18px;
  height: 18px;
  display:inline-block;
  vertical-align: -3px;
  margin-right: .55rem;
  opacity: .9;
}
.icon svg{ width: 100%; height: 100%; fill: currentColor; }

.contact-list{
  list-style:none;
  padding:0;
  margin:.75rem 0 0;
  color: var(--muted);
}
.contact-list li{ margin:.4rem 0; }
.contact-list a{ text-decoration:none; border-bottom: 1px dashed var(--border); }

.social-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}
.social{
  display:flex;
  align-items:center;
  gap: .6rem;
  padding: .75rem .85rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  text-decoration:none;
  color: var(--text);
  font-weight: 600;
}
.social:hover{ opacity: .95; transform: translateY(-1px); }
.social .icon{ margin-right: 0; }

.form{
  margin-top: 1rem;
}
.form__row{ display:flex; flex-direction: column; gap: .4rem; margin-bottom: .85rem; }
label{ font-weight: 600; color: var(--muted); }
input, textarea{
  padding: .75rem .9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg2) 55%, transparent);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{ border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); }
.form__error{ margin: 0; color: #fca5a5; font-size: .9rem; min-height: 1.1rem; }
.form__grid{ display:grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
@media (max-width: 760px){
  .form__grid{ grid-template-columns: 1fr; }
  .social-grid{ grid-template-columns: 1fr; }
}


/* =========
   Floating WhatsApp
   ========= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  display:block;
  z-index: 9999;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  border: none;
}
.wa-float img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.hero__img{ border-radius: var(--radius) !important; }

/* =========
   Social square icons (reference)
   ========= */
.social-squares{
  display:flex;
  gap:.6rem;
  margin-top:.9rem;
  flex-wrap:wrap;
}
.sq{
  width:44px;
  height:44px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  box-shadow: var(--shadow);
}
.sq svg{ width:22px; height:22px; fill:#fff; }
.sq:hover{ transform: translateY(-1px); opacity:.95; }
.sq--wa{ background:#57b846; }
.sq--fb{ background:#3b5998; }
.sq--x{ background:#00acee; }
.sq--mail{ background:#111; }
.sq--in{ background:#0e76a8; }

/* More air between cards */
.route-grid{ gap: 1.15rem !important; }
.grid{ gap: 1.25rem; }

/* Contact icons as images */
.icon-img{ display:inline-flex; align-items:center; justify-content:center; }
.icon-img img{ width:18px; height:18px; object-fit:contain; border-radius:4px; }

/* Social squares with PNG logos */
.social-squares .sq{
  width:44px;
  height:44px;
  border-radius:8px;
  overflow:hidden;
  background: rgba(255,255,255,0.06);
  border:1px solid var(--border);
}
.social-squares .sq img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Interest quick links */
.chip-links{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:.8rem;
}
.chip-link{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: .5rem .75rem;
  text-decoration:none;
  color: rgba(255,255,255,0.86);
  font-size: .92rem;
}
.chip-link:hover{
  border-color: rgba(124,58,237,0.85);
  background: rgba(124,58,237,0.18);
}
