﻿:root {
  --blue: #008ce3;
  --blue-dark: #006aad;
  --black: #050505;
  --white: #ffffff;
  --light: #f3f9ff;
  --text: #111827;
  --muted: #5f6f82;
  --line: #dce8f4;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: #000000;
  color: #ffffff;
  font-size: 15px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px 0;
}

.topbar strong {
  color: #8fd1ff;
}

.topbar a {
  color: #8fd1ff;
  font-weight: 900;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 1000;
  color: #000000;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #000000;
  border-radius: 16px;
  padding: 5px;
}

.brand span {
  font-size: 18px;
}

.links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 900;
}

.links a:hover {
  color: var(--blue);
}

.cta {
  background: var(--blue);
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 140, 227, 0.25);
}

.cta:hover {
  background: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 140, 227, 0.42), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #020617 0%, #06223b 50%, #0075bd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .65;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
  padding: 82px 0;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #bfe8ff;
  font-weight: 1000;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -3px;
}

.hero p {
  margin: 0 0 30px;
  color: #e6f7ff;
  font-size: 21px;
  max-width: 760px;
}

.hero-logo {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.30);
}

.hero-logo img {
  background: #000000;
  border-radius: 22px;
  padding: 14px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 1000;
  border: 2px solid transparent;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border-color: rgba(255,255,255,.55);
  color: #ffffff;
}

.button.dark {
  background: #000000;
  color: #ffffff;
}

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

.stat {
  padding: 17px;
  border-radius: 18px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
}

.stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: #d8f2ff;
}

.section {
  padding: 76px 0;
}

.section.light {
  background: var(--light);
}

.section.dark {
  background: #06101f;
  color: #ffffff;
}

.section-title {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-title h2,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -2px;
}

.section-title p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.dark .section-title p {
  color: #d4e7f8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e8f6ff;
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.box h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.box p {
  color: #475569;
}

.rate-box {
  background: #000000;
  color: #ffffff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 22px 58px rgba(0,0,0,.24);
}

.rate-box h2 {
  margin: 0 0 16px;
  font-size: 44px;
  letter-spacing: -1px;
}

.rate-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-weight: 1000;
}

.rate-line span:last-child {
  color: #8fd1ff;
  font-size: 25px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px 14px 44px;
  font-weight: 800;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 12px;
  color: var(--blue);
  font-weight: 1000;
}

.page-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,140,227,.18), transparent 30%),
    linear-gradient(135deg, #eef8ff, #ffffff);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}

.breadcrumb {
  color: var(--blue);
  font-weight: 1000;
  margin-bottom: 12px;
}

.contact-panel {
  background: #000000;
  color: #ffffff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 22px 58px rgba(0,0,0,.24);
}

.contact-panel a {
  display: block;
  color: #8fd1ff;
  font-size: 26px;
  font-weight: 1000;
  margin: 12px 0;
}

.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  padding: 18px;
  color: #7c2d12;
  font-weight: 900;
}

.footer {
  background: #020617;
  color: #ffffff;
  padding: 50px 0;
}

.footer .container {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 34px;
}

.footer img {
  width: 122px;
  background: #000000;
  border-radius: 16px;
  padding: 4px;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: #d9efff;
  margin: 8px 0;
}

.small {
  color: #aebed1;
  font-size: 15px;
}

@media (max-width: 900px) {
  .hero .container,
  .two-col,
  .footer .container {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 14px;
  }

  .brand {
    justify-content: center;
  }

  .links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    padding-top: 8px;
  }

  .links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f9ff;
    border: 1px solid #dce8f4;
    color: #111827;
    border-radius: 999px;
    padding: 10px 13px;
    font-size: 14px;
    line-height: 1;
  }

  .links a.cta {
    background: var(--blue);
    color: #ffffff !important;
    border-color: var(--blue);
    width: 100%;
    padding: 13px 16px;
    font-size: 16px;
  }

  .grid,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 56px 0;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }
}


/* =========================================================
   PREMIUM MOBILE HEADER / NAV FIX
   ========================================================= */
@media (max-width: 900px) {

  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .topbar {
    font-size: 14px;
  }

  .topbar .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }

  .topbar div:first-child {
    line-height: 1.35;
  }

  .topbar div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 16px;
    line-height: 1.35;
  }

  .header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.98);
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
  }

  .brand {
    justify-content: center;
    gap: 14px;
  }

  .brand img {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    padding: 4px;
  }

  .brand span {
    font-size: 26px;
    line-height: .92;
    letter-spacing: -1px;
  }

  .links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .links::-webkit-scrollbar {
    display: none;
  }

  .links a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 17px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d9e7f2;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(15,23,42,.07);
    white-space: nowrap;
  }

  .links a.cta {
    background: #008ce3;
    border-color: #008ce3;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(0,140,227,.22);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 0 50px;
  }

  .eyebrow {
    font-size: 14px;
    padding: 8px 13px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: .96;
    letter-spacing: -2.4px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 26px;
  }

  .buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    font-size: 17px;
    border-radius: 16px;
  }

  .button.secondary {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.35);
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .stat {
    padding: 18px;
  }

  .hero-logo {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .section-title h2,
  .page-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.03;
    letter-spacing: -1.6px;
  }

  .section-title p,
  .page-hero p {
    font-size: 18px;
  }

  .grid,
  .two-col,
  .footer .container {
    grid-template-columns: 1fr;
  }

  .card,
  .box,
  .rate-box,
  .contact-panel {
    border-radius: 22px;
    padding: 24px;
  }

  .rate-box h2,
  .box h2 {
    font-size: 34px;
  }

  .page-hero {
    padding: 50px 0;
  }

  .footer {
    padding: 42px 0;
  }
}

@media (max-width: 480px) {
  .topbar .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand span {
    font-size: 24px;
  }

  .brand img {
    width: 68px;
    height: 68px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 19px;
  }

  .links {
    margin-left: -2px;
    margin-right: -2px;
  }

  .links a {
    font-size: 14px;
    padding: 10px 15px;
  }
}
