@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap");

:root {
  --navy: #192a45;
  --blue: #2565a6;
  --text: #0d141a;
  --muted: #56585e;
  --soft: #e3ebf9;
  --bg: #f7f9fc;
  --card: #ffffff;
  --shadow: 0 25px 60px rgba(13, 20, 26, 0.12);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #ffffff, var(--bg));
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(37, 101, 166, 0.08), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(25, 42, 69, 0.08), transparent 40%);
  pointer-events: none;
  z-index: -2;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 20, 26, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  position: relative;
}

.logo {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 101, 166, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--navy);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 20, 26, 0.08);
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  max-width: 640px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.future {
  padding: 72px 0;
}

.future-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: start;
}

.stats {
  display: grid;
  gap: 24px;
}

.stat-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: "Sora", sans-serif;
  color: var(--blue);
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.image-grid img {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.services {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(37, 101, 166, 0.04), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.service-card img {
  border-radius: 16px;
  height: 140px;
  object-fit: cover;
}

.service-card h6 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  margin: 0;
}

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

.cta {
  padding: 72px 0;
}

.cta-inner {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta h4 {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.cta-word {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  text-align: right;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-label {
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.75);
  margin: 4px 0;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-weight: 600;
}

.subscribe-form {
  display: grid;
  gap: 12px;
}

.subscribe-form label {
  font-weight: 600;
}

.subscribe-form input {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 14px;
  font-family: "Source Sans 3", sans-serif;
}

.subscribe-form button {
  justify-self: start;
}

.footer-notice {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

.footer-notice h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 12px;
}

.footer-notice p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
}

.footer-copy {
  font-size: 0.9rem;
}

.legal-hero {
  padding: 96px 0 40px;
}

.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 12px;
}

.legal-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  color: var(--navy);
}

.legal-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.legal-content {
  padding: 0 0 72px;
}

.legal-content .container {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 40px;
}

.legal-content h2 {
  font-family: "Sora", sans-serif;
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 1.4rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.refund-hero {
  padding: 96px 0 32px;
}

.refund-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 0 0 12px;
  color: var(--navy);
}

.refund-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.refund-content {
  padding: 24px 0 72px;
}

.refund-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.refund-policy {
  display: grid;
  gap: 20px;
}

.policy-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.policy-card h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  margin: 0 0 12px;
  color: var(--navy);
}

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

.policy-card p:last-child {
  margin-bottom: 0;
}

.steps {
  margin: 12px 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.refund-aside {
  display: grid;
  gap: 20px;
}

.refund-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(25, 42, 69, 0.12);
  box-shadow: 0 18px 40px rgba(25, 42, 69, 0.12);
}

.refund-form-card h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 16px;
}

.refund-form {
  display: grid;
  gap: 12px;
}

.refund-form label {
  font-weight: 600;
  color: var(--navy);
}

.refund-form input {
  border-radius: 12px;
  border: 1px solid rgba(25, 42, 69, 0.2);
  padding: 12px 14px;
  font-family: "Source Sans 3", sans-serif;
}

.refund-form button {
  margin-top: 8px;
}

.refund-contact {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.refund-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.refund-faq {
  padding: 0 0 72px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.faq-card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.faq-card h4 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

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

.reveal {
  animation: fadeUp 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .future-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .refund-grid {
    grid-template-columns: 1fr;
  }

  .cta-word {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 72px 0 32px;
  }

  .legal-content .container {
    padding: 28px 20px;
  }

  .refund-hero {
    padding: 72px 0 24px;
  }

  .refund-content {
    padding: 16px 0 56px;
  }

  .refund-form button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }

  .subscribe-form button {
    justify-content: center;
  }
}
