﻿@font-face {
  font-family: 'Bebas Neue';
  src: url('assets/fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-primary: #265b8c;
  --blue-accent: #a2c4e4;
  --green-secondary: #0d7938;
  --green-accent: #8ee2b0;
  --red-tertiary: #d87482;
  --yellow-tertiary: #f0c024;
  --gray-tertiary: #d7dad8;
  --off-white: #fcfcfc;
  --off-black: #2d2d2d;
  --shadow: 0 20px 45px rgba(38, 91, 140, 0.15);
  --header-offset: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--off-black);
  background: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(162, 196, 228, 0.45), rgba(252, 252, 252, 0))
    no-repeat;
  position: relative;
  overflow: visible;
}

.page::before,
.page::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  opacity: 0.3;
  z-index: 0;
}

.page::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--green-accent), transparent 70%);
  top: -140px;
  right: -140px;
}

.page::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--yellow-tertiary), transparent 70%);
  bottom: -160px;
  left: -120px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(252, 252, 252, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(38, 91, 140, 0.12);
  box-shadow: 0 14px 30px rgba(38, 91, 140, 0.08);
}

.brand img {
  width: 130px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--off-black);
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-primary);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 70px 8vw 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-secondary);
}

h1,
h2,
h3,
h4 {
  font-family: 'Bebas Neue', 'Segoe UI', sans-serif;
  letter-spacing: 0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  color: var(--blue-primary);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: var(--blue-primary);
  color: var(--off-white);
  box-shadow: var(--shadow);
}

.button-ghost {
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.hero-metrics span {
  font-weight: 700;
  color: var(--blue-primary);
  font-size: 1.1rem;
}

.hero-metrics p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: #3c3c3c;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  display: flex;
  gap: 8px;          /* optional spacing between images */
}

/* .hero-photo {
  width: 33%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  max-height: 260px;
} */

.hero-photo{
  flex: 1 1 0;        /* equal widths, allowed to shrink */
  width: 0;           /* key for perfect fit with gap */
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
   min-height: 260px;   /* ✅ at least 500px tall */
  /* height: 500px;  */
  /* max-height: 260px; */
}

.image-break {
  margin: 10px 8vw 40px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.image-break img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 300px;
}

.glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(38, 91, 140, 0.35), transparent 70%);
  top: -30px;
  right: 40px;
  z-index: 0;
}

.visual-card {
  background: white;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.visual-card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-pills span {
  background: var(--green-accent);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 70px 8vw 40px;
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--blue-primary);
}

.grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3,h2 {
  font-size: 1.5rem;
  color: var(--blue-primary);
  margin-bottom: 12px;
}

.section-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
  background: linear-gradient(120deg, rgba(142, 226, 176, 0.25), rgba(252, 252, 252, 0.8));
  border-radius: 32px;
  margin: 0 8vw;
  padding: 50px;
}


.highlight {
  background: var(--blue-primary);
  color: white;
  padding: 12px 16px;
  border-radius: 18px;
  margin-top: 20px;
  max-width: 620px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 32px;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-secondary);
  font-weight: 700;
}

.feature {
  background: rgba(162, 196, 228, 0.25);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(38, 91, 140, 0.15);
}

.feature h3 {
  font-size: 1.4rem;
  color: var(--blue-primary);
  margin-bottom: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pill-row span {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue-primary);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: linear-gradient(130deg, rgba(38, 91, 140, 0.12), rgba(142, 226, 176, 0.25));
  border-radius: 32px;
  margin: 20px 8vw 60px;
  padding: 50px;
}

.qa {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.cta-box {
  background: white;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 24px 8vw 40px;
  color: #5a5a5a;
  font-weight: 500;
}

.social-links {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
  color: var(--blue-primary);
  text-decoration: none;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-section .section-header {
  max-width: none;
}

.contact-card {
  background: linear-gradient(135deg, rgba(162, 196, 228, 0.35), rgba(255, 255, 255, 0.9));
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  width: 100%;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.contact-card a {
   color: var(--blue-primary);
  text-decoration: none;
  font-weight: 600;
}

.social-inline {
  width: 32px;
  height: 32px;
  /* display: inline-flex; */
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* background: currentColor; */
  /* box-shadow: var(--shadow); */
  color: var(--blue-primary);
}

.social-inline svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-split,
  .section-cta {
    margin: 0 6vw;
    padding: 32px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between; /* name left, avatar right */
  gap: 12px;
}

.card-head h3 {
  margin: 0;
}

.card .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;  /* round */
  object-fit: cover;
  flex: 0 0 50px;      /* keep fixed size */
}