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

:root {
  --primary: #054964;
  --primary-hover: #063a50;
  --ink: #0a0a0a;
  --ink-soft: #5b5b5b;
  --page-bg: #F7FBFD;
  --card-bg: #ffffff;
  --card-bg-tint: #f5f7f8;
  --radius: 14px;
  --gutter: 48px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--page-bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.page {
  min-height: 100vh;
  background: var(--page-bg);
}

.card {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--ink);
  transition: color 0.15s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.icon-btn:hover {
  color: var(--primary);
}

.newsletter-btn {
  background: var(--primary);
  color: #fff;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: background 0.15s ease;
}

.newsletter-btn:hover {
  background: var(--primary-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  position: relative;
  z-index: 200;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--ink);
  transition: color 0.15s ease;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .newsletter-btn {
  margin-top: 12px;
  font-size: 14px;
  padding: 14px 28px;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 32px 0 72px;
}

.hero-content h1 {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #fff;
  padding: 16px 22px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: background 0.15s ease;
}

.cta-btn:hover {
  background: var(--primary-hover);
}

.cta-btn svg {
  flex-shrink: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------- Stats section ---------- */
.stats {
  background: #054964;
  color: #fff;
  width: 100%;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 56px;
  align-items: center;
}

.stats-figure {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stats-amount {
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.stats-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.95;
}

.stats-title {
  color: #FA1920;
  font-size: clamp(22px, 1.9vw, 26px);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.stats-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 640px;
}

.hl-yellow {
  color: #FECB0B;
}

.hl-blue {
  color: #00A7EF;
}

/* ---------- Press section ---------- */
.press {
  background: var(--page-bg);
  width: 100%;
}

.press-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px var(--gutter);
  text-align: center;
}

.press-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.press-track-wrapper {
  overflow: hidden;
  margin-bottom: 40px;
}

.press-track {
  display: flex;
  gap: 28px;
  transition: transform 0.4s ease;
}

.press-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
}

.press-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1;
}

.press-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.press-card footer strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.press-card footer span {
  font-size: 14px;
  color: #999;
}

.press-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.15s ease;
}

.dot.active {
  background: var(--ink);
}

/* ---------- Awards section ---------- */
.awards {
  background: #fff;
  width: 100%;
}

.awards-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px var(--gutter);
  text-align: center;
}

.awards-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.awards-image {
  margin-bottom: 48px;
}

.awards-image img {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

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

.awards-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.awards-icon {
  flex-shrink: 0;
}

.awards-feature p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 280px;
}

/* ---------- Offer section ---------- */
.offer {
  background: var(--page-bg);
  width: 100%;
}

.offer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}

.offer-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.offer-logo {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 16px;
}

.offer-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #138B75;
  margin-bottom: 4px;
}

.offer-heading {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.offer-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.offer-btn {
  display: inline-block;
  padding: 14px 24px;
  border: 2px solid #138B75;
  border-radius: 6px;
  color: #138B75;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: background 0.15s ease, color 0.15s ease;
}

.offer-btn:hover {
  background: #138B75;
  color: #fff;
}

/* ---------- Contact section ---------- */
.contact {
  background: #054964;
  width: 100%;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.contact-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: -0.5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: start;
}

.contact-intro h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  width: 100%;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.req {
  color: #E2496D;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
  border-color: #fff;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  padding-right: 40px;
  cursor: pointer;
}

.select-wrapper option {
  background: #054964;
  color: #fff;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-submit {
  align-self: flex-start;
  padding: 14px 28px;
  background: #E2496D;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-top: 8px;
}

.contact-submit:hover {
  background: #c93d5e;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  animation: spin 0.6s linear infinite;
}

.contact-submit.loading .contact-submit-spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  min-height: 1.2em;
}

.form-status.success {
  color: #6bff9b;
}

.form-status.error {
  color: #ffb1c1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--page-bg);
  width: 100%;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px var(--gutter) 32px;
  text-align: center;
}

.footer-inner h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-inner > p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 960px;
  margin: 0 auto;
}

.footer-line {
  border: none;
  border-top: 1px solid #d5dce0;
  margin: 32px 0 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  :root {
    --gutter: 24px;
  }

  .navbar {
    padding: 22px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 8px 0 40px;
    gap: 8px;
  }

  .hero-image {
    order: -1;
  }

  .hero-content h1 {
    font-size: clamp(30px, 7vw, 44px);
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-btn {
    padding: 14px 18px;
    font-size: 11px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px var(--gutter);
  }

  .press-inner {
    padding: 48px var(--gutter);
  }

  .press-card {
    flex: 0 0 100%;
  }

  .stats-figure {
    align-items: flex-start;
    text-align: left;
    padding-right: 0;
  }

  .stats-amount {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .stats-label {
    font-size: 14px;
  }

  .stats-title {
    font-size: 20px;
  }

  .stats-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .awards-inner {
    padding: 48px var(--gutter);
  }

  .awards-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--gutter);
  }

  .offer-image {
    text-align: center;
  }

  .offer-image img {
    margin: 0 auto;
  }

  .contact-inner {
    padding: 48px var(--gutter);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 40px var(--gutter) 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 16px;
  }

  .logo {
    font-size: 14px;
  }
}
