:root {
  --accent: #0072CE;        /* French Blue – Pantone 285 C */
  --primary: #00263E;       /* Prussian Blue – Pantone 2965 C */
  --dark-gray: #333F48;     /* Charcoal – Pantone 432 C */
  --medium-gray: #C8C9C7;   /* Cool Gray 3 C */
  --light-gray: #F0EFEE;    /* 11-3900 TCX */
}

* {
  box-sizing: border-box; 
}

body {
  margin: 0;
  font-family: "Alexandria", sans-serif;
  font-optical-sizing: auto;
  background: #F2F7FF;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
}

section {
  padding: 90px 0;
}

.container {
  max-width: 1280px;
  margin: auto;
}

/* HERO */

.hero {
  background: linear-gradient(203deg, #191b21 0%, #004F8F 100%);
  color: white;
  padding: 180px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

h1 {
  font-size: 3.2rem;
  line-height: 4.17rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 2.6rem;
}

h2 {
  font-size: 2.2rem;
  line-height: 2.78rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1.39rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 2.78rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1.1rem;
}

p {
  color: var(--dark-gray);
  margin-bottom: 0;
}

.hero p {
  color: #fff;
}

.price-box {
  background: rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}

.price-box h2 {
  font-size: 1.2rem;
  font-style: italic;
  color: white;
}

.price-box h2 span {
    font-size: 3rem;
    font-style: normal;
}

/* BUTTON */

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #005fa8; /* darker French Blue */
}

.vertical {
  display: flex;
  flex-direction: column;
  margin-top: -4px;
}

.sect2-grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 60px;
}

.sect2-grid p {
  margin: 0;
}

.sp-lnk{
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-bottom: 2px;
}

.sp-lnk span {
  color: var(--accent);
}

.sp-lnk:hover {
  color: var(--accent);
}

.centered {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.benefits {
  background: linear-gradient(203deg, #191b21 0%, #004F8F 100%);
  color: white;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 38, 62, 0.08);
  border: 1px solid var(--light-gray);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card h3 {
  color: var(--primary);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 38, 62, 0.12);
}

/* CLOUD */

.cloud {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.cloud span {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--medium-gray);
  border-radius: 40px;
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.cloud span:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* FINAL CTA */

.cta-section {
  background: linear-gradient(203deg, #191b21 0%, #004F8F 100%);
  color: white;
}

.cta-section p {
  color: white;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px;
  font-size: 13px;
  color: var(--medium-gray);
  border-top: 1px solid var(--medium-gray);
  background-color: var(--primary);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid,
  .cta-grid,
  .sect2-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 22px;
  }
}