* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #07111f;
  --dark2: #0d1b2e;
  --text: #172033;
  --muted: #697386;
  --light: #f4f7fb;
  --white: #ffffff;
  --accent: #16a6ff;
  --accent2: #6c5ce7;
  --line: #e5eaf1;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.topbar {
  background: var(--dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -2px;
}

.logo span { color: var(--accent); }

.brand {
  font-weight: 700;
  font-size: 15px;
  margin-right: auto;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #dce7f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

nav a:hover { color: var(--accent); }

.news-section {
  background: var(--dark);
  color: white;
  padding: 58px 0 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #8da2ba;
  margin-bottom: 8px;
}

.eyebrow.accent { color: var(--accent2); }

h1 {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1;
  letter-spacing: -2px;
}

.live {
  color: #ff647c;
  font-size: 12px;
  font-weight: 800;
}

.featured-news {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 390px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
}

.news-image {
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(12,35,61,.25), rgba(5,14,28,.9)),
    radial-gradient(circle at 25% 35%, #2487c5 0 9%, transparent 10%),
    radial-gradient(circle at 70% 60%, #5742b7 0 15%, transparent 16%),
    linear-gradient(120deg, #123c5b, #171c45 60%, #080e1d);
  position: relative;
}

.image-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 35px;
}

.category {
  display: inline-block;
  background: var(--accent);
  color: #001323;
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.category.small {
  background: transparent;
  border: 1px solid #9eb0c6;
  color: #b8c7d9;
}

.news-image h2 {
  max-width: 680px;
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1.08;
  margin: 13px 0;
  letter-spacing: -1px;
}

.news-image p {
  color: #c5d2e1;
  max-width: 620px;
}

.read-btn {
  margin-top: 20px;
  padding: 11px 17px;
  border: 0;
  border-radius: 7px;
  background: white;
  color: var(--dark);
  font-weight: 800;
  cursor: pointer;
}

.news-info {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-info > span {
  font-size: 10px;
  color: #91a3b8;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.news-info h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 15px 0;
}

.news-info p { color: #aebdcd; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.news-card {
  padding: 23px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}

.news-card h3 { margin: 12px 0 6px; }
.news-card p { color: #9eafc2; font-size: 14px; }

.services-section {
  padding: 78px 0;
  background: var(--light);
}

.services-intro {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: end;
}

.services-intro h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.services-intro h2 span { color: var(--accent2); }

.intro-text {
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service {
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 25px;
  transition: .2s;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(16,33,56,.09);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: var(--accent2);
  font-size: 23px;
  margin-bottom: 22px;
}

.service h3 { margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 14px; }

.cta {
  margin-top: 45px;
  padding: 32px;
  border-radius: 15px;
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h3 { font-size: 28px; margin-bottom: 5px; }
.cta p:last-child { color: #9eafc2; }

.cta-button, .contact-button {
  white-space: nowrap;
  text-decoration: none;
  padding: 13px 19px;
  border-radius: 7px;
  background: var(--accent);
  color: #001323;
  font-weight: 800;
}

.contact-section { padding: 60px 0; }

.contact-box {
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-box h2 { font-size: 32px; line-height: 1.1; }
.contact-box p:last-child { color: var(--muted); margin-top: 7px; }

footer {
  padding: 28px 0;
  background: #050c16;
  color: #8796a8;
  font-size: 13px;
}

@media (max-width: 850px) {
  nav { gap: 12px; }
  .brand { display: none; }
  .featured-news { grid-template-columns: 1fr; }
  .news-image { min-height: 420px; }
  .news-grid { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta, .contact-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 550px) {
  .nav { height: 62px; }
  nav a { font-size: 12px; }
  .news-section { padding-top: 38px; }
  .news-image { min-height: 500px; }
  .image-overlay { padding: 23px; }
  .services-grid { grid-template-columns: 1fr; }
}
