:root {
  --navy: #081f3f;
  --navy-2: #0f2e57;
  --teal: #087f99;
  --teal-2: #0aa6b4;
  --ink: #132033;
  --slate: #5c6b7a;
  --muted: #7a8896;
  --line: #dce6ef;
  --soft: #f5f9fc;
  --soft-2: #edf7fa;
  --white: #fff;
  --gold: #c59a45;
  --shadow: 0 18px 50px rgba(8, 31, 63, 0.12);
  --shadow-sm: 0 8px 24px rgba(8, 31, 63, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Arial,
    sans-serif;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--teal);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 230, 239, 0.82);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.brand img {
  width: 220px;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.nav a:hover {
  color: var(--teal);
}
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
}
.nav-cta:hover {
  background: var(--teal);
  text-decoration: none;
}
.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  color: var(--navy);
  font-weight: 800;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 10px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(10, 166, 180, 0.16),
      transparent 32%
    ),
    linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
  padding: 86px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
  color: var(--navy);
}
.hero p.lead,
.page-hero .lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--slate);
  max-width: 740px;
  margin: 0 0 26px;
}
.hero-actions,
.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1;
}
.button:hover {
  text-decoration: none;
}
.button-primary {
  background: var(--teal);
  color: #fff;
}
.button-primary:hover {
  background: #056e83;
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-dark:hover {
  background: var(--navy-2);
}
.button-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--slate);
  font-weight: 700;
  font-size: 0.9rem;
}
.pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
}
.search-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd6df;
}
.search-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--slate);
  background: var(--soft);
  font-weight: 700;
}
.result {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
  margin: 12px 0;
  background: #fff;
}
.result strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
}
.result span {
  display: block;
  color: var(--slate);
  font-size: 0.92rem;
}
.result.featured {
  border-color: rgba(8, 127, 153, 0.3);
  background: linear-gradient(90deg, #f0fbfd, #fff);
}
.blur-lines {
  position: absolute;
  right: 24px;
  top: 20px;
  width: 150px;
  opacity: 0.4;
}
.blur-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #9db0bf;
  margin: 12px 0;
}
.blur-lines i:nth-child(2) {
  width: 70%;
  margin-left: 20%;
}
.blur-lines i:nth-child(3) {
  width: 45%;
  margin-left: 45%;
}
.section {
  padding: 76px 0;
}
.section-soft {
  background: var(--soft);
}
.section h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: var(--navy);
  margin: 0 0 16px;
}
.section-intro {
  max-width: 760px;
  color: var(--slate);
  font-size: 1.08rem;
  margin: 0 0 34px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.2;
}
.card p {
  margin: 0;
  color: var(--slate);
}
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  color: var(--slate);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.feature-panel {
  background: linear-gradient(135deg, var(--navy), #123d6e);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.feature-panel h3 {
  font-size: 1.7rem;
  margin: 0 0 12px;
}
.feature-panel p {
  color: #d9e6ee;
}
.feature-panel .metric {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.metric div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
}
.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.page-hero {
  background: linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
  padding: 62px 0 54px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--slate);
  font-weight: 700;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}
th,
td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
th {
  background: #f5f9fc;
  color: var(--navy);
}
td {
  color: var(--slate);
}
tr:last-child td {
  border-bottom: 0;
}
.price-card {
  position: relative;
}
.price {
  font-size: 2.8rem;
  letter-spacing: -0.05em;
  color: var(--navy);
  font-weight: 900;
  margin: 12px 0 4px;
}
.price small {
  font-size: 1rem;
  color: var(--slate);
  font-weight: 700;
}
.tag {
  display: inline-block;
  background: var(--soft-2);
  color: var(--teal);
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
}
.quote {
  border-left: 5px solid var(--teal);
  padding: 20px 24px;
  background: #fff;
  border-radius: 0 18px 18px 0;
  box-shadow: var(--shadow-sm);
  color: var(--slate);
  font-size: 1.1rem;
}
.demo-avatar {
  aspect-ratio: 1/1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 38%, #f7c9a7 0 19%, transparent 20%),
    linear-gradient(135deg, #e9f8fb, #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: end center;
  overflow: hidden;
  position: relative;
}
.demo-avatar::before {
  content: '';
  position: absolute;
  top: 20%;
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: #f2b991;
}
.demo-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 58%;
  height: 42%;
  border-radius: 55% 55% 0 0;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.social-mock {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.social-mock .bar {
  height: 42px;
  background: #f5f9fc;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}
.social-mock .body {
  padding: 18px;
}
.mini-image {
  height: 190px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dff4f7, #f8fbff);
  position: relative;
  overflow: hidden;
}
.mini-image::before {
  content: '';
  position: absolute;
  left: 38%;
  top: 22%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f2b991;
}
.mini-image::after {
  content: '';
  position: absolute;
  left: 28%;
  bottom: 0;
  width: 150px;
  height: 120px;
  border-radius: 60% 60% 0 0;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  margin: 12px 0;
  box-shadow: var(--shadow-sm);
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
  padding: 18px 20px;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details p,
details ul {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--slate);
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-weight: 800;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.fine {
  color: var(--muted);
  font-size: 0.92rem;
}
.article {
  max-width: 820px;
  margin: auto;
}
.article h2 {
  font-size: 2rem;
  margin-top: 46px;
}
.article p,
.article li {
  color: var(--slate);
  font-size: 1.06rem;
}
.article ul {
  padding-left: 1.4rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-card .meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.site-footer {
  background: var(--navy);
  color: #d8e4ed;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
}
.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin: 0 0 14px;
}
.site-footer p {
  color: #c2d1dc;
}
.site-footer a {
  display: block;
  color: #d8e4ed;
  margin: 8px 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: #fff;
}
.footer-brand svg {
  width: 42px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #a9bdcb;
  font-size: 0.92rem;
}
.notice {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  margin-top: 18px;
}
.notice strong {
  color: #fff;
}
.alert {
  background: #fff8e8;
  border: 1px solid #f2dba9;
  border-radius: 16px;
  padding: 16px;
  color: #5d4a22;
}
.kbd {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  background: #eef3f7;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2px 6px;
  color: var(--navy);
}
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 58px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand img {
    width: 190px;
  }
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .nav-wrap {
    height: 70px;
  }
  .brand img {
    width: 168px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }
  .section {
    padding: 54px 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature-panel .metric {
    grid-template-columns: 1fr;
  }
  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }
  .nav {
    top: 70px;
  }
  .table-wrap table {
    min-width: 560px;
  }
}

/* EC-BTN-104 + EC-NAV-121: Re-assert hero / CTA text-white on buttons & links.
   Uses class~= (word match) not class*= (substring) to avoid matching hover:text-white etc. */
button[class~='text-white/90'],
a[class~='text-white/90'] {
  color: rgba(255, 255, 255, 0.9);
}
button[class~='text-white/80'],
a[class~='text-white/80'] {
  color: rgba(255, 255, 255, 0.8);
}
button[class~='text-white/70'],
a[class~='text-white/70'] {
  color: rgba(255, 255, 255, 0.7);
}
button[class~='text-white/60'],
a[class~='text-white/60'] {
  color: rgba(255, 255, 255, 0.6);
}
button[class~='text-white/50'],
a[class~='text-white/50'] {
  color: rgba(255, 255, 255, 0.5);
}
button[class~='text-white/40'],
a[class~='text-white/40'] {
  color: rgba(255, 255, 255, 0.4);
}
button[class~='text-white'],
a[class~='text-white'] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* EC-ANIM-008b / EC-ANIM-009: carousel-only override — scroll-reveal elements animate via IO in functions.php */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-up:has([data-wpconvert-blog-filter-bar]),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}
