:root{
  --bg:#f7f8fc;
  --text:#0f172a;
  --muted:#475569;
  --border:#e5e7eb;
  --primary:#2563eb;
  --shadow:0 14px 30px rgba(15,23,42,.08);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

.logo{
  width:200px;
  height:60px;
  display:flex;
  align-items:center;
}

.logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

nav ul{
  list-style:none;
  display:flex;
  gap:16px;
  margin:0;
  padding:0;
}

nav a{
  font-weight:600;
  color:var(--muted);
}

/* Hero */
.hero{padding:56px 0}

.heroGrid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}

.heroCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.heroCard h3{
  margin-top:0;
  font-size:22px;
}

.ctaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:20px 0;
}

.btn{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700;
}

.btn.primary{
  background:linear-gradient(135deg,#2563eb,#06b6d4);
  color:#fff;
  border:none;
}

.heroMedia{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
}

.heroMedia img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* Sections */
section{padding:44px 0}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}

/* Footer */
footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding:32px 0;
}

.footerGrid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
}

.footerBrand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.footerBrand img{
  width:90px;
  height:auto;
  flex-shrink:0;
}

.footerBrandText{
  font-size:14px;
  line-height:1.4;
  max-width:44ch;
}

.footerContact{
  text-align:right;
  white-space:nowrap;
}

.small{
  font-size:13px;
  color:var(--muted);
  text-align:center;
  margin-top:24px;
}

/* Responsive */
@media(max-width:900px){
  .heroGrid,
  .grid3{
    grid-template-columns:1fr;
  }

  .footerGrid{
    flex-direction:column;
    align-items:flex-start;
  }

  .footerContact{
    text-align:left;
    white-space:normal;
  }
}