:root{
  --bg0:#07121b;
  --bg1:#0b1a24;
  --ink:#e9f0f6;
  --muted:#b8c7d6;
  --accent:#ff6a1a;
  --accent2:#ff9a3d;
  --line:rgba(255,255,255,.10);
  --card:rgba(10, 24, 34, .72);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 700px at 65% 10%, rgba(255,106,26,.22), transparent 55%),
    radial-gradient(900px 600px at 15% 5%, rgba(255,106,26,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
.muted{color:var(--muted)}
.accent{color:var(--accent)}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  background: rgba(5, 12, 18, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand{display:flex; align-items:center; gap:12px}
.brand-text{display:flex; flex-direction:column; line-height:1}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-sub{font-weight:800; color:var(--accent); letter-spacing:3px; font-size:.75rem; margin-top:4px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color:var(--muted); font-weight:600}
.nav a:hover{color:var(--ink)}

.top-actions{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:transform .08s ease, opacity .15s ease, box-shadow .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background: linear-gradient(180deg, var(--accent), #ff4f00);
  color:#09131b;
  border-color: rgba(255,106,26,.35);
  box-shadow: 0 10px 26px rgba(255,106,26,.20);
}
.btn-ghost{
  border-color: rgba(255,255,255,.16);
  color:var(--ink);
  background:rgba(255,255,255,.06);
}

.hero{
  position:relative;
  padding:28px 18px 10px;
}

.hero-bg{
  position:absolute; inset:-1px;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(255,106,26,.65), transparent 58%),
    radial-gradient(800px 520px at 70% 0%, rgba(24, 145, 170, .25), transparent 60%),
    linear-gradient(90deg, rgba(255,106,26,.10), rgba(10, 24, 34, 0) 45%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.0));
  filter:saturate(1.05);
  pointer-events:none;
  z-index:0;
}

.hero-inner{
  max-width:var(--max);
  margin:0 auto;
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}

.hero-left,
.hero-right{
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-left{
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-left:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,106,26,.22), transparent 40%),
    radial-gradient(circle at 10% 70%, rgba(255,106,26,.12), transparent 45%),
    linear-gradient(90deg, rgba(255,106,26,.18), transparent 45%);
  opacity:.85;
  pointer-events:none;
}

.hero-copy{
  position:relative;
  z-index:1;
  width:min(100%, 560px);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-logo-wrap{
  width:100px;
  margin:0 auto 6px;
}
.hero-logo-wrap img{
  width:100%;
  height:auto;
  display:block;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.45));
}

.hero h1{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height:1.05;
  letter-spacing:.2px;
}

.motto{
  margin:0 0 14px;
  color:var(--muted);
  font-size:1.02rem;
  max-width:42ch;
}
.motto strong{color:var(--ink)}
.motto em{color:#d9e6f2}
.verse{color:var(--muted); margin-left:8px}

.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 12px; justify-content:center}

.quick-contact{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:700;
  justify-content:center;
}
.quick-contact a{
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.04)
}
.quick-contact a:hover{border-color: rgba(255,106,26,.35)}

.hero-right{
  padding:20px;
  background: rgba(0,0,0,.18);
}

.card-preview{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,106,26,.16), rgba(255,255,255,.04));
}
.card-preview img{display:block; width:100%; height:auto}

.trust{margin-top:14px; display:grid; gap:10px}
.trust-item{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--accent);
  margin-top:6px;
  box-shadow:0 0 0 6px rgba(255,106,26,.14);
}

.section{padding:48px 18px}
.section-alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.section-inner{max-width:var(--max); margin:0 auto}
.section h2{margin:0 0 8px; font-size: clamp(1.5rem, 2vw, 2rem)}
.section-sub{margin:0 0 18px; color:var(--muted); max-width:70ch}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.tile{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background: rgba(0,0,0,.18);
  padding:14px 14px 12px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.tile h3{margin:0 0 6px}
.tile p{margin:0; color:var(--muted); line-height:1.45}
.tile:hover{
  transform: translateY(-4px);
  border-color: rgba(255,106,26,.30);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.callout{
  margin-top:18px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  border-radius:18px;
  padding:14px;
  border:1px solid rgba(255,106,26,.25);
  background: linear-gradient(90deg, rgba(255,106,26,.14), rgba(255,255,255,.03));
}
.callout-copy{min-width:0}
.callout-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.two-col{
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:16px;
  align-items:start;
}
.values{display:grid; gap:10px}
.value{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
}
.value strong{display:block; margin-bottom:4px}

.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:12px;
}
.contact-card{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background:rgba(0,0,0,.18);
  padding:14px;
}
.contact-card h3{margin:0 0 10px}
.contact-card p{margin:10px 0}
.contact-card a{color:var(--ink); font-weight:800}
.contact-card a:hover{color:var(--accent)}

.footer{
  border-top:1px solid var(--line);
  padding:22px 18px;
  background:rgba(0,0,0,.30);
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-brand{font-weight:900}
.footer-right{display:flex; gap:14px}
.footer-right a{color:var(--muted); font-weight:800}
.footer-right a:hover{color:var(--ink)}

@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .two-col{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}

@media (max-width: 560px){
  .nav{display:none}
  .hero-left,
  .hero-right{padding:18px}
  .hero-logo-wrap{width:130px; margin-bottom:12px}
  .hero h1{font-size: clamp(1.8rem, 8vw, 2.35rem)}
  .grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column; align-items:flex-start}
  .callout{
    flex-direction:column;
    align-items:stretch;
    gap:16px;
  }
  .callout-actions{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:12px;
    flex-wrap:nowrap;
  }
  .callout-actions .btn{
    width:100%;
    border-radius:14px;
    padding:14px 16px;
    text-align:center;
  }
}
