/* =====================
   RESET & BASE
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================
   VARIABLES
===================== */
:root {
  --blue: #0B3C8D;
  --blue-dark: #082f6f;
  --bg-alt: #f6f8fc;
  --border: #e5eaf1;
  --text-muted: #64748b;
  --radius: 14px;
}

/* =====================
   LAYOUT
===================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--bg-alt);
}

/* =====================
   HEADER
===================== */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
}

.brand-name {
  font-weight: 600;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  font-size: 14px;
  color: #334155;
}

.menu a:hover {
  color: var(--blue);
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: #ffffff;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* =====================
   HERO
===================== */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.ticks {
  list-style: none;
}

.ticks li {
  margin-bottom: 6px;
  color: #334155;
}

/* =====================
   CARDS
===================== */
.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 10px;
}

/* =====================
   INFO BOX
===================== */
.info {
  display: grid;
  gap: 14px;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}

.value {
  font-weight: 600;
}

.note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* =====================
   GRIDS
===================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* =====================
   PRICES
===================== */
.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.price-list li:last-child {
  border-bottom: none;
}

/* =====================
   ABOUT
===================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.steps {
  padding-left: 20px;
}

.steps li {
  margin-bottom: 6px;
}

/* =====================
   FOOTER
===================== */
.footer {
  padding: 48px 0;
}

.footer.alt {
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
}

/* =====================
   SOCIAL ICONS (LOGO MATCHED)
===================== */
.footer .socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 10px;
}

.footer .socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .15s ease;
}

.footer .socials a:hover {
  background-color: var(--blue-dark);
  transform: translateY(-1px);
}

.footer .socials svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  display: block;
}

/* =====================
   LINKS
===================== */
.text-link {
  color: var(--blue);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .about,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }
}
