
:root{
  --primary:#00365D;
  --primary-2:#0A4C7A;
  --text:#102131;
  --muted:#5D6B78;
  --line:#DDE6EE;
  --soft:#F5F8FB;
  --white:#FFFFFF;
  --shadow:0 18px 50px rgba(0, 34, 61, .10);
  --radius:22px;
  --radius-sm:16px;
  --container:min(1180px, calc(100% - 32px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
.container{width:var(--container);margin:0 auto}
.section{padding:82px 0}
.light-section{background:var(--soft)}
.section-tag{
  display:inline-block;
  margin-bottom:12px;
  color:var(--primary);
  font-weight:700;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.section-head{
  max-width:760px;
  margin-bottom:28px;
}
h1,h2,h3,p{margin:0 0 14px}
h1{
  font-size:clamp(2.2rem, 6vw, 4.5rem);
  line-height:1.05;
  letter-spacing:-.04em;
}
h2{
  font-size:clamp(1.7rem, 4vw, 3rem);
  line-height:1.1;
  letter-spacing:-.03em;
}
h3{
  font-size:1.15rem;
  line-height:1.25;
}
p{color:var(--muted)}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(16px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(221,230,238,.8);
}
.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand-logo{height:52px;width:auto;object-fit:contain}
.site-nav{
  position:fixed;
  inset:78px 16px auto 16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:14px;
  display:none;
  flex-direction:column;
  gap:12px;
}
.site-nav.open{display:flex}
.site-nav a{
  color:var(--text);
  font-weight:600;
  padding:8px 10px;
  border-radius:12px;
}
.site-nav a:hover{background:var(--soft)}
.nav-toggle{
  width:48px;height:48px;border:1px solid var(--line);background:#fff;border-radius:14px;
  display:grid;place-items:center;gap:4px;padding:0;cursor:pointer
}
.nav-toggle span{display:block;width:20px;height:2px;background:var(--primary)}
.desktop-cta{display:none}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 10px 30px rgba(0,54,93,.24);
}
.btn-primary:hover{background:var(--primary-2)}
.btn-secondary{
  background:rgba(255,255,255,.16);
  color:#fff;
  border-color:rgba(255,255,255,.28);
}
.btn-secondary:hover{background:rgba(255,255,255,.22)}
.btn-outline{
  background:#fff;
  border-color:var(--line);
  color:var(--primary);
}
.btn-outline:hover{border-color:var(--primary)}
.full{width:100%}

.hero{
  position:relative;
  min-height:92vh;
  display:grid;
  align-items:end;
  overflow:hidden;
}
.hero-media,.hero-media img,.hero-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero-media img{object-fit:cover}
.hero-overlay{
  background:linear-gradient(180deg, rgba(0,18,31,.08) 0%, rgba(0,30,50,.72) 60%, rgba(0,25,43,.9) 100%);
}
.hero-content{
  position:relative;
  z-index:1;
  padding:110px 0 34px;
  color:#fff;
}
.eyebrow{
  display:inline-flex;
  margin-bottom:16px;
  padding:10px 14px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.78rem;
}
.hero-content p{
  max-width:760px;
  color:rgba(255,255,255,.84);
  font-size:1.05rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:26px 0 30px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.hero-stats article{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:16px;
  backdrop-filter:blur(6px);
}
.hero-stats strong{display:block;font-size:1.1rem;margin-bottom:6px}
.hero-stats span{color:rgba(255,255,255,.78);font-size:.92rem}

.split-grid,.media-grid,.contact-grid,.investment-wrap{
  display:grid;
  gap:28px;
}
.feature-panel{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-content:flex-start;
}
.feature-chip{
  padding:12px 16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:600;
  color:var(--primary);
}
.card,.detail-card,.argument-card,.contact-card,.investment-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.stats-grid,.details-grid,.arguments{
  display:grid;
  gap:18px;
}
.stat-card{padding:24px}
.stat-label{
  display:inline-block;
  margin-bottom:12px;
  font-size:.82rem;
  color:var(--primary);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.detail-card{
  padding:26px;
}
.detail-card ul,.contact-card ul{
  list-style:none;
  margin:0;
  padding:0;
}
.detail-card li,.contact-card li{
  padding:10px 0;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}
.detail-card li:last-child,.contact-card li:last-child{border-bottom:none}
.media-highlight{background:linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%)}
.media-stack{
  display:grid;
  gap:16px;
}
.media-stack img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.gallery-item{
  padding:0;
  margin:0;
  border:none;
  background:none;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.gallery-item img{
  width:100%;
  height:190px;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-item:hover img{transform:scale(1.04)}
.price-box{
  margin-top:18px;
  padding:24px;
  border-radius:20px;
  background:linear-gradient(135deg, #00365D 0%, #0E537F 100%);
  color:#fff;
}
.price-box small{display:block;opacity:.76;margin-bottom:8px}
.price-box strong{display:block;font-size:clamp(2rem, 5vw, 3.3rem);line-height:1;margin-bottom:8px}
.price-box span{opacity:.84}
.investment-card{padding:28px}
.argument-card{padding:24px}
.faq-list{
  display:grid;
  gap:14px;
}
.faq-list details{
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  padding:18px 20px;
}
.faq-list summary{
  cursor:pointer;
  list-style:none;
  font-weight:700;
  color:var(--text);
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list details p{padding-top:12px;margin-bottom:0}
.contact-section{
  background:linear-gradient(180deg, #f7fbff 0%, #eef4f9 100%);
}
.contact-card{
  padding:24px;
}
.contact-logo{
  width:220px;
  height:auto;
  object-fit:contain;
  margin-bottom:12px;
}
.contact-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}
.site-footer{
  padding:26px 0 38px;
  background:#041D30;
  color:#fff;
}
.footer-wrap{
  display:grid;
  gap:16px;
}
.footer-logo{
  height:54px;
  width:auto;
  object-fit:contain;
  margin-bottom:12px;
  filter:brightness(0) invert(1);
}
.footer-brand p{color:rgba(255,255,255,.76)}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.footer-links a{color:rgba(255,255,255,.9)}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(4,19,32,.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:1200;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1100px, 100%);
  max-height:86vh;
  border-radius:20px;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}
.lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:var(--primary);
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

@media (min-width: 768px){
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .hero-stats{grid-template-columns:repeat(4,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .details-grid{grid-template-columns:repeat(3,1fr)}
  .arguments{grid-template-columns:repeat(3,1fr)}
  .footer-wrap{grid-template-columns:1.4fr .8fr;align-items:center}
}

@media (min-width: 980px){
  .nav-toggle{display:none}
  .site-nav{
    position:static;
    inset:auto;
    display:flex !important;
    flex-direction:row;
    background:transparent;
    border:none;
    box-shadow:none;
    padding:0;
    gap:6px;
  }
  .desktop-cta{display:inline-flex}
  .split-grid{grid-template-columns:1.15fr .85fr;align-items:start}
  .media-grid{grid-template-columns:1fr 1fr;align-items:center}
  .contact-grid{grid-template-columns:1.2fr .8fr;align-items:center}
  .investment-wrap{grid-template-columns:1fr 1fr;align-items:start}
  .gallery-grid{grid-template-columns:repeat(4,1fr)}
  .gallery-item img{height:220px}
}

@media (max-width: 420px){
  .brand-logo{height:46px}
  .hero-content{padding-top:96px}
  .btn{width:100%}
  .hero-actions .btn{width:100%}
}
