:root{
  --bg:#0b1220;
  --surface:#101a2e;
  --card:#0f1a31;
  --border: rgba(255,255,255,.10);
  --text:#eef3ff;
  --muted: rgba(238,243,255,.75);
  --muted2: rgba(238,243,255,.60);
  --accent:#22c55e;   /* green */
  --accent2:#3b82f6;  /* blue */
  --accent3:#14b8a6;  /* teal */
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --radius: 20px;
  --max: 1120px;
  --pad: 22px;
}

*{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;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(59,130,246,.22), transparent 55%),
    radial-gradient(900px 600px at 85% 15%, rgba(20,184,166,.18), transparent 60%),
    linear-gradient(180deg, #070b14 0%, #060a12 100%);
}

a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}
small{color:var(--muted2)}

header{
  position:sticky; top:0; z-index:50;
  background: rgba(6,10,18,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 0;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.2px}
.logo{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  box-shadow: var(--shadow);
}

.badge{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}
.navlinks{display:flex; gap:10px; flex-wrap:wrap}
.navlinks a{
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.navlinks a:hover{background: rgba(255,255,255,.10); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:13px 16px; border-radius:999px;
  font-weight:900;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color:#03101b;
  border:0;
  box-shadow: var(--shadow);
}
.btn.secondary{
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn:active{transform: translateY(1px)}

.hero{
  padding:34px 0 10px;
}
.heroGrid{
  display:grid; gap:18px;
  grid-template-columns: 1.25fr .75fr;
  align-items:stretch;
}
@media (max-width: 960px){ .heroGrid{grid-template-columns:1fr} }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.heroMain{padding:26px}
.kicker{
  display:flex; gap:10px; align-items:center;
  color:var(--muted); font-weight:800; font-size:13px;
}
.dot{width:10px;height:10px;border-radius:99px;background:var(--accent)}
h1{margin:10px 0 10px; font-size:44px; line-height:1.03}
@media (max-width:520px){ h1{font-size:34px} }

.sub{margin:0; color:var(--muted); font-size:16.5px; line-height:1.6; max-width:70ch}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.heroMedia{
  position:relative; min-height:270px;
}
.heroMedia img{
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.heroMedia:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(6,10,18,.20) 0%, rgba(6,10,18,.72) 90%);
}

.heroSide{padding:18px}
.info{
  display:grid; gap:10px;
}
.info .box{
  padding:12px;
  border-radius:16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
}
.info b{display:block; margin-bottom:4px}
.info .mini{color:var(--muted2); font-size:13px; line-height:1.5}

.sectionTitle{
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  margin:26px 0 14px;
}
.sectionTitle h2{margin:0; font-size:26px}
.sectionTitle .hint{color:var(--muted2); font-weight:700; font-size:13px}

.grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px){ .grid{grid-template-columns: repeat(2,1fr)} }
@media (max-width: 560px){ .grid{grid-template-columns: 1fr} }

.service{
  padding:16px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.service h3{margin:0 0 6px; font-size:18px}
.service p{margin:0; color:var(--muted2); line-height:1.5}

.split{
  display:grid; gap:14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 960px){ .split{grid-template-columns:1fr} }

.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.75}

.gallery{
  display:grid; gap:14px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px){ .gallery{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 560px){ .gallery{grid-template-columns:1fr} }
.gallery figure{
  margin:0; overflow:hidden; border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.gallery img{width:100%; height:220px; object-fit:cover; display:block}
.gallery figcaption{padding:10px 12px; color:var(--muted2); font-size:13px}

.pageTitle{padding:18px}
.pageTitle h1{font-size:34px; margin:0 0 8px}
.pageTitle p{margin:0; color:var(--muted); line-height:1.6}

.form{
  padding:18px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
}
label{display:block; font-size:13px; color:var(--muted2); margin:10px 0 6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
}
textarea{min-height:120px; resize:vertical}

hr.sep{border:none; border-top:1px solid rgba(255,255,255,.10); margin:18px 0}

footer{
  padding:26px 0 40px;
  color: rgba(238,243,255,.70);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.small{font-size:13px; line-height:1.6}

.stickyCta{
  position:fixed;
  right:18px; bottom:18px;
  display:flex; gap:10px; flex-wrap:wrap;
  z-index:60;
}
@media (max-width: 560px){
  .stickyCta{left:18px; right:18px}
  .stickyCta a{flex:1}
}

/* Form controls */
select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
option{color:#0b1220}
.formRow{display:grid; gap:12px; grid-template-columns:1fr 1fr}
@media (max-width: 720px){ .formRow{grid-template-columns:1fr} }
.checkRow{display:flex; gap:10px; align-items:flex-start; margin-top:10px}
.checkRow input{width:auto; margin-top:4px}
.notice{padding:12px; border-radius:16px; background: rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.10); color: var(--muted2); font-size:13px; line-height:1.55}

.langSwitch{
  display:flex; gap:8px; align-items:center;
}
.langSwitch a{
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(238,243,255,.80);
  font-weight:800;
  font-size:12px;
}
.langSwitch a.active{
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color:#03101b;
  border:0;
}
