:root{
  --bg:#0B1220;
  --panel:#111B2D;
  --panel-2:#16233A;
  --text:#F5F8FF;
  --muted:#B6C3DA;
  --brand:#1F4F8E;
  --brand-2:#2B78D4;
  --accent:#33D0FF;
  --line:rgba(255,255,255,.10);
  --line-soft:rgba(255,255,255,.06);
  --shadow:0 18px 45px rgba(0,0,0,.32);
  --radius:20px;
  --radius-lg:28px;
  --max:1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 500px at 15% -10%, rgba(43,120,212,.28), transparent 60%),
    radial-gradient(900px 480px at 100% 0%, rgba(51,208,255,.12), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none;}
a:hover{text-decoration:underline;}
img{max-width:100%;display:block;}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto;}

.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;padding:10px 14px;border-radius:12px;background:#fff;color:#000;z-index:1000;}

.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(12px);
  background:linear-gradient(to bottom, rgba(11,18,32,.88), rgba(11,18,32,.55));
  border-bottom:1px solid var(--line-soft);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:18px;padding:12px 0;position:relative;
}
.brand{display:flex;align-items:center;gap:12px;min-width:0;}
.brand-logo{width:48px;height:48px;border-radius:14px;background:rgba(255,255,255,.06);box-shadow:var(--shadow);}
.brand-text{display:flex;flex-direction:column;line-height:1.02;}
.brand-text strong{font-size:15px;}
.brand-text span{font-size:12px;color:var(--muted);}
.header-actions{display:flex;align-items:center;gap:12px;}
.lang-switch{
  display:inline-flex;align-items:center;padding:4px;border-radius:999px;
  background:rgba(255,255,255,.06);border:1px solid var(--line);
}
.lang-link{
  min-width:42px;text-align:center;padding:8px 12px;border-radius:999px;font-size:13px;font-weight:700;
  color:rgba(255,255,255,.86);text-decoration:none !important;
}
.lang-link.active{background:linear-gradient(135deg, rgba(43,120,212,.95), rgba(31,79,142,.95));color:#fff;box-shadow:0 8px 20px rgba(0,0,0,.25);}
.nav{display:flex;align-items:center;gap:8px;}
.nav a{padding:10px 12px;border-radius:12px;font-size:14px;color:rgba(255,255,255,.88);}
.nav a:hover{background:rgba(255,255,255,.06);text-decoration:none;}
.nav-toggle{
  display:none;width:44px;height:44px;border-radius:14px;cursor:pointer;
  border:1px solid var(--line);background:rgba(255,255,255,.06);
}
.nav-toggle span{display:block;width:18px;height:2px;background:#fff;margin:4px auto;border-radius:2px;}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:16px;border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(43,120,212,.95), rgba(31,79,142,.95));
  color:#fff;font-weight:800;letter-spacing:.1px;text-decoration:none !important;
  box-shadow:0 16px 36px rgba(0,0,0,.28);transition:transform .18s ease, filter .18s ease;
}
.btn:hover{transform:translateY(-1px);filter:brightness(1.03);}
.btn-sm{padding:10px 14px;border-radius:14px;font-size:14px;}
.btn-ghost{background:rgba(255,255,255,.06);box-shadow:none;}
.btn-ghost:hover{background:rgba(255,255,255,.10);}

.kicker,.badge,.eyebrow{
  display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,.06);border:1px solid var(--line);
}
.eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:var(--accent);background:rgba(51,208,255,.08);}
.accent{color:var(--accent);}

.hero{position:relative;min-height:78vh;display:grid;align-items:center;overflow:hidden;}
.hero-media{position:absolute;inset:0;z-index:-1;}
.hero-media img{width:100%;height:100%;object-fit:cover;}
.hero-overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(11,18,32,.18), rgba(11,18,32,.80) 58%),
    linear-gradient(to bottom, rgba(11,18,32,.12), rgba(11,18,32,.93));
}
.hero-content{padding:86px 0 68px;}
.hero h1{max-width:12ch;margin:14px 0 12px;font-size:clamp(32px, 5vw, 58px);line-height:1.02;letter-spacing:-.04em;}
.lead{max-width:62ch;color:rgba(255,255,255,.84);font-size:16px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px;}
.hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px;}
.badge{font-size:13px;color:rgba(255,255,255,.9);}

.section{padding:72px 0;}
.section-alt{background:linear-gradient(to bottom, rgba(255,255,255,.025), rgba(255,255,255,.02));border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft);}
.section-head{max-width:70ch;margin-bottom:26px;}
.section-head h2{margin:0 0 8px;font-size:clamp(28px,3vw,36px);line-height:1.08;letter-spacing:-.03em;}
.section-head p{margin:0;color:var(--muted);}

.intro-strip{padding-top:28px;}
.intro-grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:end;
  padding:24px;border:1px solid var(--line);border-radius:var(--radius-lg);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}
.intro-grid h2{margin:8px 0 0;font-size:clamp(26px,3vw,38px);line-height:1.08;letter-spacing:-.03em;}
.intro-grid p{margin:0;color:var(--muted);}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
.stack{display:grid;gap:16px;}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
  border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);
}
.card-media img{width:100%;height:230px;object-fit:cover;}
.card-body{padding:18px;}
.card-body h3{margin:0 0 6px;font-size:19px;}
.card-body p{margin:0 0 12px;color:rgba(255,255,255,.82);}
.bullets{margin:0;padding-left:18px;color:rgba(255,255,255,.78);}
.bullets li{margin:6px 0;}

.cta-strip{
  margin-top:18px;padding:18px;border-radius:var(--radius-lg);border:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  background:linear-gradient(135deg, rgba(31,79,142,.38), rgba(51,208,255,.10));
}
.cta-strip h3{margin:0 0 6px;}
.cta-strip p{margin:0;color:var(--muted);}
.cta-strip-actions{display:flex;flex-wrap:wrap;gap:10px;}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.gallery-item{
  border:none;background:transparent;padding:0;cursor:pointer;border-radius:18px;overflow:hidden;
  border:1px solid rgba(255,255,255,.12);box-shadow:0 12px 28px rgba(0,0,0,.24);transition:transform .18s ease;
}
.gallery-item:hover{transform:translateY(-2px);}
.gallery-item img{width:100%;height:210px;object-fit:cover;}
.gallery-item-wide{grid-column:span 3;}
.gallery-item-wide img{height:320px;}

.video-wrap,.map{
  border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow);background:rgba(255,255,255,.03);
}
.video-wrap iframe{width:100%;aspect-ratio:16/9;border:0;}
.map iframe{width:100%;height:100%;border:0;min-height:340px;}

.embed iframe{
  width:100%;height:520px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.03);margin-bottom:14px;
}
.social-grid{align-items:start;}
.social-card-body{display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;}
.social-icon{
  width:54px;height:54px;border-radius:18px;display:grid;place-items:center;
  font-weight:900;letter-spacing:.04em;color:#fff;
}
.social-icon.instagram{background:linear-gradient(135deg, #833AB4, #E1306C, #FCAF45);}
.social-icon.tiktok{background:linear-gradient(135deg, #111, #24F4EE 60%, #FE2C55);}

.form input,.form textarea{
  width:100%;margin-top:6px;padding:12px;border-radius:14px;border:1px solid rgba(255,255,255,.14);
  background:rgba(10,14,24,.55);color:var(--text);outline:none;
}
.form input:focus,.form textarea:focus{border-color:rgba(51,208,255,.55);box-shadow:0 0 0 4px rgba(51,208,255,.14);}
.form label{display:block;font-size:14px;color:rgba(255,255,255,.86);}
.form-row{margin-bottom:12px;}
.contact-line{display:flex;gap:10px;align-items:center;margin:8px 0;}
.divider{height:1px;background:var(--line);margin:14px 0;}
.small{font-size:13px;}
.muted{color:var(--muted) !important;}

.footer{padding:30px 0;border-top:1px solid var(--line-soft);background:rgba(0,0,0,.16);}
.footer-inner{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;flex-wrap:wrap;}
.footer-logo{width:56px;height:56px;border-radius:18px;}
.footer-left{max-width:48ch;}
.footer-right{text-align:right;}

.lightbox{
  position:fixed;inset:0;display:none;place-items:center;padding:18px;z-index:90;
  background:rgba(0,0,0,.80);backdrop-filter:blur(10px);
}
.lightbox.open{display:grid;}
.lightbox-img{max-width:min(1100px,96vw);max-height:82vh;border-radius:18px;border:1px solid rgba(255,255,255,.12);box-shadow:0 22px 50px rgba(0,0,0,.55);}
.lightbox-close{
  position:absolute;top:14px;right:14px;width:44px;height:44px;border-radius:14px;border:1px solid var(--line);
  background:rgba(255,255,255,.08);color:#fff;font-size:28px;cursor:pointer;
}

.wa-float{
  position:fixed;right:16px;bottom:16px;z-index:60;width:58px;height:58px;border-radius:18px;display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(51,208,255,.95), rgba(43,120,212,.95));
  border:1px solid rgba(255,255,255,.18);box-shadow:0 18px 40px rgba(0,0,0,.40);
}
.wa-float svg{width:30px;height:30px;fill:#fff;}

.reveal{opacity:0;transform:translateY(10px);transition:opacity .7s ease, transform .7s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

@media (max-width: 980px){
  .grid-3{grid-template-columns:1fr;}
  .intro-grid,.grid-2{grid-template-columns:1fr;}
  .gallery{grid-template-columns:1fr 1fr;}
  .gallery-item-wide{grid-column:span 2;}
  .gallery-item img{height:220px;}
  .gallery-item-wide img{height:260px;}
  .social-card-body{grid-template-columns:auto 1fr;}
  .social-card-body .btn{grid-column:1 / -1;}
}
@media (max-width: 840px){
  .nav-toggle{display:block;}
  .nav{
    position:absolute;right:0;top:72px;display:none;flex-direction:column;align-items:stretch;gap:8px;
    min-width:240px;padding:12px;border-radius:20px;border:1px solid var(--line);
    background:rgba(11,18,32,.95);box-shadow:var(--shadow);
  }
  .nav.open{display:flex;}
  .cta-strip{flex-direction:column;align-items:flex-start;}
}
@media (max-width: 640px){
  .container{width:min(var(--max), calc(100% - 24px));}
  .header-inner{padding:10px 0;}
  .brand-text{display:none;}
  .lang-link{min-width:38px;padding:8px 10px;}
  .hero{min-height:72vh;}
  .hero-content{padding:72px 0 52px;}
  .hero h1{max-width:unset;}
  .section{padding:56px 0;}
  .gallery{grid-template-columns:1fr;}
  .gallery-item-wide{grid-column:span 1;}
  .gallery-item img,.gallery-item-wide img{height:220px;}
  .footer-right{text-align:left;}
  .wa-float{right:12px;bottom:12px;}
}
