:root {
  --navy: #0a2340;
  --navy-deep: #07182c;
  --ink: #0b1f33;
  --muted: #4a5d73;
  --muted-2: #6b7f95;
  --blue: #1e9ef0;
  --blue-hot: #4fc3f7;
  --blue-soft: #e3f2fd;
  --green: #22c55e;
  --green-deep: #16a34a;
  --paper: #f3f6f9;
  --paper-2: #eef2f6;
  --white: #ffffff;
  --line: #e2e8f0;
  --shadow: 0 18px 40px rgba(10, 35, 64, 0.12);
  --radius: 16px;
  --max: 1120px;
  --font: "Segoe UI", "DejaVu Sans", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: var(--white);
  padding: 8px 12px;
  z-index: 20;
  border-radius: 8px;
}

.topbar {
  background: var(--navy);
  color: var(--white);
}

.topbar-inner,
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--white);
  line-height: 1;
}
.logo .cel { color: var(--blue-hot); }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}
.nav a {
  color: #cfe8f7;
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover { color: var(--white); }

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(79, 195, 247, 0.18);
  color: #b3e5fc;
  border: 1px solid rgba(79, 195, 247, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e88e5;
  background: var(--blue-soft);
  padding: 5px 10px;
  border-radius: 6px;
}

h1 {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

h2 {
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 42rem;
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(30, 158, 240, 0.35);
  border: 1.5px solid transparent;
}
.btn:hover { filter: brightness(1.05); }
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--blue-hot);
  box-shadow: none;
  border-color: rgba(79, 195, 247, 0.35);
}

.meta {
  font-size: 13px;
  color: var(--muted-2);
}
.meta a { color: var(--blue); font-weight: 600; text-decoration: none; }

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phone {
  width: min(280px, 100%);
  background: #101820;
  border-radius: 32px;
  padding: 12px 10px 16px;
  box-shadow:
    0 18px 40px rgba(10, 35, 64, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.08) inset;
}

.phone-notch {
  width: 72px;
  height: 8px;
  background: #1c2834;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 8px;
}

.phone img {
  width: 100%;
  border-radius: 18px;
  background: var(--paper);
}

.caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted-2);
  max-width: 280px;
}

.benefits {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 8px 0 4px;
}

.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 1px 2px rgba(10, 35, 64, 0.04);
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.benefits strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.benefits span {
  font-size: 13.5px;
  color: var(--muted);
}

.section {
  padding: 28px 0 64px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.news-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(10, 35, 64, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.news-card h2 { margin: 8px 0 8px; font-size: 24px; }
.news-card p { color: var(--muted); }
.news-card .more {
  margin-top: 14px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.visual img {
  width: 100%;
  border-radius: 12px;
}

.footnote {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted-2);
}

.page-footer {
  margin-top: auto;
  background: var(--navy-deep);
  color: #c5d4e2;
  padding: 28px 0;
}
.page-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.page-footer a {
  color: var(--blue-hot);
  text-decoration: none;
  font-weight: 600;
}
.page-footer .brand { color: var(--white); font-weight: 700; }
.page-footer .brand .cel { color: var(--blue-hot); }

.empty {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 28px;
  color: var(--muted);
}

.not-found {
  padding: 80px 0 100px;
}

@media (max-width: 860px) {
  .hero-grid,
  .news-card {
    grid-template-columns: 1fr;
  }
  .news-card img {
    height: 280px;
  }
  .hero { padding-top: 36px; }
  .phone { width: 240px; }
}

@media (max-width: 520px) {
  .topbar-inner { padding: 14px 0; }
  .nav .hide-sm { display: none; }
  .wrap, .topbar-inner { width: min(var(--max), calc(100% - 28px)); }
}
