:root{
  --bg: #ffffff;
  --bg2: #f7f8fb;
  --card: #ffffff;
  --card2: #fbfbfe;
  --line: rgba(10, 20, 40, .10);

  --text: rgba(15, 23, 42, .95);
  --muted: rgba(15, 23, 42, .70);
  --muted2: rgba(15, 23, 42, .60);

  --accent: #0ea5e9;   /* sky */
  --accent2:#22c55e;   /* green */
  --accent3:#6366f1;   /* indigo */

  --shadow: 0 18px 55px rgba(2, 6, 23, .08);
  --shadow2: 0 10px 30px rgba(2, 6, 23, .07);

  --radius: 18px;
  --radius2: 22px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(14,165,233,.12), transparent 60%),
    radial-gradient(800px 500px at 80% 10%, rgba(34,197,94,.10), transparent 60%),
    radial-gradient(800px 500px at 40% 90%, rgba(99,102,241,.10), transparent 60%),
    linear-gradient(180deg, #ffffff, #f6f7fb);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.small{ font-size: 13px; }
.muted{ color: var(--muted); }

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  font-size: 13px;
}

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  gap:14px;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap: wrap;
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
}
.toplink{
  font-weight: 800;
  color: rgba(15, 23, 42, .85);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: 999px;
}
.toplink:hover{ box-shadow: var(--shadow2); }

.lang{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 900;
  display:flex;
  align-items:center;
  gap:8px;
}
.lang-dot{
  width: 10px; height:10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
#langHint{ padding-left:6px; }

.header{
  position: sticky;
  top: 49px;
  z-index: 40;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  padding: 6px;
  box-shadow: var(--shadow2);
}
.brand-name{
  font-weight: 900;
  letter-spacing: .2px;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 12px;
}
.nav a{
  color: rgba(15,23,42,.75);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav a:hover{
  background: rgba(14,165,233,.08);
  color: rgba(15,23,42,.95);
}

.hamburger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  cursor:pointer;
}
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, .85);
  margin: 4px auto;
  border-radius: 2px;
}
.mobile-nav{
  display:none;
  padding: 10px 0 16px;
}
.mobile-nav a{
  display:block;
  padding: 12px 0;
  color: rgba(15,23,42,.80);
  font-weight: 900;
  border-top: 1px solid rgba(10,20,40,.08);
}
.mobile-nav a.btn{
  margin-top: 12px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(14,165,233,.25);
  background: linear-gradient(90deg, rgba(14,165,233,.15), rgba(34,197,94,.12));
  box-shadow: var(--shadow2);
  font-weight: 900;
  letter-spacing: .2px;
  transition: .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost{
  border-color: rgba(10,20,40,.12);
  background: rgba(255,255,255,.78);
}
.btn-link{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 12px 0;
  color: var(--accent);
}
.btn-small{
  padding: 10px 12px;
  border-radius: 12px;
}

/* Hero */
.hero{ padding: 44px 0 10px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 28px;
  align-items: start;
}
.hero-copy h1{
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.lead{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-highlights{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 18px;
}
.card-mini{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10,20,40,.10);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: var(--shadow2);
}
.card-mini-title{
  font-weight: 900;
  margin-bottom: 6px;
}

.cta-row{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.trust-row{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size: 13px;
}
.dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.hero-media{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.hero-image-wrap{
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(10,20,40,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.85);
}
.hero-image{
  width:100%;
  height: 360px;
  object-fit: cover;
  opacity: .98;
  filter: contrast(1.03) saturate(1.05);
}
.hero-badge{
  position:absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(10,20,40,.12);
  backdrop-filter: blur(10px);
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: var(--shadow2);
}
.badge-title{ font-weight: 900; }
.badge-sub{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.spec-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.80);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.spec-title{ font-weight: 900; margin-bottom: 10px; }
.spec-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spec{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.9);
}
.spec-k{ font-size: 12px; color: var(--muted2); margin-bottom: 6px; font-weight: 800; }
.spec-v{ font-weight: 900; }
.spec-note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
.section{ padding: 54px 0; }
.section-alt{
  background: rgba(248,250,252,.85);
  border-top: 1px solid rgba(10,20,40,.08);
  border-bottom: 1px solid rgba(10,20,40,.08);
}
.section-head{ margin-bottom: 18px; }
.section-head.left{ text-align:left; }
.section-head h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: .2px;
}
.section-head p{ margin:0; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.85);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card.soft{
  background: rgba(255,255,255,.78);
}
.card h3{ margin:0 0 8px; font-size: 18px; }
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.card-actions{ margin-top: 14px; }

.note-strip{
  margin-top: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(10,20,40,.10);
  background: linear-gradient(90deg, rgba(14,165,233,.10), rgba(34,197,94,.08));
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow2);
}
.note-icon{ font-size: 22px; }
.note-title{ font-weight: 900; margin-bottom: 4px; }

.brand-strip{
  margin-top: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.85);
  padding: 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
  box-shadow: var(--shadow2);
}
.brand-strip h3{ margin:0 0 6px; }
.brand-strip p{ margin:0; }
.brand-strip-right{ display:flex; gap: 10px; flex-wrap: wrap; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.g{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow2);
}
.g img{
  width:100%;
  height: 160px;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.05);
  transition: .2s ease;
}
.g:hover img{ transform: scale(1.03); }

/* Chips */
.chips{ display:flex; flex-wrap:wrap; gap: 10px; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.85);
  color: rgba(15,23,42,.78);
  font-weight: 900;
  font-size: 13px;
  box-shadow: var(--shadow2);
}

/* Accordion */
.accordion details{
  border-radius: 16px;
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.85);
  padding: 14px 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow2);
}
.accordion summary{
  cursor:pointer;
  font-weight: 900;
}
.accordion summary::-webkit-details-marker{ display:none; }
.accordion div{ margin-top: 10px; line-height: 1.7; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.contact-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.k{ color: var(--muted2); font-size: 12px; font-weight: 900; margin-bottom: 8px; }
.v{ font-weight: 900; }
.contact-actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }

.meta-line{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
}
.meta-line .sep{ opacity: .4; }

.map-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.map-card iframe{ width:100%; height: 360px; border:0; }
.map-foot{
  padding: 12px 14px;
  border-top: 1px solid rgba(10,20,40,.08);
  background: rgba(255,255,255,.85);
}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(10,20,40,.08);
  background: rgba(255,255,255,.85);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items:center;
}
.footer-brand{ font-weight: 900; }
.footer-links{
  display:flex;
  gap: 14px;
  justify-content:center;
  color: rgba(15,23,42,.70);
  font-weight: 900;
}
.footer-links a:hover{ color: rgba(15,23,42,.95); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-image{ height: 320px; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; text-align:center; }
  .footer-links{ justify-content:center; }
}
@media (max-width: 760px){
  .nav{ display:none; }
  .hamburger{ display:block; }
  .mobile-nav.show{ display:block; }
  .hero-highlights{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
}
