/* Global reset & base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f5f7;
  color: #1f2933;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0b7285;
}

.logo-sub {
  font-size: 0.85rem;
  color: #6b778d;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: #42526e;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  background: #e6f4f7;
  color: #0b7285;
}

/* HERO */
.hero {
  background: radial-gradient(circle at top left, #e0fbff, #f4f5f7);
  padding: 2.5rem 0 2.75rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #102a43;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: #52606d;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.badge {
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d8e2ec;
  color: #52606d;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.btn-primary {
  background: #0b7285;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(11, 114, 133, 0.25);
}

.btn-primary:hover {
  background: #086272;
  box-shadow: 0 10px 24px rgba(11, 114, 133, 0.3);
}

.btn-outline {
  background: transparent;
  color: #0b7285;
  border-color: #9fb3c8;
}

.btn-outline:hover {
  background: #e6f4f7;
  border-color: #0b7285;
}

/* HERO RIGHT PANEL */
.hero-panel {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #d8e2ec;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.hero-stat strong {
  display: block;
  font-size: 0.95rem;
  color: #102a43;
  margin-bottom: 0.2rem;
}

.hero-stat {
  font-size: 0.9rem;
  color: #52606d;
}

/* SECTIONS */
.section {
  padding: 2.5rem 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: left;
}

.pill-label {
  display: inline-flex;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: #e6f4f7;
  color: #0b7285;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  color: #102a43;
}

.section-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #52606d;
}

/* GRID LAYOUTS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: flex-start;
}

/* CARDS */
.card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid #d8e2ec;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
  color: #102a43;
}

.card p {
  font-size: 0.93rem;
  color: #52606d;
}

/* LISTS */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.list-check li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.25rem;
  color: #52606d;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08rem;
  font-size: 0.78rem;
  color: #0b7285;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: #0b7285;
  border-radius: 0.9rem;
  padding: 1.15rem 1.2rem;
  color: #e3f8fb;
  box-shadow: 0 10px 24px rgba(11, 114, 133, 0.35);
}

.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  color: #ffffff;
}

.highlight-box p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

/* FORM STYLES */
.support-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: flex;
  gap: 0.9rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #334e68;
}

.support-form input,
.support-form select,
.support-form textarea {
  border-radius: 0.55rem;
  border: 1px solid #cbd2e1;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  background: #ffffff;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: #0b7285;
  box-shadow: 0 0 0 1px rgba(11, 114, 133, 0.12);
}

.form-consent {
  font-size: 0.85rem;
  color: #52606d;
}

.form-consent input {
  margin-right: 0.35rem;
}

/* FOOTER */
.site-footer {
  background: #0b1120;
  color: #9ca3af;
  padding: 1.4rem 0;
  margin-top: 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-main a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-main a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover {
  color: #e5e7eb;
  text-decoration: underline;
}

/* LINKS */
a {
  color: #0b7285;
}

/* MOBILE STICKY CTA (form-first, compliant) */
.mobile-sticky-cta {
  display: none;
}

.mobile-cta-button {
  width: 100%;
  border: none;
  padding: 0.9rem 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  background: #0b7285;
  color: #ffffff;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.18);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

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

  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding: 2rem 0 2.25rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: #ffffff;
    border-top: 1px solid #d8e2ec;
    display: block;
  }

  body {
    padding-bottom: 3.5rem; /* space for sticky bar */
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
