@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Assistant:wght@400;600;700&display=swap');

:root {
  --ink: #0d1b2a;
  --deep-ocean: #0f4c75;
  --teal: #1b9aaa;
  --sand: #f4ede1;
  --peach: #ff9f66;
  --mint: #a9f0d1;
  --text: #1a1a1a;
  --muted: #4a5568;
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 15px 40px rgba(13, 27, 42, 0.12);
  --radius: 18px;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 16;
  background: rgba(247, 251, 255, 0.9);
  backdrop-filter: blur(14px);
}

body {
  margin: 0;
  font-family: 'Assistant', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #f4f6f8;
  line-height: 1.6;
  min-height: 100vh;
}

.page main {
  background: #f4f6f8;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f4c75;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

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

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

h1,
h2,
h3,
.eyebrow {
  font-family: 'Space Grotesk', 'Assistant', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.65rem, 2.8vw, 1.95rem);
  margin: 0 0 0.6rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.5rem;
}

.hero-title {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 0.25rem;
}

.hero-title-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: #e7f1fa;
  border: 1px solid rgba(15, 76, 117, 0.18);
  border-radius: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f4c75;
  width: fit-content;
  box-shadow: none;
}

.hero-title-main {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  color: #0f1c2d;
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 700;
  color: #1f2a38;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-subtitle::before {
  content: '';
  display: block;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(120deg, #0f4c75, #1b9aaa);
  box-shadow: none;
}

p {
  margin: 0 0 1rem;
}

.page {
  overflow-x: hidden;
  padding-bottom: 90px; /* leave room for fixed CTA so footer text isn't covered */
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 20;
}

.nav-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
}

.brand-dot {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, #1b9aaa, #0f4c75);
  box-shadow: 0 12px 24px rgba(15, 76, 117, 0.25);
  display: grid;
  place-items: center;
  position: relative;
}

.brand-dot::after {
  content: '🌊';
  font-size: 1.15rem;
}

.brand-title {
  font-family: 'Space Grotesk', 'Assistant', sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.nav-menu a {
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover {
  background: rgba(27, 154, 170, 0.12);
  color: var(--deep-ocean);
}

.nav-cta {
  background: #ff9f66;
  color: #0d1b2a;
  box-shadow: 0 12px 24px rgba(255, 159, 102, 0.3);
}

.nav-toggle { display: none; }

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(13, 27, 42, 0.06);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}

.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.chip {
  padding: 0.45rem 0.9rem;
  background: rgba(27, 154, 170, 0.1);
  color: var(--deep-ocean);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #0f1c2d;
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

/* Campaign hero inherits same flat style */

.hero::before,
.hero::after,
.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.7rem, 2.8vw, 2.4rem) 1.25rem clamp(1.9rem, 3.2vw, 2.8rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
}

.hero-visual {
  display: grid;
  gap: 1.1rem;
  align-self: stretch;
}

.hero-copy {
  display: grid;
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
  align-self: flex-start;
  max-width: 720px;
}

.hero-copy p {
  color: #2b3440;
  font-size: 1.05rem;
  margin: 0.1rem 0 0.6rem;
}

.hero-lede {
  font-size: 1.06rem;
  line-height: 1.7;
  color: #1f2a38;
  margin-top: 0.35rem;
  padding: 0.65rem 0.9rem;
  border-inline-start: 3px solid #0f4c75;
  border-radius: 10px;
  background: #f7f9fb;
}

.hero-pane {
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: none;
  display: grid;
  gap: 0.45rem;
  border-radius: 10px;
}

.hero-note {
  color: #1f2a38;
  margin: 0;
  font-weight: 600;
  line-height: 1.6;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-point {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #1f2a38;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

.hero-point p {
  margin: 0;
}

.hero-point::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ff9f66, #a9f0d1);
  margin-top: 0.35rem;
  box-shadow: none;
}

.hero-point-title {
  font-weight: 700;
  color: #0f1c2d;
  margin: 0;
}

.badge {
  display: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0f4c75;
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid rgba(13, 27, 42, 0.12);
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta.secondary {
  background: #ffffff;
  color: #0f4c75;
  border: 1px solid rgba(13, 27, 42, 0.12);
  box-shadow: none;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(13, 27, 42, 0.12);
}

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

.hero-offer {
  margin-top: 1.1rem;
}

.hero-offer-card {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  color: #0f1c2d;
  font-weight: 700;
  background: #f7f9fb;
  box-shadow: none;
  border: 1px solid rgba(13, 27, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(13, 27, 42, 0.14);
  border-color: rgba(13, 27, 42, 0.12);
}

.hero-offer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(15, 76, 117, 0.08);
  border-radius: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero-offer-text {
  display: block;
  margin-top: 0.45rem;
  line-height: 1.5;
  color: #2b3440;
}

.article-page #main-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.article-page .section {
  padding: 2.2rem 0;
}

.article-page .card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.article-page .card h1 {
  margin: 0 0 0.6rem;
}

.article-page .card section {
  padding: 1rem 0;
  border-top: 1px solid rgba(13, 27, 42, 0.06);
}

.article-page .card section:first-of-type {
  padding-top: 0.5rem;
  border-top: none;
}

.article-page h2 {
  margin: 0 0 0.4rem;
}

.article-page h3 {
  margin: 0 0 0.3rem;
}

.article-page p {
  margin: 0 0 0.75rem;
  line-height: 1.65;
}

.article-page ul {
  margin: 0.2rem 0 0.9rem 1.2rem;
}

.article-page li {
  margin-bottom: 0.4rem;
}

.article-page .cta-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
  gap: 1rem;
  align-items: center;
  background: #0f4c75;
  color: #fdfdfd;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 76, 117, 0.24);
  max-width: 960px;
  margin: 0 auto;
}

.article-page .cta-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.article-page .cta-content {
  padding: 1.2rem 1.35rem;
  display: grid;
  gap: 0.55rem;
}

.article-page .cta-content p {
  margin-bottom: 0.6rem;
}

.article-page .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  background: #ff9f66;
  color: #0d1b2a;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(255, 159, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.article-page .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 159, 102, 0.4);
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 76, 117, 0.06), rgba(27, 154, 170, 0.08));
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 12px 26px rgba(13, 27, 42, 0.18);
  max-width: 1080px;
  margin: 0 auto;
}

.article-cta-text {
  flex: 1 1 280px;
}

.article-cta-text p {
  margin: 0 0 0.6rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 600;
}

.article-cta .cta-button {
  display: inline-flex;
  width: auto;
}

.article-cta-media {
  flex: 1 1 320px;
}

.article-cta-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 720px) {
  .article-cta {
    padding: 1.1rem;
    text-align: center;
  }
  .article-cta .cta-button {
    justify-content: center;
  }
  .article-cta-media img {
    height: 200px;
  }
}

@media (max-width: 720px) {
  .article-page .cta-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .article-page .cta-card img {
    height: 180px;
  }
  .article-page .cta-content {
    padding: 1rem 1.1rem 1.2rem;
  }
}

.article-page .concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.article-page .concern-card {
  background: rgba(15, 76, 117, 0.06);
  border: 1px solid rgba(15, 76, 117, 0.12);
  border-radius: 12px;
  padding: 0.9rem;
}

.article-page .concern-icon {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.article-page .article-cta-box {
  background: linear-gradient(120deg, rgba(255, 159, 102, 0.1), rgba(169, 240, 209, 0.12));
  border: 1px solid rgba(255, 159, 102, 0.2);
  border-radius: 12px;
  padding: 1rem;
}

.article-page .article-cta-box h2,
.article-page .article-cta-box h3 {
  margin-bottom: 0.35rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fdfdfd;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.6rem 1.1rem;
  position: relative;
}

.section:not(.hero):not(.contact-section) {
  background: #ffffff;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
}

.section:not(.hero):not(.contact-section)::before {
  display: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  padding: 1.2rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(13, 27, 42, 0.05);
  border: 1px solid rgba(13, 27, 42, 0.08);
  position: relative;
}

.card::after { display: none; }

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--deep-ocean);
  margin-bottom: 0.4rem;
}

.section p {
  color: #1f2a38;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.section ul,
.section ol {
  margin: 0.3rem 0 1.2rem 1.2rem;
  color: var(--text);
  line-height: 1.7;
}

.section li {
  margin-bottom: 0.5rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
}

.marker {
  width: 24px;
  height: 24px;
  background: rgba(255, 159, 102, 0.16);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--deep-ocean);
  font-weight: 700;
}

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

.testimonial {
  background: #f7fbff;
  color: #0f1c2d;
  padding: 1.6rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.06);
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #f4f7fb;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 12px;
  color: #0f1c2d;
}

.highlight span {
  font-size: 1.25rem;
}

.highlight strong {
  display: block;
  margin-top: 0.15rem;
}

.quote {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.contact {
  background: linear-gradient(125deg, #0f4c75, #1b9aaa);
  color: #fdfdfd;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-section {
  position: relative;
  padding: 4.5rem 1.25rem;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px 320px at 12% 18%, rgba(27, 154, 170, 0.12), transparent),
    radial-gradient(520px 340px at 90% 14%, rgba(15, 76, 117, 0.16), transparent),
    linear-gradient(180deg, rgba(244, 237, 225, 0.75), rgba(244, 237, 225, 0.12));
  z-index: 0;
}

.contact-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.contact-card {
  position: relative;
}

.contact-card::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(255, 159, 102, 0.18), rgba(169, 240, 209, 0.2));
  z-index: 0;
  filter: blur(18px);
}

.contact-card .contact {
  position: relative;
  z-index: 1;
}

.contact-list {
  margin-top: 1rem;
}

.form-row {
  margin-top: 1rem;
}

.contact .cta {
  width: 100%;
  justify-content: center;
}

.highlight {
  background: #fff;
  padding: 1rem;
  border-radius: 14px;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--deep-ocean);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.footer {
  text-align: center;
  padding: 2rem 1.25rem 3.5rem;
  color: var(--muted);
}

.fixed-cta {
  position: fixed;
  bottom: 0.85rem;
  right: 0.85rem;
  left: 0.85rem;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.fixed-cta-inner {
  background: var(--card);
  box-shadow: 0 18px 36px rgba(13, 27, 42, 0.2);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  padding: 0.5rem;
  max-width: 520px;
  width: 100%;
  pointer-events: auto;
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.fixed-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #ff9f66;
  color: #0d1b2a;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fixed-cta a.secondary {
  background: #0f4c75;
  color: #fdfdfd;
}

.fixed-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(13, 27, 42, 0.12);
}

.tagline {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
}

.hero.hero-campaign .tagline {
  padding: 0.25rem 0.1rem 0.4rem;
}

.hero.hero-campaign .tagline .pill {
  font-size: 0.92rem;
  padding: 0.5rem 0.5rem;
}

.hero.hero-campaign .tagline::-webkit-scrollbar {
  height: 6px;
}

.hero.hero-campaign .tagline::-webkit-scrollbar-track {
  background: transparent;
}

.hero.hero-campaign .tagline::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.campaign-page .fixed-cta {
  display: none !important;
}

.metric {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.3rem 0;
  border-radius: 0;
  background: transparent;
  color: #fdfdfd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.2rem 0.6rem;
  margin-top: 0.6rem;
  padding: 0.2rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.metrics strong {
  font-size: 1.2rem;
}

.metric span {
  color: rgba(255, 255, 255, 0.85);
}

.top-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-visual img {
  width: 100%;
  height: 60vh;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.top-visual .media-badge {
  top: unset;
  left: 14px;
  right: auto;
}

.media-stack {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  background: #0d1b2a;
}

.media-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.media-card.large { min-height: 320px; }

.media-column {
  display: grid;
  gap: 0.9rem;
  grid-template-rows: repeat(2, 1fr);
}

.media-badge {
  display: none;
}

.banner {
  background: linear-gradient(120deg, rgba(27, 154, 170, 0.1), #fefefe);
  border: 1px solid rgba(27, 154, 170, 0.15);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.icons {
  display: flex;
  gap: 0.35rem;
}

::placeholder {
  color: var(--muted);
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.cta:focus-visible,
.nav-burger:focus-visible,
.nav-menu a:focus-visible,
.fixed-cta a:focus-visible {
  outline: 3px solid #ff9f66;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.35);
  border-radius: 10px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--deep-ocean);
  background: #fff;
}

@media (max-width: 900px) {
  .hero-content {
    padding-top: 1rem;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .top-visual img {
    height: 50vh;
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr auto; }

  .nav-menu {
    position: absolute;
    width: calc(100% - 2.5rem);
    left: 1.25rem;
    right: 1.25rem;
    top: calc(100% + 0.6rem);
    background: rgba(247, 251, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem 1.3rem;
    gap: 0.35rem;
    border-radius: 16px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 18px 30px rgba(13, 27, 42, 0.12);
  }

  .nav-burger { display: inline-flex; }

  .nav-toggle:checked + .nav-burger + .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    padding: 0.6rem 0.85rem;
  }

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

  .cta,
  .cta.secondary {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3rem 1.1rem;
  }
}
