/*
Theme Name: IYE Fraud Shield
Theme URI: https://www.iyeglobal.com/
Author: IYE Global
Description: Responsive WordPress theme for IYE Fraud Shield.
Version: 1.0.0
Text Domain: iye-fraud-shield
*/


/* ==== Extracted from index.html ==== */
:root {
      --bg: #ffffff;
      --ink: #07111f;
      --muted: #5d6675;
      --soft: #f5f7fa;
      --line: #dfe5ec;
      --blue: #62bfca;
      --blue-dark: #071f7a;
      --navy: #07111f;
      --radius: 22px;
      --max: 1180px;
      --heading-font: "Archivo", Inter, Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.45;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 30;
      background: #ffffff;
      backdrop-filter: none;
      border-bottom: 1px solid rgba(7,17,31,0.08);
    }

    .header-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-size: 1.02rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffffff 0%, #dbe7ff 18%, #62bfca 42%, #06184a 100%);
      box-shadow: 0 10px 30px rgba(98,191,202,0.22);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #354052;
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-cta {
      padding: 10px 16px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 14px 32px rgba(7,31,122,0.24);
    }

    .hero {
      min-height: 86vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #07111f;
      padding: 130px 0 76px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,8,18,0.76) 0%, rgba(3,8,18,0.58) 48%, rgba(3,8,18,0.44) 100%),
        radial-gradient(circle at 50% 44%, rgba(98,191,202,0.28), transparent 38%);
      z-index: 1;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-inner {
      width: min(920px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hero-content {
      max-width: 880px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 7px 11px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      color: rgba(255,255,255,0.78);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    h1 {
      max-width: 860px;
      margin: 0 auto;
      font-size: clamp(3.05rem, 7vw, 6.8rem);
      line-height: 0.9;
      letter-spacing: -0.085em;
      font-weight: 900;
    }

    .hero-subheadline {
      margin: 24px auto 0;
      color: rgba(255,255,255,0.82);
      font-size: clamp(1.05rem, 1.8vw, 1.38rem);
      line-height: 1.38;
      max-width: 560px;
      letter-spacing: -0.025em;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .primary-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 19px 0 21px;
      border-radius: 999px;
      color: #07111f;
      background: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 18px 42px rgba(0,0,0,0.24);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.32);
      background: #f7faff;
    }

    .btn-arrow {
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: var(--blue);
      font-size: 0.96rem;
      line-height: 1;
    }

    .secondary-note {
      display: block;
      margin-top: 16px;
      color: rgba(255,255,255,0.68);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .hero-card {
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 90px rgba(0,0,0,0.18);
    }

    .hero-card p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .hero-card strong {
      display: block;
      margin-bottom: 10px;
      color: #fff;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
    }

    section {
      padding: 82px 0;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 16px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 999px;
      background: #f4f7ff;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(98,191,202,0.1);
      flex: 0 0 auto;
    }

    .section-title {
      max-width: 860px;
      margin: 0;
      font-size: clamp(2.15rem, 4.3vw, 4.45rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 930;
    }

    .section-intro {
      max-width: 630px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.58;
      letter-spacing: -0.015em;
    }

    .risk-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .risk-card {
      min-height: 300px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .risk-card:hover,
    .metric-card:hover,
    .metric-panel:hover,
    .service-note:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .solution-label {
      color: #000000 !important;
      font-weight: 800;
    }

    .risk-card small {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .risk-card h3 {
      margin: 18px 0 0;
      font-size: 1.55rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
      font-weight: 750;
    }

    .risk-card p {
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .intelligence-section {
      background: var(--soft);
    }

    .metric-wrap {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .metric-panel {
      padding: 34px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .metric-panel::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(98,191,202,0.65), transparent 62%);
    }

    .metric-panel h3 {
      position: relative;
      z-index: 2;
      margin: 0;
      max-width: 420px;
      font-size: clamp(2rem, 3vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .metric-panel p {
      position: relative;
      z-index: 2;
      max-width: 390px;
      margin: 28px 0 0;
      color: rgba(255,255,255,0.68);
      font-size: 0.95rem;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .metric-card {
      padding: 24px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 188px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .metric-card span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 650;
      line-height: 1.35;
    }

    .metric-card small {
      display: block;
      margin-top: 12px;
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .metric-card strong {
      display: block;
      margin-top: 24px;
      font-size: clamp(1.8rem, 3vw, 3.05rem);
      color: #5d6675;
      letter-spacing: -0.07em;
      line-height: 0.95;
    }

    .protected-section {
      padding-bottom: 96px;
    }

    .sector-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .sector-card {
      padding: 22px;
      min-height: 144px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .sector-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 20px 52px rgba(7,17,31,0.07);
    }

    .sector-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 20px;
      border-radius: 12px;
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      display: grid;
      place-items: center;
      color: var(--blue);
      font-weight: 800;
    }

    .sector-card h3 {
      margin: 0;
      font-size: 1.02rem;
      letter-spacing: -0.03em;
    }

    .sector-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }



    .accent {
      color: var(--blue);
    }

    .hero .accent {
      color: #dbe7ff;
      text-shadow: 0 0 34px rgba(98,191,202,0.35);
    }

    .solution-section,
    .methodology-section {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
      gap: 42px;
      align-items: end;
    }

    .fix-grid,
    .tier-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fix-card,
    .tier-card {
      position: relative;
      min-height: 286px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      overflow: hidden;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .fix-card:hover,
    .tier-card:hover,
    .ecosystem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .fix-number {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 800;
    }

    .fix-card small,
    .tier-tag {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .fix-card h3,
    .tier-card h3 {
      margin: 68px 0 14px;
      font-size: 1.52rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .fix-card p,
    .tier-card p,
    .ecosystem-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.58;
    }

    .ecosystem-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 28px;
      overflow: hidden;
    }

    .ecosystem-card {
      min-height: 220px;
      padding: 26px;
      background: #ffffff;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .ecosystem-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 15px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-size: 0.76rem;
      font-weight: 800;
    }

    .ecosystem-card h3 {
      margin: 0 0 10px;
      font-size: 1rem;
      line-height: 1.22;
      letter-spacing: -0.025em;
    }

    .service-note {
      margin-top: 28px;
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(220px, 0.32fr);
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      padding: 14px 14px 14px 24px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .service-note p {
      max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .service-note .primary-btn {
      width: 100%;
      justify-content: center;
      padding-left: 26px;
      padding-right: 20px;
    }

    .service-note strong {
      color: var(--ink);
    }

    .tier-card.featured {
      border-color: rgba(98,191,202,0.26);
      background: linear-gradient(180deg, #ffffff, #f7faff);
    }

    .tier-card.exclusive {
      color: #ffffff;
      background: var(--navy);
      border-color: rgba(7,17,31,0.2);
    }

    .tier-card.exclusive p,
    .tier-card.exclusive li,
    .tier-card.exclusive .tier-price span,
    .tier-card.exclusive .tier-credits {
      color: rgba(255,255,255,0.66);
    }

    .tier-card.exclusive .tier-tag {
      color: #dbe7ff;
    }

    .tier-price {
      margin: 18px 0 4px;
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 0.95;
      letter-spacing: -0.07em;
      font-weight: 760;
    }

    .tier-price span {
      color: var(--muted);
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      font-weight: 650;
    }

    .tier-credits {
      margin-bottom: 20px;
      color: #354052;
      font-size: 0.82rem;
      font-weight: 760;
    }

    .tier-card ul {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 10px;
    }

    .tier-card li {
      color: #435164;
      font-size: 0.84rem;
      line-height: 1.4;
    }

    .tier-card li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--blue);
      font-weight: 800;
    }

    .get-protected-section {
      padding: 104px 0;
      color: #ffffff;
      text-align: center;
      background: radial-gradient(circle at 50% 0%, rgba(98,191,202,0.34), transparent 34%), var(--navy);
    }

    .get-protected-section .section-kicker {
      color: #dbe7ff;
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
    }

    .get-protected-section .section-kicker::before {
      background: #dbe7ff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    .get-protected-section h2 {
      max-width: 900px;
      margin: 0 auto;
      font-size: clamp(2.45rem, 5vw, 5.3rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
      font-weight: 760;
    }

    .get-protected-section p {
      max-width: 700px;
      margin: 24px auto 34px;
      color: rgba(255,255,255,0.68);
      font-size: 1rem;
      line-height: 1.7;
    }

    .get-protected-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .closing-section {
      padding: 90px 0;
      background: var(--navy);
      color: #fff;
    }

    .closing-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .closing-section h2 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(2.2rem, 4vw, 4.6rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
    }

    .closing-section p {
      margin: 18px 0 0;
      max-width: 520px;
      color: rgba(255,255,255,0.65);
      font-size: 0.98rem;
    }

    footer {
      padding: 30px 0;
      color: #667085;
      background: #ffffff;
      border-top: 1px solid var(--line);
      font-size: 0.84rem;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }



    /* Chunkier IYE-style heading typography */
    h1,
    .section-title,
    .metric-panel h3,
    .risk-card h3,
    .sector-card h3,
    .fix-card h3,
    .tier-card h3,
    .ecosystem-card h3,
    .get-protected-section h2,
    .tier-price {
      font-family: var(--heading-font);
      font-weight: 900;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    h1 {
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .section-title {
      font-weight: 900;
      line-height: 0.94;
      letter-spacing: -0.058em;
    }

    .metric-panel h3,
    .get-protected-section h2 {
      font-weight: 900;
      letter-spacing: -0.058em;
    }

    .risk-card h3,
    .fix-card h3,
    .tier-card h3 {
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .ecosystem-card h3,
    .sector-card h3 {
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    @media (max-width: 940px) {
      nav {
        display: none;
      }

      .hero-inner,
      .metric-wrap,
      .closing-inner {
        grid-template-columns: 1fr;
      }

      .risk-grid,
      .metric-grid {
        grid-template-columns: 1fr;
      }

      .sector-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-card {
        max-width: 520px;
      }

      .section-head,
      .fix-grid,
      .tier-grid {
        grid-template-columns: 1fr;
      }

      .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-note {
        align-items: flex-start;
        border-radius: 24px;
        flex-direction: column;
      }

    }

    @media (max-width: 560px) {
      .header-inner,
      .container,
      .hero-inner,
      .footer-inner {
        width: min(100% - 28px, var(--max));
      }

      section {
        padding: 64px 0;
      }

      .hero {
        min-height: auto;
        padding: 116px 0 62px;
      }

      h1 {
        font-size: clamp(3rem, 17vw, 4.4rem);
      }

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

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

      .get-protected-section {
        padding: 76px 0;
      }

    }


    /* Refinement overrides */
    .eyebrow {
      margin-left: auto;
      margin-right: auto;
    }

    .sector-card,
    .ecosystem-card,
    .fix-card,
    .tier-card,
    .risk-card,
    .metric-card,
    .metric-panel,
    .service-note {
      will-change: transform;
    }

    .ecosystem-grid {
      overflow: visible;
      gap: 14px;
      background: transparent;
      border: 0;
    }

    .ecosystem-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
    }

    @media (max-width: 940px) {
      .service-note {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 22px;
      }
    }
  

    /* Version 4 refinements */
    .header-inner { height: 64px; }
    .brand-mark { width: 30px; height: 30px; }
    .hero { min-height: 78vh; padding: 112px 0 66px; }
    .hero-actions { margin-top: 32px; }
    .primary-btn { background: var(--blue-dark); color: #ffffff; border-color: var(--blue-dark); }
    .primary-btn:hover { background: #06184a; color: #ffffff; }
    .hero .primary-btn { background: #ffffff; color: var(--ink); border-color: rgba(255,255,255,0.72); }
    .hero .primary-btn:hover { background: #f7faff; color: var(--ink); }
    .hero .accent { color: var(--blue); text-shadow: 0 0 34px rgba(98,191,202,0.45); }
    .risk-grid.clean-start { margin-top: 0; }
    .risk-card small.is-hidden { display:none; }
    .metric-wrap.v4-metrics { grid-template-columns: 1fr; }
    .metric-grid.metric-grid-four { grid-template-columns: repeat(4, 1fr); }
    .fine-banner {
      margin-top: 18px;
      padding: 28px 30px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      box-shadow: 0 22px 58px rgba(7,17,31,0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }
    .fine-banner:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(7,17,31,0.18); }
    .fine-banner strong { font-family: var(--heading-font); font-size: clamp(1.5rem, 3vw, 2.75rem); line-height: 1.1; letter-spacing: -0.055em; }
    .fine-banner > span { color: rgba(255,255,255,0.7); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
    .fine-banner strong .accent { font: inherit; font-size: inherit; line-height: inherit; letter-spacing: inherit; font-weight: inherit; text-transform: none; }
    .solution-modern { background: #ffffff; position: relative; overflow: hidden; }
    .solution-modern::before { content:""; position:absolute; right:-160px; top:60px; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(98,191,202,0.12), transparent 62%); pointer-events:none; }
    .solution-centre { text-align: center; max-width: 920px; margin: 0 auto 46px; position:relative; z-index:1; }
    .solution-centre .section-title { margin: 0 auto; }
    .solution-subheading { max-width: 760px; margin: 20px auto 0; color: var(--muted); font-size: 1.12rem; line-height: 1.6; letter-spacing: -0.02em; }
    .solution-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position:relative; z-index:1; }
    .solution-copy-card, .first-step-copy, .form-section-block, .report-card, .quote-block {
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }
    .solution-copy-card:hover, .first-step-copy:hover, .form-section-block:hover, .report-card:hover, .quote-block:hover { transform: translateY(-4px); border-color: rgba(98,191,202,0.35); box-shadow: 0 24px 64px rgba(7,17,31,0.08); }
    .solution-copy-card { min-height: 360px; padding: 34px; display:flex; flex-direction:column; justify-content:space-between; }
    .solution-copy-card p { margin:0 0 18px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
    .solution-copy-card .statement { margin: 18px 0 0; color: var(--ink); font-family: var(--heading-font); font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.03; letter-spacing: -0.045em; font-weight: 900; }
    .first-step-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .first-step-grid { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: stretch; }
    .first-step-image { min-height: 470px; border-radius: 30px; background: linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.34)), url('iye-fraud-shield-header.jpg') center center / cover no-repeat; box-shadow: 0 24px 64px rgba(7,17,31,0.1); position: relative; overflow: hidden; }
    .first-step-image::after { content:"IYE Fraud Shield"; position:absolute; left:28px; bottom:28px; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,0.88); color:var(--ink); font-size:0.78rem; font-weight:850; letter-spacing:0.08em; text-transform:uppercase; }
    .first-step-copy { padding: 38px; display:flex; flex-direction:column; justify-content:center; }
    .first-step-copy h2 { margin:0; font-family:var(--heading-font); font-size:clamp(2.2rem, 4vw, 4.4rem); line-height:0.96; letter-spacing:-0.058em; font-weight:900; }
    .first-step-copy p { margin: 24px 0 0; color: var(--muted); font-size:1rem; line-height:1.72; }
    .first-step-actions {
      margin-top: 30px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }

    .first-step-actions .primary-btn {
      justify-content: center;
      min-width: 170px;
      background: var(--blue-dark);
      color: #ffffff;
      border-color: var(--blue-dark);
      box-shadow: 0 14px 30px rgba(7,31,122,0.18);
    }

    .first-step-actions .primary-btn:hover {
      background: #06184a;
      color: #ffffff;
      box-shadow: 0 18px 40px rgba(7,31,122,0.24);
    }

    .business-form-section { background:#ffffff; }
    .business-form { margin-top: 34px; display: grid; gap: 18px; }
    .form-section-block { padding: 26px; }
    .form-section-block h3 { margin:0 0 20px; font-family: var(--heading-font); font-size: 1.35rem; letter-spacing: -0.035em; }
    .form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .form-field { display:grid; gap: 8px; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label { color:#354052; font-size:0.82rem; font-weight:750; }
    .form-field input, .form-field textarea, .form-field select {
      width:100%; border:1px solid var(--line); border-radius:14px; padding:13px 14px; font: inherit; font-size:0.92rem; color:var(--ink); background:#fbfdff; outline:none; transition:border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }
    .form-field textarea { min-height: 116px; resize: vertical; }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(98,191,202,0.48); box-shadow: 0 0 0 4px rgba(98,191,202,0.08); background:#fff; }
    .consent-box { display:flex; gap:12px; align-items:flex-start; padding:20px; border:1px solid var(--line); border-radius:18px; background:#f7faff; color:var(--muted); font-size:0.88rem; line-height:1.55; }
    .consent-box input { margin-top: 4px; accent-color: var(--blue-dark); }
    .form-actions { display:flex; justify-content:flex-end; gap:14px; flex-wrap:wrap; }
    .reports-section { background: var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
    .reports-grid { margin-top: 38px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .report-card { padding: 30px; min-height: 250px; display:flex; flex-direction:column; justify-content:space-between; }
    .report-card h3 { margin:0 0 8px; font-family:var(--heading-font); font-size:2rem; line-height:1; letter-spacing:-0.05em; }
    .report-card p { margin:0; color:var(--muted); font-weight:750; }
    .download-btn { display:inline-flex; justify-content:center; align-items:center; gap:10px; width:100%; min-height:48px; padding:0 18px; border-radius:999px; background:var(--blue-dark); color:#fff; font-size:0.86rem; font-weight:800; box-shadow:0 12px 28px rgba(7,31,122,0.16); transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
    .download-btn:hover { transform: translateY(-2px); background:#06184a; box-shadow:0 16px 36px rgba(7,31,122,0.22); }
    .quote-block { margin: 26px auto 0; padding: 30px; text-align:center; font-family:var(--heading-font); font-size:clamp(1.5rem, 3vw, 2.65rem); line-height:1.05; letter-spacing:-0.05em; font-weight:900; color:var(--ink); }
    .report-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:26px; }
    .report-actions .primary-btn { min-width: 180px; justify-content:center; }
    .ecosystem-section-v4 { background:#ffffff; }
    .get-protected-section .primary-btn { background:#ffffff; color:var(--ink); border-color:#ffffff; }
    .get-protected-section .primary-btn:hover { background:#f7faff; color:var(--ink); }
    .solution-copy-card, .form-section-block, .report-card, .quote-block, .fine-banner, .first-step-copy { will-change: transform; }
    @media (max-width: 940px) {
      .metric-grid.metric-grid-four, .solution-two-col, .first-step-grid, .reports-grid { grid-template-columns: 1fr; }
      .first-step-image { min-height: 340px; }
    }
    @media (max-width: 560px) {
      .header-inner { height: 60px; }
      .hero { padding: 102px 0 58px; }
      .form-grid { grid-template-columns: 1fr; }
      .fine-banner { align-items:flex-start; flex-direction:column; border-radius:24px; padding:24px; }
      .solution-copy-card, .first-step-copy, .form-section-block, .report-card { padding:24px; border-radius:24px; }
    }


    /* Version 4.1 WordPress navigation and footer */
    .site-header {
      background: #ffffff;
    }

    .header-inner {
      height: 68px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #354052;
      font-size: 0.86rem;
      font-weight: 650;
    }

    .desktop-nav a:not(.nav-cta) {
      transition: color 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover {
      color: var(--blue-dark);
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff !important;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      font-weight: 800;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 16px 34px rgba(7,31,122,0.26);
    }

    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(7,17,31,0.12);
      background: #ffffff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      box-shadow: 0 10px 24px rgba(7,17,31,0.06);
    }

    .mobile-menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--ink);
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      z-index: 29;
      padding: 16px 20px 22px;
      background: #ffffff;
      border-bottom: 1px solid rgba(7,17,31,0.08);
      box-shadow: 0 24px 54px rgba(7,17,31,0.09);
    }

    .mobile-menu.open {
      display: grid;
      gap: 6px;
    }

    .mobile-menu a {
      padding: 14px 12px;
      border-radius: 14px;
      color: #354052;
      font-weight: 760;
    }

    .mobile-menu a:hover {
      background: var(--soft);
      color: var(--ink);
    }

    .mobile-menu .nav-cta {
      margin-top: 8px;
      text-align: center;
      justify-content: center;
      display: inline-flex;
    }

    .footer-v3{
      background:#07111f;
      color:#fff;
      padding:58px 0 28px;
    }

    .footer-v3 .footgrid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr 1fr;
      gap:64px;
      padding-bottom:58px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }

    .footer-v3 .footer-brand{
      font-family: var(--heading-font);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
      margin-bottom:16px;
    }

    .footer-v3 .footer-brand span{
      color:#78d7df;
      font-size:.75em;
    }

    .footer-v3 p,
    .footer-v3 a{
      color:rgba(255,255,255,.56);
      font-size:13px;
      line-height:1.85;
    }

    .footer-v3 h4{
      font-size:11px;
      font-weight:800;
      letter-spacing:.24em;
      text-transform:uppercase;
      color:rgba(255,255,255,.34);
      margin:0 0 18px;
    }

    .footer-v3 a{
      display:block;
      margin:11px 0;
      text-decoration:none;
      transition:color .18s ease;
    }

    .footer-v3 a:hover{
      color:#fff;
    }

    .footer-v3 .bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding-top:24px;
      color:rgba(255,255,255,.28);
      font-size:12px;
    }

    .placeholder-hero {
      padding: 158px 0 96px;
      background: radial-gradient(circle at 78% 12%, rgba(98,191,202,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .placeholder-hero .section-title {
      max-width: 760px;
    }

    .placeholder-panel {
      margin-top: 34px;
      max-width: 760px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .placeholder-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    @media(max-width:1050px){
      .footer-v3 .footgrid{grid-template-columns:1fr 1fr;gap:36px;}
    }

    @media (max-width: 940px) {
      nav.desktop-nav {
        display: none !important;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }
    }

    @media(max-width:640px){
      .footer-v3 .footgrid{grid-template-columns:1fr;}
      .footer-v3 .bottom{flex-direction:column;align-items:flex-start;}
      .header-inner { height: 64px; }
      .mobile-menu { top: 64px; }
      .placeholder-hero { padding: 132px 0 76px; }
    }

  

    /* index2 refinements */
    .fraud-loss-copy {
      margin-top: 24px;
      color: var(--ink);
      font-family: var(--heading-font);
      font-size: clamp(1.35rem, 2.4vw, 2.15rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      font-weight: 700;
      max-width: 760px;
    }

    .metric-card span {
      color: var(--ink);
      font-family: var(--heading-font);
      font-size: clamp(1.05rem, 1.6vw, 1.38rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
      font-weight: 900;
    }

    .fine-banner .accent {
      color: #62bfca;
      text-shadow: 0 0 24px rgba(98,191,202,0.35);
    }

    .solution-modern {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }

    .solution-modern::before {
      display: none;
    }

    .solution-split-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: stretch;
    }

    .solution-text-left {
      padding: 38px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .solution-text-left h2 {
      margin: 0;
      font-family: var(--heading-font);
      font-size: clamp(2.2rem, 4vw, 4.4rem);
      line-height: 0.96;
      letter-spacing: -0.058em;
      font-weight: 900;
    }

    .solution-text-left .solution-subheading {
      margin: 22px 0 0;
      max-width: 680px;
      color: var(--ink);
      font-size: 1.08rem;
      line-height: 1.58;
      font-weight: 760;
      letter-spacing: -0.02em;
    }

    .solution-text-left p:not(.solution-subheading) {
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.72;
    }

    .solution-text-left .statement {
      margin: 24px 0 0;
      color: var(--ink);
      font-family: var(--heading-font);
      font-size: clamp(1.5rem, 2.4vw, 2.2rem);
      line-height: 1.03;
      letter-spacing: -0.045em;
      font-weight: 900;
    }

    .solution-image-right::after {
      content: "IYE Fraud Shield";
    }

    @media (max-width: 940px) {
      .solution-split-grid {
        grid-template-columns: 1fr;
      }
      .solution-image-right {
        min-height: 340px;
      }
    }

  
    /* Global navigation and accent refinement */
    .desktop-nav {
      font-size: 0.94rem;
    }

    .desktop-nav a:not(.nav-cta) {
      position: relative;
      padding-bottom: 8px;
    }

    .desktop-nav a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 2px;
      border-radius: 999px;
      background: #62bfca;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover::after,
    .desktop-nav a:not(.nav-cta)[aria-current="page"]::after {
      transform: scaleX(1);
    }

    .desktop-nav a:not(.nav-cta):hover,
    .desktop-nav a:not(.nav-cta)[aria-current="page"] {
      color: var(--ink);
    }

    .nav-started {
      background: #62bfca !important;
      border-color: #62bfca !important;
      color: #ffffff !important;
      box-shadow: 0 10px 24px rgba(98,191,202,0.22) !important;
    }

    .nav-started:hover {
      background: #4eacb6 !important;
      border-color: #4eacb6 !important;
      box-shadow: 0 16px 34px rgba(98,191,202,0.30) !important;
    }

    .mobile-menu .nav-started {
      background: #62bfca !important;
      color: #ffffff !important;
      border-color: #62bfca !important;
    }

    #risk .risk-card h3 {
      color: #888888;
    }


/* ==== Extracted from about.html ==== */
:root {
      --bg: #ffffff;
      --ink: #07111f;
      --muted: #5d6675;
      --soft: #f5f7fa;
      --line: #dfe5ec;
      --blue: #62bfca;
      --blue-dark: #071f7a;
      --navy: #07111f;
      --radius: 22px;
      --max: 1180px;
      --heading-font: "Archivo", Inter, Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.45;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 30;
      background: #ffffff;
      backdrop-filter: none;
      border-bottom: 1px solid rgba(7,17,31,0.08);
    }

    .header-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-size: 1.02rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffffff 0%, #dbe7ff 18%, #62bfca 42%, #06184a 100%);
      box-shadow: 0 10px 30px rgba(98,191,202,0.22);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #354052;
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-cta {
      padding: 10px 16px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 14px 32px rgba(7,31,122,0.24);
    }

    .hero {
      min-height: 86vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #07111f url('iye-fraud-shield-header.jpg') center center / cover no-repeat;
      padding: 130px 0 76px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,8,18,0.76) 0%, rgba(3,8,18,0.58) 48%, rgba(3,8,18,0.44) 100%),
        radial-gradient(circle at 50% 44%, rgba(98,191,202,0.28), transparent 38%);
      z-index: 1;
    }

    .hero-inner {
      width: min(920px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hero-content {
      max-width: 880px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 7px 11px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      color: rgba(255,255,255,0.78);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    h1 {
      max-width: 860px;
      margin: 0 auto;
      font-size: clamp(3.05rem, 7vw, 6.8rem);
      line-height: 0.9;
      letter-spacing: -0.085em;
      font-weight: 900;
    }

    .hero-subheadline {
      margin: 24px auto 0;
      color: rgba(255,255,255,0.82);
      font-size: clamp(1.05rem, 1.8vw, 1.38rem);
      line-height: 1.38;
      max-width: 560px;
      letter-spacing: -0.025em;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .primary-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 19px 0 21px;
      border-radius: 999px;
      color: #07111f;
      background: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 18px 42px rgba(0,0,0,0.24);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.32);
      background: #f7faff;
    }

    .btn-arrow {
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: var(--blue);
      font-size: 0.96rem;
      line-height: 1;
    }

    .secondary-note {
      display: block;
      margin-top: 16px;
      color: rgba(255,255,255,0.68);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .hero-card {
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 90px rgba(0,0,0,0.18);
    }

    .hero-card p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .hero-card strong {
      display: block;
      margin-bottom: 10px;
      color: #fff;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
    }

    section {
      padding: 82px 0;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 16px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 999px;
      background: #f4f7ff;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(98,191,202,0.1);
      flex: 0 0 auto;
    }

    .section-title {
      max-width: 860px;
      margin: 0;
      font-size: clamp(2.15rem, 4.3vw, 4.45rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 930;
    }

    .section-intro {
      max-width: 630px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.58;
      letter-spacing: -0.015em;
    }

    .risk-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .risk-card {
      min-height: 300px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .risk-card:hover,
    .metric-card:hover,
    .metric-panel:hover,
    .service-note:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .solution-label {
      color: var(--blue);
      font-weight: 800;
    }

    .risk-card small {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .risk-card h3 {
      margin: 18px 0 0;
      font-size: 1.55rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
      font-weight: 750;
    }

    .risk-card p {
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .intelligence-section {
      background: var(--soft);
    }

    .metric-wrap {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .metric-panel {
      padding: 34px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .metric-panel::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(98,191,202,0.65), transparent 62%);
    }

    .metric-panel h3 {
      position: relative;
      z-index: 2;
      margin: 0;
      max-width: 420px;
      font-size: clamp(2rem, 3vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .metric-panel p {
      position: relative;
      z-index: 2;
      max-width: 390px;
      margin: 28px 0 0;
      color: rgba(255,255,255,0.68);
      font-size: 0.95rem;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .metric-card {
      padding: 24px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 188px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .metric-card span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 650;
      line-height: 1.35;
    }

    .metric-card small {
      display: block;
      margin-top: 12px;
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .metric-card strong {
      display: block;
      margin-top: 24px;
      font-size: clamp(1.8rem, 3vw, 3.05rem);
      letter-spacing: -0.07em;
      line-height: 0.95;
    }

    .protected-section {
      padding-bottom: 96px;
    }

    .sector-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .sector-card {
      padding: 22px;
      min-height: 144px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .sector-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 20px 52px rgba(7,17,31,0.07);
    }

    .sector-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 20px;
      border-radius: 12px;
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      display: grid;
      place-items: center;
      color: var(--blue);
      font-weight: 800;
    }

    .sector-card h3 {
      margin: 0;
      font-size: 1.02rem;
      letter-spacing: -0.03em;
    }

    .sector-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }



    .accent {
      color: var(--blue);
    }

    .hero .accent {
      color: #dbe7ff;
      text-shadow: 0 0 34px rgba(98,191,202,0.35);
    }

    .solution-section,
    .methodology-section {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
      gap: 42px;
      align-items: end;
    }

    .fix-grid,
    .tier-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fix-card,
    .tier-card {
      position: relative;
      min-height: 286px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      overflow: hidden;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .fix-card:hover,
    .tier-card:hover,
    .ecosystem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .fix-number {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 800;
    }

    .fix-card small,
    .tier-tag {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .fix-card h3,
    .tier-card h3 {
      margin: 68px 0 14px;
      font-size: 1.52rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .fix-card p,
    .tier-card p,
    .ecosystem-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.58;
    }

    .ecosystem-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 28px;
      overflow: hidden;
    }

    .ecosystem-card {
      min-height: 220px;
      padding: 26px;
      background: #ffffff;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .ecosystem-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 15px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-size: 0.76rem;
      font-weight: 800;
    }

    .ecosystem-card h3 {
      margin: 0 0 10px;
      font-size: 1rem;
      line-height: 1.22;
      letter-spacing: -0.025em;
    }

    .service-note {
      margin-top: 28px;
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(220px, 0.32fr);
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      padding: 14px 14px 14px 24px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .service-note p {
      max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .service-note .primary-btn {
      width: 100%;
      justify-content: center;
      padding-left: 26px;
      padding-right: 20px;
    }

    .service-note strong {
      color: var(--ink);
    }

    .tier-card.featured {
      border-color: rgba(98,191,202,0.26);
      background: linear-gradient(180deg, #ffffff, #f7faff);
    }

    .tier-card.exclusive {
      color: #ffffff;
      background: var(--navy);
      border-color: rgba(7,17,31,0.2);
    }

    .tier-card.exclusive p,
    .tier-card.exclusive li,
    .tier-card.exclusive .tier-price span,
    .tier-card.exclusive .tier-credits {
      color: rgba(255,255,255,0.66);
    }

    .tier-card.exclusive .tier-tag {
      color: #dbe7ff;
    }

    .tier-price {
      margin: 18px 0 4px;
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 0.95;
      letter-spacing: -0.07em;
      font-weight: 760;
    }

    .tier-price span {
      color: var(--muted);
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      font-weight: 650;
    }

    .tier-credits {
      margin-bottom: 20px;
      color: #354052;
      font-size: 0.82rem;
      font-weight: 760;
    }

    .tier-card ul {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 10px;
    }

    .tier-card li {
      color: #435164;
      font-size: 0.84rem;
      line-height: 1.4;
    }

    .tier-card li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--blue);
      font-weight: 800;
    }

    .get-protected-section {
      padding: 104px 0;
      color: #ffffff;
      text-align: center;
      background: radial-gradient(circle at 50% 0%, rgba(98,191,202,0.34), transparent 34%), var(--navy);
    }

    .get-protected-section .section-kicker {
      color: #dbe7ff;
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
    }

    .get-protected-section .section-kicker::before {
      background: #dbe7ff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    .get-protected-section h2 {
      max-width: 900px;
      margin: 0 auto;
      font-size: clamp(2.45rem, 5vw, 5.3rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
      font-weight: 760;
    }

    .get-protected-section p {
      max-width: 700px;
      margin: 24px auto 34px;
      color: rgba(255,255,255,0.68);
      font-size: 1rem;
      line-height: 1.7;
    }

    .get-protected-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .closing-section {
      padding: 90px 0;
      background: var(--navy);
      color: #fff;
    }

    .closing-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .closing-section h2 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(2.2rem, 4vw, 4.6rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
    }

    .closing-section p {
      margin: 18px 0 0;
      max-width: 520px;
      color: rgba(255,255,255,0.65);
      font-size: 0.98rem;
    }

    footer {
      padding: 30px 0;
      color: #667085;
      background: #ffffff;
      border-top: 1px solid var(--line);
      font-size: 0.84rem;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }



    /* Chunkier IYE-style heading typography */
    h1,
    .section-title,
    .metric-panel h3,
    .risk-card h3,
    .sector-card h3,
    .fix-card h3,
    .tier-card h3,
    .ecosystem-card h3,
    .get-protected-section h2,
    .tier-price {
      font-family: var(--heading-font);
      font-weight: 900;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    h1 {
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .section-title {
      font-weight: 900;
      line-height: 0.94;
      letter-spacing: -0.058em;
    }

    .metric-panel h3,
    .get-protected-section h2 {
      font-weight: 900;
      letter-spacing: -0.058em;
    }

    .risk-card h3,
    .fix-card h3,
    .tier-card h3 {
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .ecosystem-card h3,
    .sector-card h3 {
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    @media (max-width: 940px) {
      nav {
        display: none;
      }

      .hero-inner,
      .metric-wrap,
      .closing-inner {
        grid-template-columns: 1fr;
      }

      .risk-grid,
      .metric-grid {
        grid-template-columns: 1fr;
      }

      .sector-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-card {
        max-width: 520px;
      }

      .section-head,
      .fix-grid,
      .tier-grid {
        grid-template-columns: 1fr;
      }

      .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-note {
        align-items: flex-start;
        border-radius: 24px;
        flex-direction: column;
      }

    }

    @media (max-width: 560px) {
      .header-inner,
      .container,
      .hero-inner,
      .footer-inner {
        width: min(100% - 28px, var(--max));
      }

      section {
        padding: 64px 0;
      }

      .hero {
        min-height: auto;
        padding: 116px 0 62px;
      }

      h1 {
        font-size: clamp(3rem, 17vw, 4.4rem);
      }

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

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

      .get-protected-section {
        padding: 76px 0;
      }

    }


    /* Refinement overrides */
    .eyebrow {
      margin-left: auto;
      margin-right: auto;
    }

    .sector-card,
    .ecosystem-card,
    .fix-card,
    .tier-card,
    .risk-card,
    .metric-card,
    .metric-panel,
    .service-note {
      will-change: transform;
    }

    .ecosystem-grid {
      overflow: visible;
      gap: 14px;
      background: transparent;
      border: 0;
    }

    .ecosystem-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
    }

    @media (max-width: 940px) {
      .service-note {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 22px;
      }
    }
  

    /* Version 4 refinements */
    .header-inner { height: 64px; }
    .brand-mark { width: 30px; height: 30px; }
    .hero { min-height: 78vh; padding: 112px 0 66px; }
    .hero-actions { margin-top: 32px; }
    .primary-btn { background: var(--blue-dark); color: #ffffff; border-color: var(--blue-dark); }
    .primary-btn:hover { background: #06184a; color: #ffffff; }
    .hero .primary-btn { background: #ffffff; color: var(--ink); border-color: rgba(255,255,255,0.72); }
    .hero .primary-btn:hover { background: #f7faff; color: var(--ink); }
    .hero .accent { color: var(--blue); text-shadow: 0 0 34px rgba(98,191,202,0.45); }
    .risk-grid.clean-start { margin-top: 0; }
    .risk-card small.is-hidden { display:none; }
    .metric-wrap.v4-metrics { grid-template-columns: 1fr; }
    .metric-grid.metric-grid-four { grid-template-columns: repeat(4, 1fr); }
    .fine-banner {
      margin-top: 18px;
      padding: 28px 30px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      box-shadow: 0 22px 58px rgba(7,17,31,0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }
    .fine-banner:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(7,17,31,0.18); }
    .fine-banner strong { font-family: var(--heading-font); font-size: clamp(1.5rem, 3vw, 2.75rem); line-height: 1.1; letter-spacing: -0.055em; }
    .fine-banner span { color: rgba(255,255,255,0.7); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
    .solution-modern { background: #ffffff; position: relative; overflow: hidden; }
    .solution-modern::before { content:""; position:absolute; right:-160px; top:60px; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(98,191,202,0.12), transparent 62%); pointer-events:none; }
    .solution-centre { text-align: center; max-width: 920px; margin: 0 auto 46px; position:relative; z-index:1; }
    .solution-centre .section-title { margin: 0 auto; }
    .solution-subheading { max-width: 760px; margin: 20px auto 0; color: var(--muted); font-size: 1.12rem; line-height: 1.6; letter-spacing: -0.02em; }
    .solution-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position:relative; z-index:1; }
    .solution-copy-card, .first-step-copy, .form-section-block, .report-card, .quote-block {
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }
    .solution-copy-card:hover, .first-step-copy:hover, .form-section-block:hover, .report-card:hover, .quote-block:hover { transform: translateY(-4px); border-color: rgba(98,191,202,0.35); box-shadow: 0 24px 64px rgba(7,17,31,0.08); }
    .solution-copy-card { min-height: 360px; padding: 34px; display:flex; flex-direction:column; justify-content:space-between; }
    .solution-copy-card p { margin:0 0 18px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
    .solution-copy-card .statement { margin: 18px 0 0; color: var(--ink); font-family: var(--heading-font); font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.03; letter-spacing: -0.045em; font-weight: 900; }
    .first-step-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .first-step-grid { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: stretch; }
    .first-step-image { min-height: 470px; border-radius: 30px; background: linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.34)), url('iye-fraud-shield-header.jpg') center center / cover no-repeat; box-shadow: 0 24px 64px rgba(7,17,31,0.1); position: relative; overflow: hidden; }
    .first-step-image::after { content:"Business overview"; position:absolute; left:28px; bottom:28px; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,0.88); color:var(--ink); font-size:0.78rem; font-weight:850; letter-spacing:0.08em; text-transform:uppercase; }
    .first-step-copy { padding: 38px; display:flex; flex-direction:column; justify-content:center; }
    .first-step-copy h2 { margin:0; font-family:var(--heading-font); font-size:clamp(2.2rem, 4vw, 4.4rem); line-height:0.96; letter-spacing:-0.058em; font-weight:900; }
    .first-step-copy p { margin: 24px 0 0; color: var(--muted); font-size:1rem; line-height:1.72; }
    .business-form-section { background:#ffffff; }
    .business-form { margin-top: 34px; display: grid; gap: 18px; }
    .form-section-block { padding: 26px; }
    .form-section-block h3 { margin:0 0 20px; font-family: var(--heading-font); font-size: 1.35rem; letter-spacing: -0.035em; }
    .form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .form-field { display:grid; gap: 8px; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label { color:#354052; font-size:0.82rem; font-weight:750; }
    .form-field input, .form-field textarea, .form-field select {
      width:100%; border:1px solid var(--line); border-radius:14px; padding:13px 14px; font: inherit; font-size:0.92rem; color:var(--ink); background:#fbfdff; outline:none; transition:border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }
    .form-field textarea { min-height: 116px; resize: vertical; }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(98,191,202,0.48); box-shadow: 0 0 0 4px rgba(98,191,202,0.08); background:#fff; }
    .consent-box { display:flex; gap:12px; align-items:flex-start; padding:20px; border:1px solid var(--line); border-radius:18px; background:#f7faff; color:var(--muted); font-size:0.88rem; line-height:1.55; }
    .consent-box input { margin-top: 4px; accent-color: var(--blue-dark); }
    .form-actions { display:flex; justify-content:flex-end; gap:14px; flex-wrap:wrap; }
    .reports-section { background: var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
    .reports-grid { margin-top: 38px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .report-card { padding: 30px; min-height: 250px; display:flex; flex-direction:column; justify-content:space-between; }
    .report-card h3 { margin:0 0 8px; font-family:var(--heading-font); font-size:2rem; line-height:1; letter-spacing:-0.05em; }
    .report-card p { margin:0; color:var(--muted); font-weight:750; }
    .download-btn { display:inline-flex; justify-content:center; align-items:center; gap:10px; width:100%; min-height:48px; padding:0 18px; border-radius:999px; background:var(--blue-dark); color:#fff; font-size:0.86rem; font-weight:800; box-shadow:0 12px 28px rgba(7,31,122,0.16); transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
    .download-btn:hover { transform: translateY(-2px); background:#06184a; box-shadow:0 16px 36px rgba(7,31,122,0.22); }
    .quote-block { margin: 26px auto 0; padding: 30px; text-align:center; font-family:var(--heading-font); font-size:clamp(1.5rem, 3vw, 2.65rem); line-height:1.05; letter-spacing:-0.05em; font-weight:900; color:var(--ink); }
    .report-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:26px; }
    .report-actions .primary-btn { min-width: 180px; justify-content:center; }
    .ecosystem-section-v4 { background:#ffffff; }
    .get-protected-section .primary-btn { background:#ffffff; color:var(--ink); border-color:#ffffff; }
    .get-protected-section .primary-btn:hover { background:#f7faff; color:var(--ink); }
    .solution-copy-card, .form-section-block, .report-card, .quote-block, .fine-banner, .first-step-copy { will-change: transform; }
    @media (max-width: 940px) {
      .metric-grid.metric-grid-four, .solution-two-col, .first-step-grid, .reports-grid { grid-template-columns: 1fr; }
      .first-step-image { min-height: 340px; }
    }
    @media (max-width: 560px) {
      .header-inner { height: 60px; }
      .hero { padding: 102px 0 58px; }
      .form-grid { grid-template-columns: 1fr; }
      .fine-banner { align-items:flex-start; flex-direction:column; border-radius:24px; padding:24px; }
      .solution-copy-card, .first-step-copy, .form-section-block, .report-card { padding:24px; border-radius:24px; }
    }


    /* Version 4.1 WordPress navigation and footer */
    .site-header {
      background: #ffffff;
    }

    .header-inner {
      height: 68px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #354052;
      font-size: 0.86rem;
      font-weight: 650;
    }

    .desktop-nav a:not(.nav-cta) {
      transition: color 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover {
      color: var(--blue-dark);
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff !important;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      font-weight: 800;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 16px 34px rgba(7,31,122,0.26);
    }

    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(7,17,31,0.12);
      background: #ffffff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      box-shadow: 0 10px 24px rgba(7,17,31,0.06);
    }

    .mobile-menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--ink);
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      z-index: 29;
      padding: 16px 20px 22px;
      background: #ffffff;
      border-bottom: 1px solid rgba(7,17,31,0.08);
      box-shadow: 0 24px 54px rgba(7,17,31,0.09);
    }

    .mobile-menu.open {
      display: grid;
      gap: 6px;
    }

    .mobile-menu a {
      padding: 14px 12px;
      border-radius: 14px;
      color: #354052;
      font-weight: 760;
    }

    .mobile-menu a:hover {
      background: var(--soft);
      color: var(--ink);
    }

    .mobile-menu .nav-cta {
      margin-top: 8px;
      text-align: center;
      justify-content: center;
      display: inline-flex;
    }

    .footer-v3{
      background:#07111f;
      color:#fff;
      padding:58px 0 28px;
    }

    .footer-v3 .footgrid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr 1fr;
      gap:64px;
      padding-bottom:58px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }

    .footer-v3 .footer-brand{
      font-family: var(--heading-font);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
      margin-bottom:16px;
    }

    .footer-v3 .footer-brand span{
      color:#78d7df;
      font-size:.75em;
    }

    .footer-v3 p,
    .footer-v3 a{
      color:rgba(255,255,255,.56);
      font-size:13px;
      line-height:1.85;
    }

    .footer-v3 h4{
      font-size:11px;
      font-weight:800;
      letter-spacing:.24em;
      text-transform:uppercase;
      color:rgba(255,255,255,.34);
      margin:0 0 18px;
    }

    .footer-v3 a{
      display:block;
      margin:11px 0;
      text-decoration:none;
      transition:color .18s ease;
    }

    .footer-v3 a:hover{
      color:#fff;
    }

    .footer-v3 .bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding-top:24px;
      color:rgba(255,255,255,.28);
      font-size:12px;
    }

    .placeholder-hero {
      padding: 158px 0 96px;
      background: radial-gradient(circle at 78% 12%, rgba(98,191,202,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .placeholder-hero .section-title {
      max-width: 760px;
    }

    .placeholder-panel {
      margin-top: 34px;
      max-width: 760px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .placeholder-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }


    /* About page content layout */
    .about-hero {
      padding: 150px 0 82px;
      background: radial-gradient(circle at 82% 16%, rgba(98,191,202,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .about-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
      gap: 48px;
      align-items: end;
    }

    .about-hero .section-title {
      max-width: 820px;
    }

    .about-lead-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .about-lead-card:hover,
    .about-story-card:hover,
    .about-highlight-card:hover,
    .about-method-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .about-lead-card strong {
      display: block;
      margin-bottom: 12px;
      font-family: var(--heading-font);
      font-size: 1.28rem;
      line-height: 1.04;
      letter-spacing: -0.045em;
    }

    .about-lead-card p,
    .about-story-card p,
    .about-highlight-card p,
    .about-method-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.65;
    }

    .about-story-section {
      padding: 88px 0;
      background: #ffffff;
    }

    .about-story-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .about-story-card,
    .about-highlight-card,
    .about-method-card {
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
      overflow: hidden;
    }

    .about-story-card {
      grid-column: span 6;
      padding: 30px;
      min-height: 286px;
    }

    .about-story-card.wide {
      grid-column: span 12;
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.48fr);
      gap: 30px;
      align-items: center;
      background: linear-gradient(135deg, #ffffff, #f7faff);
    }

    .about-card-number {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin-bottom: 34px;
      border-radius: 16px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 900;
      font-family: var(--heading-font);
    }

    .about-story-card h2,
    .about-highlight-card h2,
    .about-method-card h2 {
      margin: 0 0 16px;
      font-family: var(--heading-font);
      font-size: clamp(1.75rem, 2.8vw, 2.85rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
      font-weight: 900;
    }

    .about-dark-panel {
      padding: 30px;
      border-radius: 24px;
      color: #ffffff;
      background: radial-gradient(circle at 82% 16%, rgba(98,191,202,0.42), transparent 38%), var(--navy);
    }

    .about-dark-panel strong {
      display: block;
      font-family: var(--heading-font);
      font-size: clamp(2.1rem, 4vw, 4.2rem);
      line-height: 0.9;
      letter-spacing: -0.08em;
    }

    .about-dark-panel span {
      display: block;
      margin-top: 14px;
      color: rgba(255,255,255,0.68);
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .about-highlight-section {
      padding: 88px 0;
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .about-highlight-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
      gap: 18px;
      align-items: stretch;
      margin-top: 40px;
    }

    .about-highlight-card {
      padding: 32px;
    }

    .about-highlight-list {
      display: grid;
      gap: 14px;
    }

    .about-method-card {
      padding: 24px;
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 18px;
      align-items: start;
      background: #ffffff;
    }

    .about-method-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 900;
      font-family: var(--heading-font);
    }

    .about-method-card h3 {
      margin: 0 0 8px;
      font-family: var(--heading-font);
      font-size: 1.2rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .about-method-card p {
      font-size: 0.9rem;
    }

    .about-method-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    @media(max-width:940px){
      .about-hero-grid,
      .about-story-card.wide,
      .about-highlight-grid,
      .about-method-grid { grid-template-columns: 1fr; }
      .about-story-card,
      .about-story-card.wide { grid-column: span 12; }
      .about-hero { padding: 132px 0 72px; }
    }

    @media(max-width:560px){
      .about-hero { padding: 120px 0 62px; }
      .about-story-section,
      .about-highlight-section { padding: 64px 0; }
      .about-story-card,
      .about-highlight-card { padding: 24px; }
      .about-method-card { grid-template-columns: 1fr; }
    }


    @media(max-width:1050px){
      .footer-v3 .footgrid{grid-template-columns:1fr 1fr;gap:36px;}
    }

    @media (max-width: 940px) {
      nav.desktop-nav {
        display: none !important;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }
    }

    @media(max-width:640px){
      .footer-v3 .footgrid{grid-template-columns:1fr;}
      .footer-v3 .bottom{flex-direction:column;align-items:flex-start;}
      .header-inner { height: 64px; }
      .mobile-menu { top: 64px; }
      .placeholder-hero { padding: 132px 0 76px; }
    }

  

    /* About page exact-copy layout */
    .about-exact-hero {
      padding: 150px 0 76px;
      background:
        radial-gradient(circle at 82% 18%, rgba(98,191,202,0.11), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
      border-bottom: 1px solid var(--line);
    }

    .about-exact-title {
      max-width: 1040px;
      margin: 0;
      font-family: 'Archivo Black', Archivo, Inter, Arial, Helvetica, sans-serif;
      font-size: clamp(3rem, 6vw, 6.5rem);
      line-height: 0.9;
      letter-spacing: -0.08em;
      font-weight: 900;
      color: var(--ink);
    }

    .about-exact-section {
      padding: 86px 0;
    }

    .about-exact-section.soft-panel-section {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .about-exact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 38px;
    }

    .about-exact-grid.top-grid {
      align-items: stretch;
      margin-top: 46px;
    }

    .about-exact-grid.closing-grid {
      margin-top: 30px;
    }

    .about-exact-card {
      position: relative;
      padding: 32px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.04);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
      overflow: hidden;
    }

    .about-exact-card::after {
      content: "";
      position: absolute;
      right: -54px;
      top: -54px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(98,191,202,0.08), transparent 64%);
      pointer-events: none;
    }

    .about-exact-card:hover {
      transform: translateY(-5px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 24px 64px rgba(7,17,31,0.08);
    }

    .about-exact-card p {
      position: relative;
      z-index: 2;
      margin: 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.22vw, 1.12rem);
      line-height: 1.75;
      letter-spacing: -0.018em;
    }

    .about-exact-card.large-card p {
      font-size: clamp(1.08rem, 1.45vw, 1.32rem);
      line-height: 1.62;
      color: #354052;
    }

    .about-exact-card.wide-card {
      grid-column: span 1;
      min-height: 330px;
      display: flex;
      align-items: flex-end;
    }

    .about-exact-card.dark-card {
      color: #ffffff;
      background: var(--navy);
      border-color: rgba(7,17,31,0.2);
      min-height: 330px;
      display: flex;
      align-items: flex-end;
    }

    .about-exact-card.dark-card::after {
      background: radial-gradient(circle, rgba(98,191,202,0.42), transparent 64%);
    }

    .about-exact-card.dark-card p {
      color: rgba(255,255,255,0.76);
    }

    .about-exact-quote {
      max-width: 980px;
      margin: 0;
      padding: 0 0 0 28px;
      border-left: 5px solid var(--blue);
      font-family: 'Archivo Black', Archivo, Inter, Arial, Helvetica, sans-serif;
      font-size: clamp(2.3rem, 4.4vw, 5rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 900;
      color: var(--ink);
    }

    .about-exact-intro-line {
      max-width: 900px;
      font-family: 'Archivo Black', Archivo, Inter, Arial, Helvetica, sans-serif;
      font-size: clamp(2.2rem, 4.2vw, 4.6rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 900;
      color: var(--ink);
    }



    .about-exact-card.wide-copy-card {
      max-width: 980px;
      margin: 0 auto;
      min-height: 240px;
      display: flex;
      align-items: center;
    }

    .about-exact-card.wide-copy-card p {
      font-size: clamp(1.06rem, 1.36vw, 1.24rem);
      line-height: 1.68;
      color: #354052;
    }

    @media (max-width: 940px) {
      .about-exact-grid {
        grid-template-columns: 1fr;
      }

      .about-exact-card.wide-card,
      .about-exact-card.dark-card {
        min-height: auto;
      }
    }

    @media (max-width: 560px) {
      .about-exact-hero {
        padding: 118px 0 60px;
      }

      .about-exact-card {
        padding: 24px;
        border-radius: 24px;
      }

      .about-exact-quote {
        padding-left: 18px;
      }
    }


    /* About clean professional layout - v4.2 */
    .about-clean-hero {
      padding: 136px 0 78px;
      background:
        radial-gradient(circle at 84% 18%, rgba(98,191,202,0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
      border-bottom: 1px solid var(--line);
    }

    .about-clean-wrap {
      max-width: 940px;
      margin: 0 auto;
    }

    .about-clean-title {
      max-width: 860px;
      margin: 0;
      font-family: var(--heading-font);
      font-size: clamp(2.65rem, 5vw, 5.35rem);
      line-height: 0.94;
      letter-spacing: -0.072em;
      font-weight: 900;
      color: var(--ink);
    }

    .about-clean-subtitle {
      max-width: 760px;
      margin: 28px 0 0;
      color: #263243;
      font-size: clamp(1.24rem, 2vw, 1.72rem);
      line-height: 1.32;
      letter-spacing: -0.035em;
      font-weight: 720;
    }

    .about-clean-copy {
      max-width: 760px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.72;
      letter-spacing: -0.012em;
    }

    .about-clean-section {
      padding: 74px 0;
      background: #ffffff;
    }

    .about-clean-section.soft {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .about-clean-row {
      max-width: 940px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(160px, 0.26fr) minmax(0, 0.74fr);
      gap: 48px;
      align-items: start;
    }

    .about-clean-marker {
      height: 2px;
      width: 100%;
      max-width: 150px;
      margin-top: 17px;
      background: linear-gradient(90deg, var(--blue), rgba(98,191,202,0.08));
    }

    .about-clean-text {
      display: grid;
      gap: 24px;
    }

    .about-clean-text p {
      margin: 0;
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.76;
      letter-spacing: -0.012em;
    }

    .about-clean-text .lead-line {
      color: var(--ink);
      font-size: clamp(1.22rem, 1.8vw, 1.58rem);
      line-height: 1.34;
      letter-spacing: -0.04em;
      font-weight: 760;
    }

    .about-clean-h2 {
      max-width: 760px;
      margin: 0;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3.8vw, 3.85rem);
      line-height: 0.98;
      letter-spacing: -0.066em;
      font-weight: 900;
      color: var(--ink);
    }

    .about-clean-final {
      max-width: 940px;
      margin: 0 auto;
      padding-top: 10px;
      border-top: 1px solid var(--line);
    }

    .about-clean-final p {
      max-width: 820px;
      margin: 0;
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.76;
      letter-spacing: -0.012em;
    }

    @media (max-width: 820px) {
      .about-clean-row { grid-template-columns: 1fr; gap: 24px; }
      .about-clean-marker { max-width: 84px; margin-top: 0; }
      .about-clean-hero { padding: 120px 0 64px; }
      .about-clean-section { padding: 62px 0; }
    }

    @media (max-width: 560px) {
      .about-clean-title { font-size: clamp(2.55rem, 13vw, 4rem); }
      .about-clean-copy,
      .about-clean-text p,
      .about-clean-final p { font-size: 0.98rem; line-height: 1.7; }
    }

  
    /* Global navigation and accent refinement */
    .desktop-nav {
      font-size: 0.94rem;
    }

    .desktop-nav a:not(.nav-cta) {
      position: relative;
      padding-bottom: 8px;
    }

    .desktop-nav a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 2px;
      border-radius: 999px;
      background: #62bfca;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover::after,
    .desktop-nav a:not(.nav-cta)[aria-current="page"]::after {
      transform: scaleX(1);
    }

    .desktop-nav a:not(.nav-cta):hover,
    .desktop-nav a:not(.nav-cta)[aria-current="page"] {
      color: var(--ink);
    }

    .nav-started {
      background: #62bfca !important;
      border-color: #62bfca !important;
      color: #ffffff !important;
      box-shadow: 0 10px 24px rgba(98,191,202,0.22) !important;
    }

    .nav-started:hover {
      background: #4eacb6 !important;
      border-color: #4eacb6 !important;
      box-shadow: 0 16px 34px rgba(98,191,202,0.30) !important;
    }

    .mobile-menu .nav-started {
      background: #62bfca !important;
      color: #ffffff !important;
      border-color: #62bfca !important;
    }


/* ==== Extracted from faqs.html ==== */
:root {
      --bg: #ffffff;
      --ink: #07111f;
      --muted: #5d6675;
      --soft: #f5f7fa;
      --line: #dfe5ec;
      --blue: #143cff;
      --blue-dark: #071f7a;
      --navy: #07111f;
      --radius: 22px;
      --max: 1180px;
      --heading-font: "Archivo", Inter, Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.45;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 30;
      background: #ffffff;
      backdrop-filter: none;
      border-bottom: 1px solid rgba(7,17,31,0.08);
    }

    .header-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-size: 1.02rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffffff 0%, #dbe7ff 18%, #143cff 42%, #06184a 100%);
      box-shadow: 0 10px 30px rgba(20,60,255,0.22);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #354052;
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-cta {
      padding: 10px 16px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 14px 32px rgba(7,31,122,0.24);
    }

    .hero {
      min-height: 86vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #07111f url('iye-fraud-shield-header.jpg') center center / cover no-repeat;
      padding: 130px 0 76px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,8,18,0.76) 0%, rgba(3,8,18,0.58) 48%, rgba(3,8,18,0.44) 100%),
        radial-gradient(circle at 50% 44%, rgba(20,60,255,0.28), transparent 38%);
      z-index: 1;
    }

    .hero-inner {
      width: min(920px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hero-content {
      max-width: 880px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 7px 11px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      color: rgba(255,255,255,0.78);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    h1 {
      max-width: 860px;
      margin: 0 auto;
      font-size: clamp(3.05rem, 7vw, 6.8rem);
      line-height: 0.9;
      letter-spacing: -0.085em;
      font-weight: 900;
    }

    .hero-subheadline {
      margin: 24px auto 0;
      color: rgba(255,255,255,0.82);
      font-size: clamp(1.05rem, 1.8vw, 1.38rem);
      line-height: 1.38;
      max-width: 560px;
      letter-spacing: -0.025em;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .primary-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 19px 0 21px;
      border-radius: 999px;
      color: #07111f;
      background: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 18px 42px rgba(0,0,0,0.24);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.32);
      background: #f7faff;
    }

    .btn-arrow {
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: var(--blue);
      font-size: 0.96rem;
      line-height: 1;
    }

    .secondary-note {
      display: block;
      margin-top: 16px;
      color: rgba(255,255,255,0.68);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .hero-card {
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 90px rgba(0,0,0,0.18);
    }

    .hero-card p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .hero-card strong {
      display: block;
      margin-bottom: 10px;
      color: #fff;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
    }

    section {
      padding: 82px 0;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 16px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(20,60,255,0.18);
      border-radius: 999px;
      background: #f4f7ff;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(20,60,255,0.1);
      flex: 0 0 auto;
    }

    .section-title {
      max-width: 860px;
      margin: 0;
      font-size: clamp(2.15rem, 4.3vw, 4.45rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 930;
    }

    .section-intro {
      max-width: 630px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.58;
      letter-spacing: -0.015em;
    }

    .risk-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .risk-card {
      min-height: 300px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .risk-card:hover,
    .metric-card:hover,
    .metric-panel:hover,
    .service-note:hover {
      transform: translateY(-4px);
      border-color: rgba(20,60,255,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .solution-label {
      color: var(--blue);
      font-weight: 800;
    }

    .risk-card small {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .risk-card h3 {
      margin: 18px 0 0;
      font-size: 1.55rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
      font-weight: 750;
    }

    .risk-card p {
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .intelligence-section {
      background: var(--soft);
    }

    .metric-wrap {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .metric-panel {
      padding: 34px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .metric-panel::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(20,60,255,0.65), transparent 62%);
    }

    .metric-panel h3 {
      position: relative;
      z-index: 2;
      margin: 0;
      max-width: 420px;
      font-size: clamp(2rem, 3vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .metric-panel p {
      position: relative;
      z-index: 2;
      max-width: 390px;
      margin: 28px 0 0;
      color: rgba(255,255,255,0.68);
      font-size: 0.95rem;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .metric-card {
      padding: 24px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 188px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .metric-card span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 650;
      line-height: 1.35;
    }

    .metric-card small {
      display: block;
      margin-top: 12px;
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .metric-card strong {
      display: block;
      margin-top: 24px;
      font-size: clamp(1.8rem, 3vw, 3.05rem);
      letter-spacing: -0.07em;
      line-height: 0.95;
    }

    .protected-section {
      padding-bottom: 96px;
    }

    .sector-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .sector-card {
      padding: 22px;
      min-height: 144px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .sector-card:hover {
      transform: translateY(-4px);
      border-color: rgba(20,60,255,0.35);
      box-shadow: 0 20px 52px rgba(7,17,31,0.07);
    }

    .sector-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 20px;
      border-radius: 12px;
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      display: grid;
      place-items: center;
      color: var(--blue);
      font-weight: 800;
    }

    .sector-card h3 {
      margin: 0;
      font-size: 1.02rem;
      letter-spacing: -0.03em;
    }

    .sector-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }



    .accent {
      color: var(--blue);
    }

    .hero .accent {
      color: #dbe7ff;
      text-shadow: 0 0 34px rgba(20,60,255,0.35);
    }

    .solution-section,
    .methodology-section {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
      gap: 42px;
      align-items: end;
    }

    .fix-grid,
    .tier-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fix-card,
    .tier-card {
      position: relative;
      min-height: 286px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      overflow: hidden;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .fix-card:hover,
    .tier-card:hover,
    .ecosystem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(20,60,255,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .fix-number {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 800;
    }

    .fix-card small,
    .tier-tag {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .fix-card h3,
    .tier-card h3 {
      margin: 68px 0 14px;
      font-size: 1.52rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .fix-card p,
    .tier-card p,
    .ecosystem-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.58;
    }

    .ecosystem-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 28px;
      overflow: hidden;
    }

    .ecosystem-card {
      min-height: 220px;
      padding: 26px;
      background: #ffffff;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .ecosystem-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 15px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-size: 0.76rem;
      font-weight: 800;
    }

    .ecosystem-card h3 {
      margin: 0 0 10px;
      font-size: 1rem;
      line-height: 1.22;
      letter-spacing: -0.025em;
    }

    .service-note {
      margin-top: 28px;
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(220px, 0.32fr);
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      padding: 14px 14px 14px 24px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .service-note p {
      max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .service-note .primary-btn {
      width: 100%;
      justify-content: center;
      padding-left: 26px;
      padding-right: 20px;
    }

    .service-note strong {
      color: var(--ink);
    }

    .tier-card.featured {
      border-color: rgba(20,60,255,0.26);
      background: linear-gradient(180deg, #ffffff, #f7faff);
    }

    .tier-card.exclusive {
      color: #ffffff;
      background: var(--navy);
      border-color: rgba(7,17,31,0.2);
    }

    .tier-card.exclusive p,
    .tier-card.exclusive li,
    .tier-card.exclusive .tier-price span,
    .tier-card.exclusive .tier-credits {
      color: rgba(255,255,255,0.66);
    }

    .tier-card.exclusive .tier-tag {
      color: #dbe7ff;
    }

    .tier-price {
      margin: 18px 0 4px;
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 0.95;
      letter-spacing: -0.07em;
      font-weight: 760;
    }

    .tier-price span {
      color: var(--muted);
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      font-weight: 650;
    }

    .tier-credits {
      margin-bottom: 20px;
      color: #354052;
      font-size: 0.82rem;
      font-weight: 760;
    }

    .tier-card ul {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 10px;
    }

    .tier-card li {
      color: #435164;
      font-size: 0.84rem;
      line-height: 1.4;
    }

    .tier-card li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--blue);
      font-weight: 800;
    }

    .get-protected-section {
      padding: 104px 0;
      color: #ffffff;
      text-align: center;
      background: radial-gradient(circle at 50% 0%, rgba(20,60,255,0.34), transparent 34%), var(--navy);
    }

    .get-protected-section .section-kicker {
      color: #dbe7ff;
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
    }

    .get-protected-section .section-kicker::before {
      background: #dbe7ff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    .get-protected-section h2 {
      max-width: 900px;
      margin: 0 auto;
      font-size: clamp(2.45rem, 5vw, 5.3rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
      font-weight: 760;
    }

    .get-protected-section p {
      max-width: 700px;
      margin: 24px auto 34px;
      color: rgba(255,255,255,0.68);
      font-size: 1rem;
      line-height: 1.7;
    }

    .get-protected-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .closing-section {
      padding: 90px 0;
      background: var(--navy);
      color: #fff;
    }

    .closing-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .closing-section h2 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(2.2rem, 4vw, 4.6rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
    }

    .closing-section p {
      margin: 18px 0 0;
      max-width: 520px;
      color: rgba(255,255,255,0.65);
      font-size: 0.98rem;
    }

    footer {
      padding: 30px 0;
      color: #667085;
      background: #ffffff;
      border-top: 1px solid var(--line);
      font-size: 0.84rem;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }



    /* Chunkier IYE-style heading typography */
    h1,
    .section-title,
    .metric-panel h3,
    .risk-card h3,
    .sector-card h3,
    .fix-card h3,
    .tier-card h3,
    .ecosystem-card h3,
    .get-protected-section h2,
    .tier-price {
      font-family: var(--heading-font);
      font-weight: 900;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    h1 {
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .section-title {
      font-weight: 900;
      line-height: 0.94;
      letter-spacing: -0.058em;
    }

    .metric-panel h3,
    .get-protected-section h2 {
      font-weight: 900;
      letter-spacing: -0.058em;
    }

    .risk-card h3,
    .fix-card h3,
    .tier-card h3 {
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .ecosystem-card h3,
    .sector-card h3 {
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    @media (max-width: 940px) {
      nav {
        display: none;
      }

      .hero-inner,
      .metric-wrap,
      .closing-inner {
        grid-template-columns: 1fr;
      }

      .risk-grid,
      .metric-grid {
        grid-template-columns: 1fr;
      }

      .sector-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-card {
        max-width: 520px;
      }

      .section-head,
      .fix-grid,
      .tier-grid {
        grid-template-columns: 1fr;
      }

      .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-note {
        align-items: flex-start;
        border-radius: 24px;
        flex-direction: column;
      }

    }

    @media (max-width: 560px) {
      .header-inner,
      .container,
      .hero-inner,
      .footer-inner {
        width: min(100% - 28px, var(--max));
      }

      section {
        padding: 64px 0;
      }

      .hero {
        min-height: auto;
        padding: 116px 0 62px;
      }

      h1 {
        font-size: clamp(3rem, 17vw, 4.4rem);
      }

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

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

      .get-protected-section {
        padding: 76px 0;
      }

    }


    /* Refinement overrides */
    .eyebrow {
      margin-left: auto;
      margin-right: auto;
    }

    .sector-card,
    .ecosystem-card,
    .fix-card,
    .tier-card,
    .risk-card,
    .metric-card,
    .metric-panel,
    .service-note {
      will-change: transform;
    }

    .ecosystem-grid {
      overflow: visible;
      gap: 14px;
      background: transparent;
      border: 0;
    }

    .ecosystem-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
    }

    @media (max-width: 940px) {
      .service-note {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 22px;
      }
    }
  

    /* Version 4 refinements */
    .header-inner { height: 64px; }
    .brand-mark { width: 30px; height: 30px; }
    .hero { min-height: 78vh; padding: 112px 0 66px; }
    .hero-actions { margin-top: 32px; }
    .primary-btn { background: var(--blue-dark); color: #ffffff; border-color: var(--blue-dark); }
    .primary-btn:hover { background: #06184a; color: #ffffff; }
    .hero .primary-btn { background: #ffffff; color: var(--ink); border-color: rgba(255,255,255,0.72); }
    .hero .primary-btn:hover { background: #f7faff; color: var(--ink); }
    .hero .accent { color: var(--blue); text-shadow: 0 0 34px rgba(20,60,255,0.45); }
    .risk-grid.clean-start { margin-top: 0; }
    .risk-card small.is-hidden { display:none; }
    .metric-wrap.v4-metrics { grid-template-columns: 1fr; }
    .metric-grid.metric-grid-four { grid-template-columns: repeat(4, 1fr); }
    .fine-banner {
      margin-top: 18px;
      padding: 28px 30px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      box-shadow: 0 22px 58px rgba(7,17,31,0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }
    .fine-banner:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(7,17,31,0.18); }
    .fine-banner strong { font-family: var(--heading-font); font-size: clamp(1.5rem, 3vw, 2.75rem); line-height: 1.1; letter-spacing: -0.055em; }
    .fine-banner span { color: rgba(255,255,255,0.7); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
    .solution-modern { background: #ffffff; position: relative; overflow: hidden; }
    .solution-modern::before { content:""; position:absolute; right:-160px; top:60px; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(20,60,255,0.12), transparent 62%); pointer-events:none; }
    .solution-centre { text-align: center; max-width: 920px; margin: 0 auto 46px; position:relative; z-index:1; }
    .solution-centre .section-title { margin: 0 auto; }
    .solution-subheading { max-width: 760px; margin: 20px auto 0; color: var(--muted); font-size: 1.12rem; line-height: 1.6; letter-spacing: -0.02em; }
    .solution-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position:relative; z-index:1; }
    .solution-copy-card, .first-step-copy, .form-section-block, .report-card, .quote-block {
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }
    .solution-copy-card:hover, .first-step-copy:hover, .form-section-block:hover, .report-card:hover, .quote-block:hover { transform: translateY(-4px); border-color: rgba(20,60,255,0.35); box-shadow: 0 24px 64px rgba(7,17,31,0.08); }
    .solution-copy-card { min-height: 360px; padding: 34px; display:flex; flex-direction:column; justify-content:space-between; }
    .solution-copy-card p { margin:0 0 18px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
    .solution-copy-card .statement { margin: 18px 0 0; color: var(--ink); font-family: var(--heading-font); font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.03; letter-spacing: -0.045em; font-weight: 900; }
    .first-step-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .first-step-grid { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: stretch; }
    .first-step-image { min-height: 470px; border-radius: 30px; background: linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.34)), url('iye-fraud-shield-header.jpg') center center / cover no-repeat; box-shadow: 0 24px 64px rgba(7,17,31,0.1); position: relative; overflow: hidden; }
    .first-step-image::after { content:"Business overview"; position:absolute; left:28px; bottom:28px; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,0.88); color:var(--ink); font-size:0.78rem; font-weight:850; letter-spacing:0.08em; text-transform:uppercase; }
    .first-step-copy { padding: 38px; display:flex; flex-direction:column; justify-content:center; }
    .first-step-copy h2 { margin:0; font-family:var(--heading-font); font-size:clamp(2.2rem, 4vw, 4.4rem); line-height:0.96; letter-spacing:-0.058em; font-weight:900; }
    .first-step-copy p { margin: 24px 0 0; color: var(--muted); font-size:1rem; line-height:1.72; }
    .business-form-section { background:#ffffff; }
    .business-form { margin-top: 34px; display: grid; gap: 18px; }
    .form-section-block { padding: 26px; }
    .form-section-block h3 { margin:0 0 20px; font-family: var(--heading-font); font-size: 1.35rem; letter-spacing: -0.035em; }
    .form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .form-field { display:grid; gap: 8px; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label { color:#354052; font-size:0.82rem; font-weight:750; }
    .form-field input, .form-field textarea, .form-field select {
      width:100%; border:1px solid var(--line); border-radius:14px; padding:13px 14px; font: inherit; font-size:0.92rem; color:var(--ink); background:#fbfdff; outline:none; transition:border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }
    .form-field textarea { min-height: 116px; resize: vertical; }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(20,60,255,0.48); box-shadow: 0 0 0 4px rgba(20,60,255,0.08); background:#fff; }
    .consent-box { display:flex; gap:12px; align-items:flex-start; padding:20px; border:1px solid var(--line); border-radius:18px; background:#f7faff; color:var(--muted); font-size:0.88rem; line-height:1.55; }
    .consent-box input { margin-top: 4px; accent-color: var(--blue-dark); }
    .form-actions { display:flex; justify-content:flex-end; gap:14px; flex-wrap:wrap; }
    .reports-section { background: var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
    .reports-grid { margin-top: 38px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .report-card { padding: 30px; min-height: 250px; display:flex; flex-direction:column; justify-content:space-between; }
    .report-card h3 { margin:0 0 8px; font-family:var(--heading-font); font-size:2rem; line-height:1; letter-spacing:-0.05em; }
    .report-card p { margin:0; color:var(--muted); font-weight:750; }
    .download-btn { display:inline-flex; justify-content:center; align-items:center; gap:10px; width:100%; min-height:48px; padding:0 18px; border-radius:999px; background:var(--blue-dark); color:#fff; font-size:0.86rem; font-weight:800; box-shadow:0 12px 28px rgba(7,31,122,0.16); transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
    .download-btn:hover { transform: translateY(-2px); background:#06184a; box-shadow:0 16px 36px rgba(7,31,122,0.22); }
    .quote-block { margin: 26px auto 0; padding: 30px; text-align:center; font-family:var(--heading-font); font-size:clamp(1.5rem, 3vw, 2.65rem); line-height:1.05; letter-spacing:-0.05em; font-weight:900; color:var(--ink); }
    .report-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:26px; }
    .report-actions .primary-btn { min-width: 180px; justify-content:center; }
    .ecosystem-section-v4 { background:#ffffff; }
    .get-protected-section .primary-btn { background:#ffffff; color:var(--ink); border-color:#ffffff; }
    .get-protected-section .primary-btn:hover { background:#f7faff; color:var(--ink); }
    .solution-copy-card, .form-section-block, .report-card, .quote-block, .fine-banner, .first-step-copy { will-change: transform; }
    @media (max-width: 940px) {
      .metric-grid.metric-grid-four, .solution-two-col, .first-step-grid, .reports-grid { grid-template-columns: 1fr; }
      .first-step-image { min-height: 340px; }
    }
    @media (max-width: 560px) {
      .header-inner { height: 60px; }
      .hero { padding: 102px 0 58px; }
      .form-grid { grid-template-columns: 1fr; }
      .fine-banner { align-items:flex-start; flex-direction:column; border-radius:24px; padding:24px; }
      .solution-copy-card, .first-step-copy, .form-section-block, .report-card { padding:24px; border-radius:24px; }
    }


    /* Version 4.1 WordPress navigation and footer */
    .site-header {
      background: #ffffff;
    }

    .header-inner {
      height: 68px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #354052;
      font-size: 0.86rem;
      font-weight: 650;
    }

    .desktop-nav a:not(.nav-cta) {
      transition: color 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover {
      color: var(--blue-dark);
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff !important;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      font-weight: 800;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 16px 34px rgba(7,31,122,0.26);
    }

    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(7,17,31,0.12);
      background: #ffffff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      box-shadow: 0 10px 24px rgba(7,17,31,0.06);
    }

    .mobile-menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--ink);
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      z-index: 29;
      padding: 16px 20px 22px;
      background: #ffffff;
      border-bottom: 1px solid rgba(7,17,31,0.08);
      box-shadow: 0 24px 54px rgba(7,17,31,0.09);
    }

    .mobile-menu.open {
      display: grid;
      gap: 6px;
    }

    .mobile-menu a {
      padding: 14px 12px;
      border-radius: 14px;
      color: #354052;
      font-weight: 760;
    }

    .mobile-menu a:hover {
      background: var(--soft);
      color: var(--ink);
    }

    .mobile-menu .nav-cta {
      margin-top: 8px;
      text-align: center;
      justify-content: center;
      display: inline-flex;
    }

    .footer-v3{
      background:#07111f;
      color:#fff;
      padding:58px 0 28px;
    }

    .footer-v3 .footgrid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr 1fr;
      gap:64px;
      padding-bottom:58px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }

    .footer-v3 .footer-brand{
      font-family: var(--heading-font);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
      margin-bottom:16px;
    }

    .footer-v3 .footer-brand span{
      color:#78d7df;
      font-size:.75em;
    }

    .footer-v3 p,
    .footer-v3 a{
      color:rgba(255,255,255,.56);
      font-size:13px;
      line-height:1.85;
    }

    .footer-v3 h4{
      font-size:11px;
      font-weight:800;
      letter-spacing:.24em;
      text-transform:uppercase;
      color:rgba(255,255,255,.34);
      margin:0 0 18px;
    }

    .footer-v3 a{
      display:block;
      margin:11px 0;
      text-decoration:none;
      transition:color .18s ease;
    }

    .footer-v3 a:hover{
      color:#fff;
    }

    .footer-v3 .bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding-top:24px;
      color:rgba(255,255,255,.28);
      font-size:12px;
    }

    .placeholder-hero {
      padding: 158px 0 96px;
      background: radial-gradient(circle at 78% 12%, rgba(20,60,255,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .placeholder-hero .section-title {
      max-width: 760px;
    }

    .placeholder-panel {
      margin-top: 34px;
      max-width: 760px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .placeholder-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(20,60,255,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    @media(max-width:1050px){
      .footer-v3 .footgrid{grid-template-columns:1fr 1fr;gap:36px;}
    }

    @media (max-width: 940px) {
      nav.desktop-nav {
        display: none !important;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }
    }

    @media(max-width:640px){
      .footer-v3 .footgrid{grid-template-columns:1fr;}
      .footer-v3 .bottom{flex-direction:column;align-items:flex-start;}
      .header-inner { height: 64px; }
      .mobile-menu { top: 64px; }
      .placeholder-hero { padding: 132px 0 76px; }
    }

  

    /* FAQs page refinement */
    .faq-hero {
      padding: 150px 0 70px;
      background: radial-gradient(circle at 78% 12%, rgba(20,60,255,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .faq-hero-inner {
      max-width: var(--max);
    }

    .faq-section {
      padding: 86px 0 96px;
      background: #ffffff;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.78fr);
      gap: 54px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 102px;
    }

    .faq-intro .section-title {
      font-size: clamp(2.05rem, 3.4vw, 3.8rem);
      max-width: 460px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #ffffff;
      box-shadow: 0 16px 42px rgba(7,17,31,0.04);
      overflow: hidden;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .faq-item:hover {
      transform: translateY(-3px);
      border-color: rgba(20,60,255,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 24px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: var(--ink);
      font-family: var(--heading-font);
      font-size: clamp(1.05rem, 1.6vw, 1.28rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.035em;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-plus {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      flex: 0 0 30px;
      position: relative;
      background: #f4f7ff;
      border: 1px solid rgba(20,60,255,0.16);
    }

    .faq-plus::before,
    .faq-plus::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 12px;
      height: 2px;
      border-radius: 999px;
      background: var(--blue);
      transform: translate(-50%, -50%);
      transition: transform 180ms ease;
    }

    .faq-plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item[open] .faq-plus::after {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    .faq-answer {
      padding: 0 26px 26px;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .faq-answer p {
      margin: 0 0 14px;
    }

    .faq-answer p:last-child {
      margin-bottom: 0;
    }

    .faq-bullet {
      padding-left: 16px;
      border-left: 2px solid rgba(20,60,255,0.22);
    }

    @media (max-width: 940px) {
      .faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .faq-intro {
        position: static;
      }
    }

    @media (max-width: 640px) {
      .faq-hero {
        padding: 128px 0 62px;
      }

      .faq-section {
        padding: 64px 0 72px;
      }

      .faq-item summary {
        padding: 21px 20px;
      }

      .faq-answer {
        padding: 0 20px 22px;
      }
    }


    /* Heading weight refinement */
    h1,
    h2,
    .section-title,
    .get-protected-section h2,
    .solution-text-left h2,
    .first-step-copy h2 {
      font-weight: 700;
      letter-spacing: -0.045em;
    }


/* ==== Extracted from pricing.html ==== */
:root {
      --bg: #ffffff;
      --ink: #07111f;
      --muted: #5d6675;
      --soft: #f5f7fa;
      --line: #dfe5ec;
      --blue: #62bfca;
      --blue-dark: #071f7a;
      --navy: #07111f;
      --radius: 22px;
      --max: 1180px;
      --heading-font: "Archivo", Inter, Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.45;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 30;
      background: #ffffff;
      backdrop-filter: none;
      border-bottom: 1px solid rgba(7,17,31,0.08);
    }

    .header-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-size: 1.02rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffffff 0%, #dbe7ff 18%, #62bfca 42%, #06184a 100%);
      box-shadow: 0 10px 30px rgba(98,191,202,0.22);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #354052;
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-cta {
      padding: 10px 16px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 14px 32px rgba(7,31,122,0.24);
    }

    .hero {
      min-height: 86vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #07111f url('iye-fraud-shield-header.jpg') center center / cover no-repeat;
      padding: 130px 0 76px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,8,18,0.76) 0%, rgba(3,8,18,0.58) 48%, rgba(3,8,18,0.44) 100%),
        radial-gradient(circle at 50% 44%, rgba(98,191,202,0.28), transparent 38%);
      z-index: 1;
    }

    .hero-inner {
      width: min(920px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hero-content {
      max-width: 880px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 7px 11px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      color: rgba(255,255,255,0.78);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    h1 {
      max-width: 860px;
      margin: 0 auto;
      font-size: clamp(3.05rem, 7vw, 6.8rem);
      line-height: 0.9;
      letter-spacing: -0.085em;
      font-weight: 900;
    }

    .hero-subheadline {
      margin: 24px auto 0;
      color: rgba(255,255,255,0.82);
      font-size: clamp(1.05rem, 1.8vw, 1.38rem);
      line-height: 1.38;
      max-width: 560px;
      letter-spacing: -0.025em;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .primary-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 19px 0 21px;
      border-radius: 999px;
      color: #07111f;
      background: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 18px 42px rgba(0,0,0,0.24);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.32);
      background: #f7faff;
    }

    .btn-arrow {
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: var(--blue);
      font-size: 0.96rem;
      line-height: 1;
    }

    .secondary-note {
      display: block;
      margin-top: 16px;
      color: rgba(255,255,255,0.68);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .hero-card {
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 90px rgba(0,0,0,0.18);
    }

    .hero-card p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .hero-card strong {
      display: block;
      margin-bottom: 10px;
      color: #fff;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
    }

    section {
      padding: 82px 0;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 16px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 999px;
      background: #f4f7ff;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(98,191,202,0.1);
      flex: 0 0 auto;
    }

    .section-title {
      max-width: 860px;
      margin: 0;
      font-size: clamp(2.15rem, 4.3vw, 4.45rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 930;
    }

    .section-intro {
      max-width: 630px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.58;
      letter-spacing: -0.015em;
    }

    .risk-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .risk-card {
      min-height: 300px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .risk-card:hover,
    .metric-card:hover,
    .metric-panel:hover,
    .service-note:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .solution-label {
      color: var(--blue);
      font-weight: 800;
    }

    .risk-card small {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .risk-card h3 {
      margin: 18px 0 0;
      font-size: 1.55rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
      font-weight: 750;
    }

    .risk-card p {
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .intelligence-section {
      background: var(--soft);
    }

    .metric-wrap {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .metric-panel {
      padding: 34px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .metric-panel::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(98,191,202,0.65), transparent 62%);
    }

    .metric-panel h3 {
      position: relative;
      z-index: 2;
      margin: 0;
      max-width: 420px;
      font-size: clamp(2rem, 3vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .metric-panel p {
      position: relative;
      z-index: 2;
      max-width: 390px;
      margin: 28px 0 0;
      color: rgba(255,255,255,0.68);
      font-size: 0.95rem;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .metric-card {
      padding: 24px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 188px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .metric-card span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 650;
      line-height: 1.35;
    }

    .metric-card small {
      display: block;
      margin-top: 12px;
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .metric-card strong {
      display: block;
      margin-top: 24px;
      font-size: clamp(1.8rem, 3vw, 3.05rem);
      letter-spacing: -0.07em;
      line-height: 0.95;
    }

    .protected-section {
      padding-bottom: 96px;
    }

    .sector-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .sector-card {
      padding: 22px;
      min-height: 144px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .sector-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 20px 52px rgba(7,17,31,0.07);
    }

    .sector-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 20px;
      border-radius: 12px;
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      display: grid;
      place-items: center;
      color: var(--blue);
      font-weight: 800;
    }

    .sector-card h3 {
      margin: 0;
      font-size: 1.02rem;
      letter-spacing: -0.03em;
    }

    .sector-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }



    .accent {
      color: var(--blue);
    }

    .hero .accent {
      color: #dbe7ff;
      text-shadow: 0 0 34px rgba(98,191,202,0.35);
    }

    .solution-section,
    .methodology-section {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
      gap: 42px;
      align-items: end;
    }

    .fix-grid,
    .tier-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fix-card,
    .tier-card {
      position: relative;
      min-height: 286px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      overflow: hidden;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .fix-card:hover,
    .tier-card:hover,
    .ecosystem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .fix-number {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 800;
    }

    .fix-card small,
    .tier-tag {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .fix-card h3,
    .tier-card h3 {
      margin: 68px 0 14px;
      font-size: 1.52rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .fix-card p,
    .tier-card p,
    .ecosystem-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.58;
    }

    .ecosystem-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 28px;
      overflow: hidden;
    }

    .ecosystem-card {
      min-height: 220px;
      padding: 26px;
      background: #ffffff;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .ecosystem-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 15px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-size: 0.76rem;
      font-weight: 800;
    }

    .ecosystem-card h3 {
      margin: 0 0 10px;
      font-size: 1rem;
      line-height: 1.22;
      letter-spacing: -0.025em;
    }

    .service-note {
      margin-top: 28px;
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(220px, 0.32fr);
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      padding: 14px 14px 14px 24px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .service-note p {
      max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .service-note .primary-btn {
      width: 100%;
      justify-content: center;
      padding-left: 26px;
      padding-right: 20px;
    }

    .service-note strong {
      color: var(--ink);
    }

    .tier-card.featured {
      border-color: rgba(98,191,202,0.26);
      background: linear-gradient(180deg, #ffffff, #f7faff);
    }

    .tier-card.exclusive {
      color: #ffffff;
      background: var(--navy);
      border-color: rgba(7,17,31,0.2);
    }

    .tier-card.exclusive p,
    .tier-card.exclusive li,
    .tier-card.exclusive .tier-price span,
    .tier-card.exclusive .tier-credits {
      color: rgba(255,255,255,0.66);
    }

    .tier-card.exclusive .tier-tag {
      color: #dbe7ff;
    }

    .tier-price {
      margin: 18px 0 4px;
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 0.95;
      letter-spacing: -0.07em;
      font-weight: 760;
    }

    .tier-price span {
      color: var(--muted);
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      font-weight: 650;
    }

    .tier-credits {
      margin-bottom: 20px;
      color: #354052;
      font-size: 0.82rem;
      font-weight: 760;
    }

    .tier-card ul {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 10px;
    }

    .tier-card li {
      color: #435164;
      font-size: 0.84rem;
      line-height: 1.4;
    }

    .tier-card li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--blue);
      font-weight: 800;
    }

    .get-protected-section {
      padding: 104px 0;
      color: #ffffff;
      text-align: center;
      background: radial-gradient(circle at 50% 0%, rgba(98,191,202,0.34), transparent 34%), var(--navy);
    }

    .get-protected-section .section-kicker {
      color: #dbe7ff;
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
    }

    .get-protected-section .section-kicker::before {
      background: #dbe7ff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    .get-protected-section h2 {
      max-width: 900px;
      margin: 0 auto;
      font-size: clamp(2.45rem, 5vw, 5.3rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
      font-weight: 760;
    }

    .get-protected-section p {
      max-width: 700px;
      margin: 24px auto 34px;
      color: rgba(255,255,255,0.68);
      font-size: 1rem;
      line-height: 1.7;
    }

    .get-protected-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .closing-section {
      padding: 90px 0;
      background: var(--navy);
      color: #fff;
    }

    .closing-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .closing-section h2 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(2.2rem, 4vw, 4.6rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
    }

    .closing-section p {
      margin: 18px 0 0;
      max-width: 520px;
      color: rgba(255,255,255,0.65);
      font-size: 0.98rem;
    }

    footer {
      padding: 30px 0;
      color: #667085;
      background: #ffffff;
      border-top: 1px solid var(--line);
      font-size: 0.84rem;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }



    /* Chunkier IYE-style heading typography */
    h1,
    .section-title,
    .metric-panel h3,
    .risk-card h3,
    .sector-card h3,
    .fix-card h3,
    .tier-card h3,
    .ecosystem-card h3,
    .get-protected-section h2,
    .tier-price {
      font-family: var(--heading-font);
      font-weight: 900;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    h1 {
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .section-title {
      font-weight: 900;
      line-height: 0.94;
      letter-spacing: -0.058em;
    }

    .metric-panel h3,
    .get-protected-section h2 {
      font-weight: 900;
      letter-spacing: -0.058em;
    }

    .risk-card h3,
    .fix-card h3,
    .tier-card h3 {
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .ecosystem-card h3,
    .sector-card h3 {
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    @media (max-width: 940px) {
      nav {
        display: none;
      }

      .hero-inner,
      .metric-wrap,
      .closing-inner {
        grid-template-columns: 1fr;
      }

      .risk-grid,
      .metric-grid {
        grid-template-columns: 1fr;
      }

      .sector-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-card {
        max-width: 520px;
      }

      .section-head,
      .fix-grid,
      .tier-grid {
        grid-template-columns: 1fr;
      }

      .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-note {
        align-items: flex-start;
        border-radius: 24px;
        flex-direction: column;
      }

    }

    @media (max-width: 560px) {
      .header-inner,
      .container,
      .hero-inner,
      .footer-inner {
        width: min(100% - 28px, var(--max));
      }

      section {
        padding: 64px 0;
      }

      .hero {
        min-height: auto;
        padding: 116px 0 62px;
      }

      h1 {
        font-size: clamp(3rem, 17vw, 4.4rem);
      }

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

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

      .get-protected-section {
        padding: 76px 0;
      }

    }


    /* Refinement overrides */
    .eyebrow {
      margin-left: auto;
      margin-right: auto;
    }

    .sector-card,
    .ecosystem-card,
    .fix-card,
    .tier-card,
    .risk-card,
    .metric-card,
    .metric-panel,
    .service-note {
      will-change: transform;
    }

    .ecosystem-grid {
      overflow: visible;
      gap: 14px;
      background: transparent;
      border: 0;
    }

    .ecosystem-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
    }

    @media (max-width: 940px) {
      .service-note {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 22px;
      }
    }
  

    /* Version 4 refinements */
    .header-inner { height: 64px; }
    .brand-mark { width: 30px; height: 30px; }
    .hero { min-height: 78vh; padding: 112px 0 66px; }
    .hero-actions { margin-top: 32px; }
    .primary-btn { background: var(--blue-dark); color: #ffffff; border-color: var(--blue-dark); }
    .primary-btn:hover { background: #06184a; color: #ffffff; }
    .hero .primary-btn { background: #ffffff; color: var(--ink); border-color: rgba(255,255,255,0.72); }
    .hero .primary-btn:hover { background: #f7faff; color: var(--ink); }
    .hero .accent { color: var(--blue); text-shadow: 0 0 34px rgba(98,191,202,0.45); }
    .risk-grid.clean-start { margin-top: 0; }
    .risk-card small.is-hidden { display:none; }
    .metric-wrap.v4-metrics { grid-template-columns: 1fr; }
    .metric-grid.metric-grid-four { grid-template-columns: repeat(4, 1fr); }
    .fine-banner {
      margin-top: 18px;
      padding: 28px 30px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      box-shadow: 0 22px 58px rgba(7,17,31,0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }
    .fine-banner:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(7,17,31,0.18); }
    .fine-banner strong { font-family: var(--heading-font); font-size: clamp(1.5rem, 3vw, 2.75rem); line-height: 1,1; letter-spacing: -0.055em; }
    .fine-banner span { color: rgba(255,255,255,0.7); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
    .solution-modern { background: #ffffff; position: relative; overflow: hidden; }
    .solution-modern::before { content:""; position:absolute; right:-160px; top:60px; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(98,191,202,0.12), transparent 62%); pointer-events:none; }
    .solution-centre { text-align: center; max-width: 920px; margin: 0 auto 46px; position:relative; z-index:1; }
    .solution-centre .section-title { margin: 0 auto; }
    .solution-subheading { max-width: 760px; margin: 20px auto 0; color: var(--muted); font-size: 1.12rem; line-height: 1.6; letter-spacing: -0.02em; }
    .solution-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position:relative; z-index:1; }
    .solution-copy-card, .first-step-copy, .form-section-block, .report-card, .quote-block {
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }
    .solution-copy-card:hover, .first-step-copy:hover, .form-section-block:hover, .report-card:hover, .quote-block:hover { transform: translateY(-4px); border-color: rgba(98,191,202,0.35); box-shadow: 0 24px 64px rgba(7,17,31,0.08); }
    .solution-copy-card { min-height: 360px; padding: 34px; display:flex; flex-direction:column; justify-content:space-between; }
    .solution-copy-card p { margin:0 0 18px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
    .solution-copy-card .statement { margin: 18px 0 0; color: var(--ink); font-family: var(--heading-font); font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.03; letter-spacing: -0.045em; font-weight: 900; }
    .first-step-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .first-step-grid { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: stretch; }
    .first-step-image { min-height: 470px; border-radius: 30px; background: linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.34)), url('iye-fraud-shield-header.jpg') center center / cover no-repeat; box-shadow: 0 24px 64px rgba(7,17,31,0.1); position: relative; overflow: hidden; }
    .first-step-image::after { content:"Business overview"; position:absolute; left:28px; bottom:28px; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,0.88); color:var(--ink); font-size:0.78rem; font-weight:850; letter-spacing:0.08em; text-transform:uppercase; }
    .first-step-copy { padding: 38px; display:flex; flex-direction:column; justify-content:center; }
    .first-step-copy h2 { margin:0; font-family:var(--heading-font); font-size:clamp(2.2rem, 4vw, 4.4rem); line-height:0.96; letter-spacing:-0.058em; font-weight:900; }
    .first-step-copy p { margin: 24px 0 0; color: var(--muted); font-size:1rem; line-height:1.72; }
    .business-form-section { background:#ffffff; }
    .business-form { margin-top: 34px; display: grid; gap: 18px; }
    .form-section-block { padding: 26px; }
    .form-section-block h3 { margin:0 0 20px; font-family: var(--heading-font); font-size: 1.35rem; letter-spacing: -0.035em; }
    .form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .form-field { display:grid; gap: 8px; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label { color:#354052; font-size:0.82rem; font-weight:750; }
    .form-field input, .form-field textarea, .form-field select {
      width:100%; border:1px solid var(--line); border-radius:14px; padding:13px 14px; font: inherit; font-size:0.92rem; color:var(--ink); background:#fbfdff; outline:none; transition:border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }
    .form-field textarea { min-height: 116px; resize: vertical; }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(98,191,202,0.48); box-shadow: 0 0 0 4px rgba(98,191,202,0.08); background:#fff; }
    .consent-box { display:flex; gap:12px; align-items:flex-start; padding:20px; border:1px solid var(--line); border-radius:18px; background:#f7faff; color:var(--muted); font-size:0.88rem; line-height:1.55; }
    .consent-box input { margin-top: 4px; accent-color: var(--blue-dark); }
    .form-actions { display:flex; justify-content:flex-end; gap:14px; flex-wrap:wrap; }
    .reports-section { background: var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
    .reports-grid { margin-top: 38px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .report-card { padding: 30px; min-height: 250px; display:flex; flex-direction:column; justify-content:space-between; }
    .report-card h3 { margin:0 0 8px; font-family:var(--heading-font); font-size:2rem; line-height:1; letter-spacing:-0.05em; }
    .report-card p { margin:0; color:var(--muted); font-weight:750; }
    .download-btn { display:inline-flex; justify-content:center; align-items:center; gap:10px; width:100%; min-height:48px; padding:0 18px; border-radius:999px; background:var(--blue-dark); color:#fff; font-size:0.86rem; font-weight:800; box-shadow:0 12px 28px rgba(7,31,122,0.16); transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
    .download-btn:hover { transform: translateY(-2px); background:#06184a; box-shadow:0 16px 36px rgba(7,31,122,0.22); }
    .quote-block { margin: 26px auto 0; padding: 30px; text-align:center; font-family:var(--heading-font); font-size:clamp(1.5rem, 3vw, 2.65rem); line-height:1.05; letter-spacing:-0.05em; font-weight:900; color:var(--ink); }
    .report-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:26px; }
    .report-actions .primary-btn { min-width: 180px; justify-content:center; }
    .ecosystem-section-v4 { background:#ffffff; }
    .get-protected-section .primary-btn { background:#ffffff; color:var(--ink); border-color:#ffffff; }
    .get-protected-section .primary-btn:hover { background:#f7faff; color:var(--ink); }
    .solution-copy-card, .form-section-block, .report-card, .quote-block, .fine-banner, .first-step-copy { will-change: transform; }
    @media (max-width: 940px) {
      .metric-grid.metric-grid-four, .solution-two-col, .first-step-grid, .reports-grid { grid-template-columns: 1fr; }
      .first-step-image { min-height: 340px; }
    }
    @media (max-width: 560px) {
      .header-inner { height: 60px; }
      .hero { padding: 102px 0 58px; }
      .form-grid { grid-template-columns: 1fr; }
      .fine-banner { align-items:flex-start; flex-direction:column; border-radius:24px; padding:24px; }
      .solution-copy-card, .first-step-copy, .form-section-block, .report-card { padding:24px; border-radius:24px; }
    }


    /* Version 4.1 WordPress navigation and footer */
    .site-header {
      background: #ffffff;
    }

    .header-inner {
      height: 68px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #354052;
      font-size: 0.86rem;
      font-weight: 650;
    }

    .desktop-nav a:not(.nav-cta) {
      transition: color 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover {
      color: var(--blue-dark);
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff !important;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      font-weight: 800;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 16px 34px rgba(7,31,122,0.26);
    }

    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(7,17,31,0.12);
      background: #ffffff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      box-shadow: 0 10px 24px rgba(7,17,31,0.06);
    }

    .mobile-menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--ink);
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      z-index: 29;
      padding: 16px 20px 22px;
      background: #ffffff;
      border-bottom: 1px solid rgba(7,17,31,0.08);
      box-shadow: 0 24px 54px rgba(7,17,31,0.09);
    }

    .mobile-menu.open {
      display: grid;
      gap: 6px;
    }

    .mobile-menu a {
      padding: 14px 12px;
      border-radius: 14px;
      color: #354052;
      font-weight: 760;
    }

    .mobile-menu a:hover {
      background: var(--soft);
      color: var(--ink);
    }

    .mobile-menu .nav-cta {
      margin-top: 8px;
      text-align: center;
      justify-content: center;
      display: inline-flex;
    }

    .footer-v3{
      background:#07111f;
      color:#fff;
      padding:58px 0 28px;
    }

    .footer-v3 .footgrid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr 1fr;
      gap:64px;
      padding-bottom:58px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }

    .footer-v3 .footer-brand{
      font-family: var(--heading-font);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
      margin-bottom:16px;
    }

    .footer-v3 .footer-brand span{
      color:#78d7df;
      font-size:.75em;
    }

    .footer-v3 p,
    .footer-v3 a{
      color:rgba(255,255,255,.56);
      font-size:13px;
      line-height:1.85;
    }

    .footer-v3 h4{
      font-size:11px;
      font-weight:800;
      letter-spacing:.24em;
      text-transform:uppercase;
      color:rgba(255,255,255,.34);
      margin:0 0 18px;
    }

    .footer-v3 a{
      display:block;
      margin:11px 0;
      text-decoration:none;
      transition:color .18s ease;
    }

    .footer-v3 a:hover{
      color:#fff;
    }

    .footer-v3 .bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding-top:24px;
      color:rgba(255,255,255,.28);
      font-size:12px;
    }

    .placeholder-hero {
      padding: 158px 0 96px;
      background: radial-gradient(circle at 78% 12%, rgba(98,191,202,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .placeholder-hero .section-title {
      max-width: 760px;
    }

    .placeholder-panel {
      margin-top: 34px;
      max-width: 760px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .placeholder-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    @media(max-width:1050px){
      .footer-v3 .footgrid{grid-template-columns:1fr 1fr;gap:36px;}
    }

    @media (max-width: 940px) {
      nav.desktop-nav {
        display: none !important;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }
    }

    @media(max-width:640px){
      .footer-v3 .footgrid{grid-template-columns:1fr;}
      .footer-v3 .bottom{flex-direction:column;align-items:flex-start;}
      .header-inner { height: 64px; }
      .mobile-menu { top: 64px; }
      .placeholder-hero { padding: 132px 0 76px; }
    }


    /* Pricing page sections */
    .pricing-hero {
      padding: 148px 0 86px;
      background: radial-gradient(circle at 76% 8%, rgba(98,191,202,0.13), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .pricing-hero .section-title {
      max-width: 780px;
    }

    .pricing-hero .section-intro {
      max-width: 720px;
      font-size: 1.05rem;
    }

    .pricing-section {
      padding: 86px 0;
    }

    .pricing-section.soft-pricing {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .pricing-plan {
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
      gap: 28px;
      align-items: stretch;
    }

    .pricing-plan + .pricing-plan {
      margin-top: 28px;
    }

    .plan-content,
    .investment-card,
    .how-card {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.04);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .plan-content:hover,
    .investment-card:hover,
    .how-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .plan-content {
      padding: 34px;
    }

    .plan-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 20px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 999px;
      background: #f4f7ff;
    }

    .plan-label::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(98,191,202,0.1);
    }

    .plan-content h2 {
      margin: 0 0 18px;
      max-width: 760px;
      font-family: var(--heading-font);
      font-size: clamp(2.1rem, 4vw, 4.2rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 900;
    }

    .plan-subtitle {
      margin: -6px 0 22px;
      color: var(--blue-dark);
      font-size: 1rem;
      line-height: 1.4;
      font-weight: 850;
      letter-spacing: -0.025em;
    }

    .plan-content p {
      max-width: 790px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.72;
      letter-spacing: -0.01em;
    }

    .investment-card {
      position: sticky;
      top: 96px;
      align-self: start;
      padding: 28px;
      color: #ffffff;
      background: radial-gradient(circle at 82% 12%, rgba(98,191,202,0.55), transparent 34%), var(--navy);
      border-color: rgba(7,17,31,0.14);
      overflow: hidden;
    }

    .investment-card h3 {
      margin: 0 0 22px;
      color: rgba(255,255,255,0.7);
      font-size: 0.76rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 850;
    }

    .investment-price {
      display: block;
      margin: 0 0 8px;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3.4vw, 3rem);
      line-height: 0.96;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .investment-divider {
      margin: 18px 0;
      height: 1px;
      background: rgba(255,255,255,0.16);
    }

    .investment-note {
      margin: 18px 0 0;
      color: rgba(255,255,255,0.62);
      font-size: 0.9rem;
      line-height: 1.58;
    }

    .enterprise-card {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
      gap: 28px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: 34px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.04);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .enterprise-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .enterprise-card h2 {
      margin: 0 0 12px;
      font-family: var(--heading-font);
      font-size: clamp(2.1rem, 4vw, 4.2rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 900;
    }

    .enterprise-card p {
      max-width: 820px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.72;
    }

    .bespoke-pill {
      align-self: start;
      justify-self: stretch;
      padding: 28px;
      border-radius: 26px;
      color: #ffffff;
      background: var(--navy);
      box-shadow: 0 18px 44px rgba(7,17,31,0.12);
    }

    .bespoke-pill span {
      display: block;
      color: rgba(255,255,255,0.58);
      font-size: 0.76rem;
      font-weight: 850;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .bespoke-pill strong {
      display: block;
      font-family: var(--heading-font);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .how-it-works {
      background: #ffffff;
    }

    .how-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .how-card {
      padding: 26px;
      min-height: 230px;
    }

    .how-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border-radius: 14px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 900;
    }

    .how-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.62;
    }

    .pricing-cta-row {
      margin-top: 38px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pricing-cta-row .primary-btn {
      min-width: 190px;
      justify-content: center;
      background: var(--blue-dark);
      color: #ffffff;
      border-color: var(--blue-dark);
      box-shadow: 0 14px 30px rgba(7,31,122,0.18);
    }

    .pricing-cta-row .primary-btn:hover {
      background: #06184a;
      box-shadow: 0 18px 40px rgba(7,31,122,0.24);
    }

    .pricing-cta-row .primary-btn.secondary {
      background: #ffffff;
      color: var(--ink);
      border-color: var(--line);
      box-shadow: 0 14px 30px rgba(7,17,31,0.06);
    }

    @media (max-width: 940px) {
      .pricing-plan,
      .enterprise-card,
      .how-grid {
        grid-template-columns: 1fr;
      }
      .investment-card {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 560px) {
      .pricing-hero { padding: 128px 0 70px; }
      .pricing-section { padding: 68px 0; }
      .plan-content,
      .investment-card,
      .enterprise-card,
      .bespoke-pill,
      .how-card { padding: 24px; border-radius: 24px; }
    }

  
    /* Pricing page redesign - three-column intelligence matrix */
    .pricing-redesign-hero {
      padding: 150px 0 86px;
      background:
        radial-gradient(circle at 82% 10%, rgba(98,191,202,0.14), transparent 34%),
        radial-gradient(circle at 18% 0%, rgba(7,31,122,0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }

    .pricing-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
      gap: 38px;
      align-items: end;
    }

    .pricing-redesign-hero .section-title {
      max-width: 860px;
    }

    .pricing-redesign-hero .section-intro {
      max-width: 760px;
      font-size: 1.06rem;
      line-height: 1.66;
    }

    .pricing-signal-card {
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255,255,255,0.82);
      box-shadow: 0 18px 48px rgba(7,17,31,0.05);
    }

    .pricing-signal-card strong {
      display: block;
      font-family: var(--heading-font);
      font-size: 1.5rem;
      line-height: 1;
      letter-spacing: -0.045em;
      margin-bottom: 12px;
    }

    .pricing-signal-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.62;
    }

    .pricing-matrix-section {
      padding: 88px 0;
      background: #ffffff;
    }

    .pricing-matrix-head {
      display: flex;
      justify-content: space-between;
      gap: 34px;
      align-items: end;
      margin-bottom: 36px;
    }

    .pricing-matrix-head .section-title {
      max-width: 780px;
    }

    .pricing-matrix-head .section-intro {
      max-width: 460px;
      margin-top: 0;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .pricing-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 630px;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      overflow: hidden;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .pricing-card::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(98,191,202,0.12), transparent 64%);
      pointer-events: none;
    }

    .pricing-card:hover,
    .pricing-card.active {
      transform: translateY(-6px);
      border-color: rgba(98,191,202,0.38);
      box-shadow: 0 30px 78px rgba(7,17,31,0.10);
    }

    .pricing-card.featured {
      background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
      border-color: rgba(98,191,202,0.28);
    }

    .pricing-card.exclusive {
      background:
        radial-gradient(circle at 78% 0%, rgba(98,191,202,0.34), transparent 34%),
        var(--navy);
      color: #ffffff;
      border-color: rgba(7,17,31,0.2);
    }

    .pricing-card.exclusive p,
    .pricing-card.exclusive li,
    .pricing-card.exclusive .plan-meta,
    .pricing-card.exclusive .price-sub,
    .pricing-card.exclusive .mini-label,
    .pricing-card.exclusive .plan-credit-note {
      color: rgba(255,255,255,0.68);
    }

    .plan-chip {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 999px;
      background: #f4f7ff;
      position: relative;
      z-index: 1;
    }

    .pricing-card.exclusive .plan-chip {
      color: #dbe7ff;
      border-color: rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08);
    }

    .plan-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 0 5px rgba(98,191,202,0.10);
    }

    .pricing-card h2 {
      position: relative;
      z-index: 1;
      margin: 28px 0 12px;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3.2vw, 3.1rem);
      line-height: 0.94;
      letter-spacing: -0.065em;
      font-weight: 900;
    }

    .plan-meta {
      position: relative;
      z-index: 1;
      margin: 0 0 24px;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
      min-height: 74px;
    }

    .price-panel {
      position: relative;
      z-index: 1;
      padding: 22px;
      border-radius: 26px;
      background: var(--navy);
      color: #ffffff;
      margin-bottom: 22px;
      overflow: hidden;
    }

    .pricing-card.exclusive .price-panel {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .price-panel::after {
      content: "";
      position: absolute;
      right: -60px;
      bottom: -70px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(98,191,202,0.55), transparent 62%);
    }

    .price-main {
      position: relative;
      z-index: 1;
      display: block;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3vw, 2.9rem);
      line-height: 0.95;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .price-sub {
      position: relative;
      z-index: 1;
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,0.66);
      font-size: 0.86rem;
      font-weight: 750;
    }

    .plan-credit-note {
      position: relative;
      z-index: 1;
      margin: 0 0 24px;
      color: #354052;
      font-size: 0.86rem;
      line-height: 1.55;
      font-weight: 750;
    }

    .mini-label {
      display: block;
      margin-bottom: 12px;
      color: var(--muted);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .pricing-card ul {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 11px;
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
    }

    .pricing-card li {
      display: flex;
      gap: 9px;
      color: #435164;
      font-size: 0.86rem;
      line-height: 1.45;
    }

    .pricing-card li::before {
      content: "✓";
      color: var(--blue);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .pricing-card.exclusive li::before {
      color: #dbe7ff;
    }

    .pricing-card-actions {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-top: auto;
    }

    .reveal-plan-btn,
    .start-plan-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 900;
      letter-spacing: -0.01em;
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .reveal-plan-btn {
      border: 1px solid var(--blue-dark);
      background: var(--blue-dark);
      color: #ffffff;
      box-shadow: 0 14px 30px rgba(7,31,122,0.16);
    }

    .reveal-plan-btn:hover,
    .reveal-plan-btn.active {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 18px 40px rgba(7,31,122,0.24);
    }

    .start-plan-btn {
      border: 1px solid var(--line);
      background: #ffffff;
      color: var(--ink);
    }

    .pricing-card.exclusive .start-plan-btn {
      color: #ffffff;
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.14);
    }

    .start-plan-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 14px 30px rgba(7,17,31,0.06);
    }

    .pricing-intelligence-drawer {
      margin-top: 22px;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 34px;
      background:
        radial-gradient(circle at 92% 0%, rgba(98,191,202,0.10), transparent 32%),
        #ffffff;
      box-shadow: 0 22px 60px rgba(7,17,31,0.07);
      overflow: hidden;
    }

    .drawer-panel {
      display: none;
      padding: 32px;
    }

    .drawer-panel.active {
      display: block;
      animation: drawerIn 260ms ease both;
    }

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

    .drawer-head {
      display: grid;
      grid-template-columns: minmax(0, 0.64fr) minmax(260px, 0.36fr);
      gap: 28px;
      align-items: start;
      margin-bottom: 28px;
    }

    .drawer-head h3 {
      margin: 0;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 0.94;
      letter-spacing: -0.065em;
      font-weight: 900;
    }

    .drawer-head p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.7;
      max-width: 760px;
    }

    .drawer-snapshot {
      padding: 22px;
      border-radius: 26px;
      background: var(--navy);
      color: #ffffff;
    }

    .drawer-snapshot span {
      display: block;
      color: rgba(255,255,255,0.62);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .drawer-snapshot strong {
      display: block;
      font-family: var(--heading-font);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
      font-weight: 900;
    }

    .drawer-benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .drawer-benefit {
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fbfdff;
      min-height: 188px;
    }

    .drawer-benefit b {
      display: block;
      margin-bottom: 10px;
      font-family: var(--heading-font);
      font-size: 1.13rem;
      line-height: 1.1;
      letter-spacing: -0.035em;
    }

    .drawer-benefit p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.58;
    }

    .drawer-close-row {
      display: flex;
      justify-content: flex-end;
      margin-top: 22px;
    }

    .drawer-close {
      border: 0;
      background: transparent;
      color: var(--muted);
      font-weight: 800;
      cursor: pointer;
    }

    .how-section-redesigned {
      padding: 84px 0;
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .how-strip {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .how-step {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
    }

    .how-step strong {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 20px;
      border-radius: 14px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 900;
    }

    .how-step p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.62;
    }

    @media (max-width: 1060px) {
      .pricing-hero-grid,
      .pricing-matrix-head,
      .drawer-head {
        grid-template-columns: 1fr;
        display: grid;
      }

      .pricing-cards,
      .drawer-benefit-grid,
      .how-strip {
        grid-template-columns: 1fr;
      }

      .pricing-card {
        min-height: auto;
      }

      .plan-meta {
        min-height: auto;
      }
    }

    @media (max-width: 560px) {
      .pricing-redesign-hero {
        padding: 130px 0 70px;
      }

      .pricing-matrix-section,
      .how-section-redesigned {
        padding: 68px 0;
      }

      .pricing-card,
      .drawer-panel,
      .pricing-signal-card,
      .drawer-snapshot,
      .drawer-benefit,
      .how-step {
        padding: 24px;
        border-radius: 24px;
      }
    }

  
    /* Global navigation and accent refinement */
    .desktop-nav {
      font-size: 0.94rem;
    }

    .desktop-nav a:not(.nav-cta) {
      position: relative;
      padding-bottom: 8px;
    }

    .desktop-nav a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 2px;
      border-radius: 999px;
      background: #62bfca;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover::after,
    .desktop-nav a:not(.nav-cta)[aria-current="page"]::after {
      transform: scaleX(1);
    }

    .desktop-nav a:not(.nav-cta):hover,
    .desktop-nav a:not(.nav-cta)[aria-current="page"] {
      color: var(--ink);
    }

    .nav-started {
      background: #62bfca !important;
      border-color: #62bfca !important;
      color: #ffffff !important;
      box-shadow: 0 10px 24px rgba(98,191,202,0.22) !important;
    }

    .nav-started:hover {
      background: #4eacb6 !important;
      border-color: #4eacb6 !important;
      box-shadow: 0 16px 34px rgba(98,191,202,0.30) !important;
    }

    .mobile-menu .nav-started {
      background: #62bfca !important;
      color: #ffffff !important;
      border-color: #62bfca !important;
    }


    /* Post how-it-works CTA row */
    .how-section-redesigned {
      border-bottom: 0;
    }

    .post-how-cta-section {
      padding: 0 0 84px;
      background: var(--soft);
    }

    .post-how-cta-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(190px, 230px));
      gap: 14px;
      justify-content: start;
      align-items: center;
    }

    .post-how-cta-row .primary-btn {
      justify-content: center;
      background: var(--blue-dark);
      color: #ffffff;
      border-color: var(--blue-dark);
      box-shadow: 0 14px 30px rgba(7,31,122,0.18);
    }

    .post-how-cta-row .primary-btn:hover {
      background: #06184a;
      color: #ffffff;
      box-shadow: 0 18px 40px rgba(7,31,122,0.24);
    }

    @media (max-width: 560px) {
      .post-how-cta-section { padding: 0 0 68px; }
      .post-how-cta-row { grid-template-columns: 1fr; }
    }


/* ==== Extracted from get-started.html ==== */
:root {
      --bg: #ffffff;
      --ink: #07111f;
      --muted: #5d6675;
      --soft: #f5f7fa;
      --line: #dfe5ec;
      --blue: #62bfca;
      --blue-dark: #071f7a;
      --navy: #07111f;
      --radius: 22px;
      --max: 1180px;
      --heading-font: "Archivo", Inter, Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.45;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 30;
      background: #ffffff;
      backdrop-filter: none;
      border-bottom: 1px solid rgba(7,17,31,0.08);
    }

    .header-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-size: 1.02rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffffff 0%, #dbe7ff 18%, #62bfca 42%, #06184a 100%);
      box-shadow: 0 10px 30px rgba(98,191,202,0.22);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #354052;
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-cta {
      padding: 10px 16px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 14px 32px rgba(7,31,122,0.24);
    }

    .hero {
      min-height: 86vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #07111f url('iye-fraud-shield-header.jpg') center center / cover no-repeat;
      padding: 130px 0 76px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,8,18,0.76) 0%, rgba(3,8,18,0.58) 48%, rgba(3,8,18,0.44) 100%),
        radial-gradient(circle at 50% 44%, rgba(98,191,202,0.28), transparent 38%);
      z-index: 1;
    }

    .hero-inner {
      width: min(920px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hero-content {
      max-width: 880px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 7px 11px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      color: rgba(255,255,255,0.78);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    h1 {
      max-width: 860px;
      margin: 0 auto;
      font-size: clamp(3.05rem, 7vw, 6.8rem);
      line-height: 0.9;
      letter-spacing: -0.085em;
      font-weight: 900;
    }

    .hero-subheadline {
      margin: 24px auto 0;
      color: rgba(255,255,255,0.82);
      font-size: clamp(1.05rem, 1.8vw, 1.38rem);
      line-height: 1.38;
      max-width: 560px;
      letter-spacing: -0.025em;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .primary-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 19px 0 21px;
      border-radius: 999px;
      color: #07111f;
      background: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 18px 42px rgba(0,0,0,0.24);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.32);
      background: #f7faff;
    }

    .btn-arrow {
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: var(--blue);
      font-size: 0.96rem;
      line-height: 1;
    }

    .secondary-note {
      display: block;
      margin-top: 16px;
      color: rgba(255,255,255,0.68);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .hero-card {
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 90px rgba(0,0,0,0.18);
    }

    .hero-card p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .hero-card strong {
      display: block;
      margin-bottom: 10px;
      color: #fff;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
    }

    section {
      padding: 82px 0;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 16px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 999px;
      background: #f4f7ff;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(98,191,202,0.1);
      flex: 0 0 auto;
    }

    .section-title {
      max-width: 860px;
      margin: 0;
      font-size: clamp(2.15rem, 4.3vw, 4.45rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 930;
    }

    .section-intro {
      max-width: 630px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.58;
      letter-spacing: -0.015em;
      padding-bottom: 2rem;
    }

    .risk-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .risk-card {
      min-height: 300px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .risk-card:hover,
    .metric-card:hover,
    .metric-panel:hover,
    .service-note:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .solution-label {
      color: var(--blue);
      font-weight: 800;
    }

    .risk-card small {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .risk-card h3 {
      margin: 18px 0 0;
      font-size: 1.55rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
      font-weight: 750;
    }

    .risk-card p {
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .intelligence-section {
      background: var(--soft);
    }

    .metric-wrap {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .metric-panel {
      padding: 34px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .metric-panel::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(98,191,202,0.65), transparent 62%);
    }

    .metric-panel h3 {
      position: relative;
      z-index: 2;
      margin: 0;
      max-width: 420px;
      font-size: clamp(2rem, 3vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .metric-panel p {
      position: relative;
      z-index: 2;
      max-width: 390px;
      margin: 28px 0 0;
      color: rgba(255,255,255,0.68);
      font-size: 0.95rem;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .metric-card {
      padding: 24px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 188px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .metric-card span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 650;
      line-height: 1.35;
    }

    .metric-card small {
      display: block;
      margin-top: 12px;
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .metric-card strong {
      display: block;
      margin-top: 24px;
      font-size: clamp(1.8rem, 3vw, 3.05rem);
      letter-spacing: -0.07em;
      line-height: 0.95;
    }

    .protected-section {
      padding-bottom: 96px;
    }

    .sector-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .sector-card {
      padding: 22px;
      min-height: 144px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .sector-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 20px 52px rgba(7,17,31,0.07);
    }

    .sector-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 20px;
      border-radius: 12px;
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      display: grid;
      place-items: center;
      color: var(--blue);
      font-weight: 800;
    }

    .sector-card h3 {
      margin: 0;
      font-size: 1.02rem;
      letter-spacing: -0.03em;
    }

    .sector-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }



    .accent {
      color: var(--blue);
    }

    .hero .accent {
      color: #dbe7ff;
      text-shadow: 0 0 34px rgba(98,191,202,0.35);
    }

    .solution-section,
    .methodology-section {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
      gap: 42px;
      align-items: end;
    }

    .fix-grid,
    .tier-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fix-card,
    .tier-card {
      position: relative;
      min-height: 286px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      overflow: hidden;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .fix-card:hover,
    .tier-card:hover,
    .ecosystem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .fix-number {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 800;
    }

    .fix-card small,
    .tier-tag {
      color: var(--blue);
      font-weight: 760;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .fix-card h3,
    .tier-card h3 {
      margin: 68px 0 14px;
      font-size: 1.52rem;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .fix-card p,
    .tier-card p,
    .ecosystem-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.58;
    }

    .ecosystem-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 28px;
      overflow: hidden;
    }

    .ecosystem-card {
      min-height: 220px;
      padding: 26px;
      background: #ffffff;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .ecosystem-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 15px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-size: 0.76rem;
      font-weight: 800;
    }

    .ecosystem-card h3 {
      margin: 0 0 10px;
      font-size: 1rem;
      line-height: 1.22;
      letter-spacing: -0.025em;
    }

    .service-note {
      margin-top: 28px;
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(220px, 0.32fr);
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      padding: 14px 14px 14px 24px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .service-note p {
      max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .service-note .primary-btn {
      width: 100%;
      justify-content: center;
      padding-left: 26px;
      padding-right: 20px;
    }

    .service-note strong {
      color: var(--ink);
    }

    .tier-card.featured {
      border-color: rgba(98,191,202,0.26);
      background: linear-gradient(180deg, #ffffff, #f7faff);
    }

    .tier-card.exclusive {
      color: #ffffff;
      background: var(--navy);
      border-color: rgba(7,17,31,0.2);
    }

    .tier-card.exclusive p,
    .tier-card.exclusive li,
    .tier-card.exclusive .tier-price span,
    .tier-card.exclusive .tier-credits {
      color: rgba(255,255,255,0.66);
    }

    .tier-card.exclusive .tier-tag {
      color: #dbe7ff;
    }

    .tier-price {
      margin: 18px 0 4px;
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 0.95;
      letter-spacing: -0.07em;
      font-weight: 760;
    }

    .tier-price span {
      color: var(--muted);
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      font-weight: 650;
    }

    .tier-credits {
      margin-bottom: 20px;
      color: #354052;
      font-size: 0.82rem;
      font-weight: 760;
    }

    .tier-card ul {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 10px;
    }

    .tier-card li {
      color: #435164;
      font-size: 0.84rem;
      line-height: 1.4;
    }

    .tier-card li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--blue);
      font-weight: 800;
    }

    .get-protected-section {
      padding: 104px 0;
      color: #ffffff;
      text-align: center;
      background: radial-gradient(circle at 50% 0%, rgba(98,191,202,0.34), transparent 34%), var(--navy);
    }

    .get-protected-section .section-kicker {
      color: #dbe7ff;
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
    }

    .get-protected-section .section-kicker::before {
      background: #dbe7ff;
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
    }

    .get-protected-section h2 {
      max-width: 900px;
      margin: 0 auto;
      font-size: clamp(2.45rem, 5vw, 5.3rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
      font-weight: 760;
    }

    .get-protected-section p {
      max-width: 700px;
      margin: 24px auto 34px;
      color: rgba(255,255,255,0.68);
      font-size: 1rem;
      line-height: 1.7;
    }

    .get-protected-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .closing-section {
      padding: 90px 0;
      background: var(--navy);
      color: #fff;
    }

    .closing-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .closing-section h2 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(2.2rem, 4vw, 4.6rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
    }

    .closing-section p {
      margin: 18px 0 0;
      max-width: 520px;
      color: rgba(255,255,255,0.65);
      font-size: 0.98rem;
    }

    footer {
      padding: 30px 0;
      color: #667085;
      background: #ffffff;
      border-top: 1px solid var(--line);
      font-size: 0.84rem;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }



    /* Chunkier IYE-style heading typography */
    h1,
    .section-title,
    .metric-panel h3,
    .risk-card h3,
    .sector-card h3,
    .fix-card h3,
    .tier-card h3,
    .ecosystem-card h3,
    .get-protected-section h2,
    .tier-price {
      font-family: var(--heading-font);
      font-weight: 900;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    h1 {
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .section-title {
      font-weight: 900;
      line-height: 0.94;
      letter-spacing: -0.058em;
    }

    .metric-panel h3,
    .get-protected-section h2 {
      font-weight: 900;
      letter-spacing: -0.058em;
    }

    .risk-card h3,
    .fix-card h3,
    .tier-card h3 {
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .ecosystem-card h3,
    .sector-card h3 {
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    @media (max-width: 940px) {
      nav {
        display: none;
      }

      .hero-inner,
      .metric-wrap,
      .closing-inner {
        grid-template-columns: 1fr;
      }

      .risk-grid,
      .metric-grid {
        grid-template-columns: 1fr;
      }

      .sector-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-card {
        max-width: 520px;
      }

      .section-head,
      .fix-grid,
      .tier-grid {
        grid-template-columns: 1fr;
      }

      .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-note {
        align-items: flex-start;
        border-radius: 24px;
        flex-direction: column;
      }

    }

    @media (max-width: 560px) {
      .header-inner,
      .container,
      .hero-inner,
      .footer-inner {
        width: min(100% - 28px, var(--max));
      }

      section {
        padding: 64px 0;
      }

      .hero {
        min-height: auto;
        padding: 116px 0 62px;
      }

      h1 {
        font-size: clamp(3rem, 17vw, 4.4rem);
      }

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

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

      .get-protected-section {
        padding: 76px 0;
      }

    }


    /* Refinement overrides */
    .eyebrow {
      margin-left: auto;
      margin-right: auto;
    }

    .sector-card,
    .ecosystem-card,
    .fix-card,
    .tier-card,
    .risk-card,
    .metric-card,
    .metric-panel,
    .service-note {
      will-change: transform;
    }

    .ecosystem-grid {
      overflow: visible;
      gap: 14px;
      background: transparent;
      border: 0;
    }

    .ecosystem-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.035);
    }

    @media (max-width: 940px) {
      .service-note {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 22px;
      }
    }
  

    /* Version 4 refinements */
    .header-inner { height: 64px; }
    .brand-mark { width: 30px; height: 30px; }
    .hero { min-height: 78vh; padding: 112px 0 66px; }
    .hero-actions { margin-top: 32px; }
    .primary-btn { background: var(--blue-dark); color: #ffffff; border-color: var(--blue-dark); }
    .primary-btn:hover { background: #06184a; color: #ffffff; }
    .hero .primary-btn { background: #ffffff; color: var(--ink); border-color: rgba(255,255,255,0.72); }
    .hero .primary-btn:hover { background: #f7faff; color: var(--ink); }
    .hero .accent { color: var(--blue); text-shadow: 0 0 34px rgba(98,191,202,0.45); }
    .risk-grid.clean-start { margin-top: 0; }
    .risk-card small.is-hidden { display:none; }
    .metric-wrap.v4-metrics { grid-template-columns: 1fr; }
    .metric-grid.metric-grid-four { grid-template-columns: repeat(4, 1fr); }
    .fine-banner {
      margin-top: 18px;
      padding: 28px 30px;
      border-radius: 28px;
      background: var(--navy);
      color: #ffffff;
      box-shadow: 0 22px 58px rgba(7,17,31,0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }
    .fine-banner:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(7,17,31,0.18); }
    .fine-banner strong { font-family: var(--heading-font); font-size: clamp(1.5rem, 3vw, 2.75rem); line-height: 1.1; letter-spacing: -0.055em; }
    .fine-banner span { color: rgba(255,255,255,0.7); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
    .solution-modern { background: #ffffff; position: relative; overflow: hidden; }
    .solution-modern::before { content:""; position:absolute; right:-160px; top:60px; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(98,191,202,0.12), transparent 62%); pointer-events:none; }
    .solution-centre { text-align: center; max-width: 920px; margin: 0 auto 46px; position:relative; z-index:1; }
    .solution-centre .section-title { margin: 0 auto; }
    .solution-subheading { max-width: 760px; margin: 20px auto 0; color: var(--muted); font-size: 1.12rem; line-height: 1.6; letter-spacing: -0.02em; }
    .solution-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position:relative; z-index:1; }
    .solution-copy-card, .first-step-copy, .form-section-block, .report-card, .quote-block {
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }
    .solution-copy-card:hover, .first-step-copy:hover, .form-section-block:hover, .report-card:hover, .quote-block:hover { transform: translateY(-4px); border-color: rgba(98,191,202,0.35); box-shadow: 0 24px 64px rgba(7,17,31,0.08); }
    .solution-copy-card { min-height: 360px; padding: 34px; display:flex; flex-direction:column; justify-content:space-between; }
    .solution-copy-card p { margin:0 0 18px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
    .solution-copy-card .statement { margin: 18px 0 0; color: var(--ink); font-family: var(--heading-font); font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.03; letter-spacing: -0.045em; font-weight: 900; }
    .first-step-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .first-step-grid { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: stretch; }
    .first-step-image { min-height: 470px; border-radius: 30px; background: linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.34)), url('iye-fraud-shield-header.jpg') center center / cover no-repeat; box-shadow: 0 24px 64px rgba(7,17,31,0.1); position: relative; overflow: hidden; }
    .first-step-image::after { content:"Business overview"; position:absolute; left:28px; bottom:28px; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,0.88); color:var(--ink); font-size:0.78rem; font-weight:850; letter-spacing:0.08em; text-transform:uppercase; }
    .first-step-copy { padding: 38px; display:flex; flex-direction:column; justify-content:center; }
    .first-step-copy h2 { margin:0; font-family:var(--heading-font); font-size:clamp(2.2rem, 4vw, 4.4rem); line-height:0.96; letter-spacing:-0.058em; font-weight:900; }
    .first-step-copy p { margin: 24px 0 0; color: var(--muted); font-size:1rem; line-height:1.72; }
    .business-form-section { background:#ffffff; }
    .business-form { margin-top: 34px; display: grid; gap: 18px; }
    .form-section-block { padding: 26px; }
    .form-section-block h3 { margin:0 0 20px; font-family: var(--heading-font); font-size: 1.35rem; letter-spacing: -0.035em; }
    .form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .form-field { display:grid; gap: 8px; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label { color:#354052; font-size:0.82rem; font-weight:750; }
    .form-field input, .form-field textarea, .form-field select {
      width:100%; border:1px solid var(--line); border-radius:14px; padding:13px 14px; font: inherit; font-size:0.92rem; color:var(--ink); background:#fbfdff; outline:none; transition:border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }
    .form-field textarea { min-height: 116px; resize: vertical; }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(98,191,202,0.48); box-shadow: 0 0 0 4px rgba(98,191,202,0.08); background:#fff; }
    .consent-box { display:flex; gap:12px; align-items:flex-start; padding:20px; border:1px solid var(--line); border-radius:18px; background:#f7faff; color:var(--muted); font-size:0.88rem; line-height:1.55; }
    .consent-box input { margin-top: 4px; accent-color: var(--blue-dark); }
    .form-actions { display:flex; justify-content:flex-end; gap:14px; flex-wrap:wrap; }
    .reports-section { background: var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
    .reports-grid { margin-top: 38px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .report-card { padding: 30px; min-height: 250px; display:flex; flex-direction:column; justify-content:space-between; }
    .report-card h3 { margin:0 0 8px; font-family:var(--heading-font); font-size:1.4rem; line-height:1; letter-spacing:-0.05em; }
    .report-card p { margin:0; color:var(--muted); font-weight:750; }
    .download-btn { display:inline-flex; justify-content:center; align-items:center; gap:10px; width:100%; min-height:48px; padding:0 18px; border-radius:999px; background:var(--blue-dark); color:#fff; font-size:0.86rem; font-weight:800; box-shadow:0 12px 28px rgba(7,31,122,0.16); transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
    .download-btn:hover { transform: translateY(-2px); background:#06184a; box-shadow:0 16px 36px rgba(7,31,122,0.22); }
    .quote-block { margin: 26px auto 0; padding: 30px; text-align:center; font-family:var(--heading-font); font-size:clamp(1.5rem, 3vw, 2.65rem); line-height:1.05; letter-spacing:-0.05em; font-weight:900; color:var(--ink); }
    .report-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:26px; }
    .report-actions .primary-btn { min-width: 180px; justify-content:center; }
    .ecosystem-section-v4 { background:#ffffff; }
    .get-protected-section .primary-btn { background:#ffffff; color:var(--ink); border-color:#ffffff; }
    .get-protected-section .primary-btn:hover { background:#f7faff; color:var(--ink); }
    .solution-copy-card, .form-section-block, .report-card, .quote-block, .fine-banner, .first-step-copy { will-change: transform; }
    @media (max-width: 940px) {
      .metric-grid.metric-grid-four, .solution-two-col, .first-step-grid, .reports-grid { grid-template-columns: 1fr; }
      .first-step-image { min-height: 340px; }
    }
    @media (max-width: 560px) {
      .header-inner { height: 60px; }
      .hero { padding: 102px 0 58px; }
      .form-grid { grid-template-columns: 1fr; }
      .fine-banner { align-items:flex-start; flex-direction:column; border-radius:24px; padding:24px; }
      .solution-copy-card, .first-step-copy, .form-section-block, .report-card { padding:24px; border-radius:24px; }
    }


    /* Version 4.1 WordPress navigation and footer */
    .site-header {
      background: #ffffff;
    }

    .header-inner {
      height: 68px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #354052;
      font-size: 0.86rem;
      font-weight: 650;
    }

    .desktop-nav a:not(.nav-cta) {
      transition: color 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover {
      color: var(--blue-dark);
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid var(--blue-dark);
      border-radius: 999px;
      color: #ffffff !important;
      background: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(7,31,122,0.18);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      font-weight: 800;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #06184a;
      box-shadow: 0 16px 34px rgba(7,31,122,0.26);
    }

    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(7,17,31,0.12);
      background: #ffffff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      box-shadow: 0 10px 24px rgba(7,17,31,0.06);
    }

    .mobile-menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--ink);
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      z-index: 29;
      padding: 16px 20px 22px;
      background: #ffffff;
      border-bottom: 1px solid rgba(7,17,31,0.08);
      box-shadow: 0 24px 54px rgba(7,17,31,0.09);
    }

    .mobile-menu.open {
      display: grid;
      gap: 6px;
    }

    .mobile-menu a {
      padding: 14px 12px;
      border-radius: 14px;
      color: #354052;
      font-weight: 760;
    }

    .mobile-menu a:hover {
      background: var(--soft);
      color: var(--ink);
    }

    .mobile-menu .nav-cta {
      margin-top: 8px;
      text-align: center;
      justify-content: center;
      display: inline-flex;
    }

    .footer-v3{
      background:#07111f;
      color:#fff;
      padding:58px 0 28px;
    }

    .footer-v3 .footgrid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr 1fr;
      gap:64px;
      padding-bottom:58px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }

    .footer-v3 .footer-brand{
      font-family: var(--heading-font);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
      margin-bottom:16px;
    }

    .footer-v3 .footer-brand span{
      color:#78d7df;
      font-size:.75em;
    }

    .footer-v3 p,
    .footer-v3 a{
      color:rgba(255,255,255,.56);
      font-size:13px;
      line-height:1.85;
    }

    .footer-v3 h4{
      font-size:11px;
      font-weight:800;
      letter-spacing:.24em;
      text-transform:uppercase;
      color:rgba(255,255,255,.34);
      margin:0 0 18px;
    }

    .footer-v3 a{
      display:block;
      margin:11px 0;
      text-decoration:none;
      transition:color .18s ease;
    }

    .footer-v3 a:hover{
      color:#fff;
    }

    .footer-v3 .bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding-top:24px;
      color:rgba(255,255,255,.28);
      font-size:12px;
    }

    .placeholder-hero {
      padding: 158px 0 96px;
      background: radial-gradient(circle at 78% 12%, rgba(98,191,202,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .placeholder-hero .section-title {
      max-width: 760px;
    }

    .placeholder-panel {
      margin-top: 34px;
      max-width: 760px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #ffffff;
      box-shadow: 0 18px 48px rgba(7,17,31,0.045);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .placeholder-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    @media(max-width:1050px){
      .footer-v3 .footgrid{grid-template-columns:1fr 1fr;gap:36px;}
    }

    @media (max-width: 940px) {
      nav.desktop-nav {
        display: none !important;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }
    }

    @media(max-width:640px){
      .footer-v3 .footgrid{grid-template-columns:1fr;}
      .footer-v3 .bottom{flex-direction:column;align-items:flex-start;}
      .header-inner { height: 64px; }
      .mobile-menu { top: 64px; }
      .placeholder-hero { padding: 132px 0 76px; }
    }


    /* Pricing page sections */
    .pricing-hero {
      padding: 148px 0 86px;
      background: radial-gradient(circle at 76% 8%, rgba(98,191,202,0.13), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      border-bottom: 1px solid var(--line);
    }

    .pricing-hero .section-title {
      max-width: 780px;
    }

    .pricing-hero .section-intro {
      max-width: 720px;
      font-size: 1.05rem;
    }

    .pricing-section {
      padding: 86px 0;
    }

    .pricing-section.soft-pricing {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .pricing-plan {
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
      gap: 28px;
      align-items: stretch;
    }

    .pricing-plan + .pricing-plan {
      margin-top: 28px;
    }

    .plan-content,
    .investment-card,
    .how-card {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.04);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .plan-content:hover,
    .investment-card:hover,
    .how-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .plan-content {
      padding: 34px;
    }

    .plan-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 20px;
      padding: 8px 12px;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(98,191,202,0.18);
      border-radius: 999px;
      background: #f4f7ff;
    }

    .plan-label::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(98,191,202,0.1);
    }

    .plan-content h2 {
      margin: 0 0 18px;
      max-width: 760px;
      font-family: var(--heading-font);
      font-size: clamp(2.1rem, 4vw, 4.2rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 900;
    }

    .plan-subtitle {
      margin: -6px 0 22px;
      color: var(--blue-dark);
      font-size: 1rem;
      line-height: 1.4;
      font-weight: 850;
      letter-spacing: -0.025em;
    }

    .plan-content p {
      max-width: 790px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.72;
      letter-spacing: -0.01em;
    }

    .investment-card {
      position: sticky;
      top: 96px;
      align-self: start;
      padding: 28px;
      color: #ffffff;
      background: radial-gradient(circle at 82% 12%, rgba(98,191,202,0.55), transparent 34%), var(--navy);
      border-color: rgba(7,17,31,0.14);
      overflow: hidden;
    }

    .investment-card h3 {
      margin: 0 0 22px;
      color: rgba(255,255,255,0.7);
      font-size: 0.76rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 850;
    }

    .investment-price {
      display: block;
      margin: 0 0 8px;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3.4vw, 3rem);
      line-height: 0.96;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .investment-divider {
      margin: 18px 0;
      height: 1px;
      background: rgba(255,255,255,0.16);
    }

    .investment-note {
      margin: 18px 0 0;
      color: rgba(255,255,255,0.62);
      font-size: 0.9rem;
      line-height: 1.58;
    }

    .enterprise-card {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
      gap: 28px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: 34px;
      box-shadow: 0 18px 48px rgba(7,17,31,0.04);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .enterprise-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98,191,202,0.35);
      box-shadow: 0 22px 58px rgba(7,17,31,0.075);
    }

    .enterprise-card h2 {
      margin: 0 0 12px;
      font-family: var(--heading-font);
      font-size: clamp(2.1rem, 4vw, 4.2rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      font-weight: 900;
    }

    .enterprise-card p {
      max-width: 820px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.72;
    }

    .bespoke-pill {
      align-self: start;
      justify-self: stretch;
      padding: 28px;
      border-radius: 26px;
      color: #ffffff;
      background: var(--navy);
      box-shadow: 0 18px 44px rgba(7,17,31,0.12);
    }

    .bespoke-pill span {
      display: block;
      color: rgba(255,255,255,0.58);
      font-size: 0.76rem;
      font-weight: 850;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .bespoke-pill strong {
      display: block;
      font-family: var(--heading-font);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .how-it-works {
      background: #ffffff;
    }

    .how-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .how-card {
      padding: 26px;
      min-height: 230px;
    }

    .how-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border-radius: 14px;
      color: var(--blue);
      background: linear-gradient(145deg, #eef3ff, #ffffff);
      border: 1px solid #dbe5ff;
      font-weight: 900;
    }

    .how-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.62;
    }

    .pricing-cta-row {
      margin-top: 38px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pricing-cta-row .primary-btn {
      min-width: 190px;
      justify-content: center;
      background: var(--blue-dark);
      color: #ffffff;
      border-color: var(--blue-dark);
      box-shadow: 0 14px 30px rgba(7,31,122,0.18);
    }

    .pricing-cta-row .primary-btn:hover {
      background: #06184a;
      box-shadow: 0 18px 40px rgba(7,31,122,0.24);
    }

    .pricing-cta-row .primary-btn.secondary {
      background: #ffffff;
      color: var(--ink);
      border-color: var(--line);
      box-shadow: 0 14px 30px rgba(7,17,31,0.06);
    }

    @media (max-width: 940px) {
      .pricing-plan,
      .enterprise-card,
      .how-grid {
        grid-template-columns: 1fr;
      }
      .investment-card {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 560px) {
      .pricing-hero { padding: 128px 0 70px; }
      .pricing-section { padding: 68px 0; }
      .plan-content,
      .investment-card,
      .enterprise-card,
      .bespoke-pill,
      .how-card { padding: 24px; border-radius: 24px; }
    }

  
    /* Global navigation and accent refinement */
    .desktop-nav {
      font-size: 0.94rem;
    }

    .desktop-nav a:not(.nav-cta) {
      position: relative;
      padding-bottom: 8px;
    }

    .desktop-nav a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 2px;
      border-radius: 999px;
      background: #62bfca;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 180ms ease;
    }

    .desktop-nav a:not(.nav-cta):hover::after,
    .desktop-nav a:not(.nav-cta)[aria-current="page"]::after {
      transform: scaleX(1);
    }

    .desktop-nav a:not(.nav-cta):hover,
    .desktop-nav a:not(.nav-cta)[aria-current="page"] {
      color: var(--ink);
    }

    .nav-started {
      background: #62bfca !important;
      border-color: #62bfca !important;
      color: #ffffff !important;
      box-shadow: 0 10px 24px rgba(98,191,202,0.22) !important;
    }

    .nav-started:hover {
      background: #4eacb6 !important;
      border-color: #4eacb6 !important;
      box-shadow: 0 16px 34px rgba(98,191,202,0.30) !important;
    }

    .mobile-menu .nav-started {
      background: #62bfca !important;
      color: #ffffff !important;
      border-color: #62bfca !important;
    }


/* ==== WordPress theme responsive layer ==== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img, video { max-width: 100%; }
.logo-placeholder {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #dbe7ff 18%, #62bfca 42%, #06184a 100%);
  box-shadow: 0 10px 30px rgba(98,191,202,0.22);
  flex: 0 0 auto;
}

/* Keep hero video resilient with fallback image */
.hero {
  background: #07111f url('iye-fraud-shield-header.jpg') center center / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero > .container,
.hero-inner { position: relative; z-index: 2; }

/* Desktop/laptop fluidity */
.container,
.header-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
}

/* Header: burger from tablet down */
@media (max-width: 1100px) {
  nav.desktop-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-flex !important; }
  .header-inner { height: 64px; }
  .mobile-menu { top: 64px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .pricing-hero-grid,
  .pricing-matrix-head,
  .pricing-cards,
  .drawer-head,
  .drawer-benefit-grid,
  .how-strip,
  .pricing-plan,
  .enterprise-card,
  .how-grid,
  .about-clean-row,
  .about-hero-grid,
  .about-highlight-grid,
  .about-method-grid,
  .first-step-grid,
  .solution-two-col,
  .section-head,
  .fix-grid,
  .tier-grid,
  .risk-grid,
  .metric-wrap,
  .metric-grid,
  .metric-grid.metric-grid-four,
  .reports-grid,
  .ecosystem-grid,
  .sector-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-card,
  .drawer-panel,
  .drawer-snapshot,
  .drawer-benefit,
  .how-step,
  .form-section-block,
  .risk-card,
  .metric-card,
  .report-card,
  .ecosystem-card,
  .sector-card { min-height: auto; }
  .investment-card { position: relative; top: auto; }
  .hero { min-height: 72vh; }
}

/* Mobile */
@media (max-width: 640px) {
  .container,
  .header-inner,
  .hero-inner,
  .footer-inner { width: min(100% - 28px, var(--max)); }
  section { padding: 60px 0; }
  .hero { min-height: auto; padding: 108px 0 68px; }
  .pricing-redesign-hero,
  .pricing-hero,
  .about-clean-hero,
  .faq-hero,
  .placeholder-hero { padding: 116px 0 62px; }
  h1,
  .section-title,
  .about-clean-title { font-size: clamp(2.45rem, 13vw, 4rem) !important; }
  h2,
  .about-clean-h2,
  .get-protected-section h2 { font-size: clamp(2rem, 10vw, 3.4rem) !important; }
  .form-grid { grid-template-columns: 1fr !important; }
  .form-field.full { grid-column: auto; }
  .fine-banner,
  .service-note,
  .consent-box { border-radius: 24px; }
  .fine-banner { flex-direction: column; align-items: flex-start; }
  .primary-btn,
  .download-btn,
  .start-plan-btn,
  .reveal-plan-btn { width: 100%; }
  .hero-actions,
  .get-protected-actions,
  .report-actions,
  .pricing-cta-row,
  .form-actions { align-items: stretch; }
}

/* Footer one-column layout and socket */
.footer-v3 .footgrid {
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  max-width: 760px;
}
.footer-v3 .footer-column-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.footer-v3 .bottom,
.footer-v3 .footer-socket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255,255,255,.28);
  font-size: 12px;
}
.footer-v3 .footer-socket nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.footer-v3 .footer-socket a {
  margin: 0;
  display: inline;
}
@media(max-width:760px){
  .footer-v3 .footer-column-links { grid-template-columns: 1fr; }
  .footer-v3 .footer-socket { flex-direction: column; align-items: flex-start; }
}

/* ==== WordPress template availability and responsive fixes v1.1 ==== */
@media (max-width: 1024px) {
  nav.desktop-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-flex !important; }
}

/* Keep footer as a genuine one-column layout across all viewports. */
.footer-v3 .footgrid,
.footer-v3 .footer-column-links {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  max-width: 760px;
}
.footer-v3 .footer-column-links > div {
  min-width: 0;
}
.footer-v3 .footer-socket {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 28px;
}


/* ==== Final desktop footer + heading font corrections v1.2 ==== */
/* Restore multi-column footer on desktop/laptop; retain single column only on mobile. */
.footer-v3 .footgrid {
  display: grid !important;
  grid-template-columns: minmax(260px, 2fr) minmax(0, 3fr) !important;
  gap: 64px !important;
  max-width: none !important;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-v3 .footer-column-links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 48px !important;
  max-width: none !important;
}
.footer-v3 .footer-column-links > div { min-width: 0; }
.footer-v3 .footer-socket {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 0;
  margin-top: 0;
  padding-top: 24px;
}
.footer-v3 .footer-socket nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-v3 .footer-socket a { margin: 0; display: inline; }

@media (max-width: 1050px) {
  .footer-v3 .footgrid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .footer-v3 .footer-column-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 36px !important;
  }
}
@media (max-width: 640px) {
  .footer-v3 .footgrid,
  .footer-v3 .footer-column-links {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-v3 .footer-socket {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* Restore refined heading weight from the approved page examples. */
h1,
h2,
.section-title,
.first-step-copy h2,
.solution-text-left h2,
.plan-content h2,
.enterprise-card h2,
.pricing-card h2,
.get-protected-section h2,
.about-clean-title,
.about-clean-h2,
.drawer-head h2,
.drawer-snapshot h3 {
  font-family: var(--heading-font);
  font-weight: 800 !important;
}

/* Get Started/Pricing-style hero H1 alignment with the approved About hero font treatment. */
.pricing-hero h1.section-title,
.placeholder-hero h1.section-title,
.faqs-hero h1.section-title,
.about-clean-hero h1.about-clean-title {
  font-family: var(--heading-font);
  font-size: clamp(2.65rem, 5vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
  font-weight: 700 !important;
}

/* Keep previously approved metric-card strong colour untouched. */

/* ==== Footer column width correction + approved heading typography v1.3 ==== */
/* Desktop/laptop footer: brand column remains compact; link columns retain equal width. */
.footer-v3 .footgrid {
  display: grid !important;
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 64px !important;
  align-items: start !important;
  max-width: none !important;
  padding-bottom: 58px !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}
.footer-v3 .footgrid > div:first-child {
  max-width: 300px !important;
}
.footer-v3 .footer-column-links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 64px !important;
  max-width: none !important;
  width: 100% !important;
}
.footer-v3 .footer-column-links > div { min-width: 0 !important; }
.footer-v3 .footer-socket {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  border-top: 0 !important;
  margin-top: 0 !important;
  padding-top: 24px !important;
}
.footer-v3 .footer-socket nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}
.footer-v3 .footer-socket a {
  margin: 0 !important;
  display: inline !important;
}

/* Tablet: keep footer multi-column, but reduce density. */
@media (max-width: 1050px) {
  .footer-v3 .footgrid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .footer-v3 .footgrid > div:first-child {
    max-width: 460px !important;
  }
  .footer-v3 .footer-column-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 36px !important;
  }
}

/* Mobile only: one-column footer. */
@media (max-width: 640px) {
  .footer-v3 .footgrid,
  .footer-v3 .footer-column-links {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-v3 .footgrid > div:first-child {
    max-width: none !important;
  }
  .footer-v3 .footer-socket {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* Restore approved heading weight from the attached page examples. */
h1,
h2,
.section-title,
.first-step-copy h2,
.solution-text-left h2,
.plan-content h2,
.enterprise-card h2,
.pricing-card h2,
.get-protected-section h2,
.about-clean-title,
.about-clean-h2,
.drawer-head h2,
.drawer-snapshot h3 {
  font-family: var(--heading-font) !important;
  font-weight: 800 !important;
}

.pricing-hero h1.section-title,
.placeholder-hero h1.section-title,
.faqs-hero h1.section-title,
.about-clean-hero h1.about-clean-title {
  font-family: var(--heading-font) !important;
  font-size: clamp(2.65rem, 5vw, 5.35rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.072em !important;
  font-weight: 700 !important;
}

/* Pricing drawer initial collapsed state */
.pricing-intelligence-drawer.is-collapsed {
  display: none;
}



/* Header logo depth and containment fix */
.site-header .header-inner {
  height: 96px !important;
}

.site-header .brand img,
.site-header .brand .site-logo,
.site-header .site-logo,
.site-header .custom-logo,
.site-header .custom-logo-link img,
.site-header .brand-logo img,
.site-header .logo img,
.site-header .header-logo img {
  width: 180px !important;
  height: auto !important;
  max-width: 180px !important;
  max-height: 88px !important;
  display: block;
  object-fit: contain;
}

.site-header .brand {
  min-width: 0;
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .site-header .header-inner {
    height: 76px !important;
  }

  .mobile-menu {
    top: 76px !important;
  }

  .site-header .brand img,
  .site-header .brand .site-logo,
  .site-header .site-logo,
  .site-header .custom-logo,
  .site-header .custom-logo-link img,
  .site-header .brand-logo img,
  .site-header .logo img,
  .site-header .header-logo img {
    width: 150px !important;
    max-width: 150px !important;
    max-height: 68px !important;
  }
}

@media (max-width: 640px) {
  .site-header .header-inner {
    height: 68px !important;
  }

  .mobile-menu {
    top: 68px !important;
  }

  .site-header .brand img,
  .site-header .brand .site-logo,
  .site-header .site-logo,
  .site-header .custom-logo,
  .site-header .custom-logo-link img,
  .site-header .brand-logo img,
  .site-header .logo img,
  .site-header .header-logo img {
    width: 132px !important;
    max-width: 132px !important;
    max-height: 60px !important;
  }
}

/* Protection page targeted restoration: cards, credit badges, Cobra section */
.protection-page-template .about-clean-hero .about-clean-wrap {
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.protection-page-template .about-clean-hero .about-clean-title,
.protection-page-template .about-clean-hero .about-clean-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.protection-page-template .protection-section-head {
  max-width: 920px;
  margin: 0 0 40px;
  text-align: left;
}

.protection-page-template .protection-section-head .section-title,
.protection-page-template .protection-section-head p:not(.section-kicker) {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.protection-page-template .protection-section-head p:not(.section-kicker) {
  max-width: 850px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.protection-page-template .protection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.protection-page-template .protection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7,17,31,0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.protection-page-template .protection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(98,191,202,0.35);
  box-shadow: 0 24px 64px rgba(7,17,31,0.08);
}

.protection-page-template .protection-card-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.protection-page-template .protection-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, #eef3ff, #ffffff);
  border: 1px solid #dbe5ff;
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.protection-page-template .protection-card h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 760;
  color: var(--ink);
}

.protection-page-template .protection-card-head p {
  margin: 14px 0 0 !important;
  padding-bottom: 0 !important;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.protection-page-template .protection-cost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #f4f7ff;
  border: 1px solid rgba(98,191,202,0.24);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .protection-card-head {
    margin-bottom: 25px;
  }

  .protection-card .protection-cost {
    margin-bottom: 18px;
  }
}

.protection-page-template .protection-reveal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border: 1px solid var(--blue-dark);
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(7,31,122,0.16);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.protection-page-template .protection-reveal-btn:hover {
  transform: translateY(-2px);
  background: #06184a;
  box-shadow: 0 16px 36px rgba(7,31,122,0.22);
}

.protection-page-template .protection-reveal-btn span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  line-height: 1;
}

.protection-page-template .protection-detail[hidden] {
  display: none;
}

.protection-page-template .protection-detail {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.protection-page-template .protection-detail-inner h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.protection-page-template .protection-detail-inner ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.protection-page-template .protection-detail-inner li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.protection-page-template .protection-detail-inner li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

.protection-page-template .protection-add-on {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #f7faff;
  border: 1px solid rgba(98,191,202,0.2);
}

.protection-page-template .protection-add-on strong {
  display: block;
  color: var(--ink);
  font-weight: 850;
  margin-bottom: 6px;
}

.protection-page-template .protection-add-on p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.protection-page-template .protection-grid > .report-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.protection-page-template .protection-cobra-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.78), rgba(7,17,31,0.88)),
    url('/wp-content/iye-secure-uploads/cobra-ai-bg.jpeg') center center / cover no-repeat;
}

.protection-page-template .protection-cobra-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(98,191,202,0.32), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(7,31,122,0.34), transparent 34%);
  pointer-events: none;
}

.protection-page-template .protection-cobra-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.protection-page-template .protection-cobra-copy,
.protection-page-template .protection-cobra-card {
  min-width: 0;
}

.protection-page-template .protection-cobra-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.protection-page-template .protection-cobra-copy h2 {
  margin: 0;
  max-width: 620px;
  font-family: var(--heading-font);
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 760;
  color: #ffffff;
}

.protection-page-template .protection-cobra-copy .accent,
.protection-page-template .protection-cobra-card .accent {
  color: var(--blue);
}

.protection-page-template .protection-cobra-lead {
  margin: 28px 0 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--blue);
  max-width: 620px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.12rem, 1.75vw, 1.42rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.protection-page-template .protection-cobra-copy p:not(.protection-cobra-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.protection-page-template .protection-cobra-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
}

.protection-page-template .protection-cobra-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto 30px;
}

.protection-page-template .protection-cobra-card h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 760;
  color: #ffffff;
}

.protection-page-template .protection-cobra-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 0.96rem;
  line-height: 1.65;
}

.protection-page-template .protection-cobra-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.protection-page-template .protection-cobra-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 940px) {
  .protection-page-template .protection-grid,
  .protection-page-template .protection-cobra-grid {
    grid-template-columns: 1fr;
  }

  .protection-page-template .protection-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .protection-page-template .protection-card {
    padding: 22px;
    border-radius: 24px;
  }

  .protection-page-template .protection-card-head {
    grid-template-columns: 1fr;
  }

  .protection-page-template .protection-cobra-section {
    padding: 76px 0;
  }

  .protection-page-template .protection-cobra-card {
    padding: 24px;
    border-radius: 24px;
  }
}


/* IYE Fraud Shield targeted refinements - risk cards, blockquotes, metric labels and buttons */
#risk .risk-card {
  border: 2px solid #62BFCA;
}

#risk .risk-card:hover {
  border-color: #cfd6df;
}

#risk .risk-card .risk-card-quote {
  margin: 24px 0 0;
  padding: 0 0 0 18px;
  border-left: 4px solid #62BFCA;
  color: #62bfca;
  font-weight: 800;
  font-style: italic;
  line-height: 1.28;
  font-size: 1.2rem !important;
}

#risk .risk-card p {
  margin-top: 24px;
}

#intelligence .metric-card small {
  font-size: 0.88rem;
  font-weight: 900;
}

#solution .solution-feature-quote {
  margin: 22px 0 0;
  padding: 0 0 0 18px;
  border-left: 4px solid #62BFCA;
  color: #000000;
  font-weight: 800;
  font-style: italic;
  line-height: 1.22;
  font-size: 1.4rem !important;
}

.primary-btn,
.nav-cta,
.nav-started,
.download-btn,
.first-step-actions .primary-btn,
.report-actions .primary-btn,
.pricing-button,
.pricing-card-button,
.pricing-drawer-button,
.drawer-cta,
.button,
button[type="submit"],
input[type="submit"] {
  background: #62BFCA;
  border-color: #62BFCA;
}

/* Final correction: site-wide H2/title scale, front-page split imagery and button colour restoration */
h2,
h2.section-title,
.section-title:not(h1),
.about-clean-h2,
.get-protected-section h2,
.closing-section h2,
.solution-text-left h2,
.first-step-copy h2,
.plan-content h2,
.enterprise-card h2,
.pricing-card h2,
.drawer-head h2,
.pricing-intelligence-drawer h2,
.drawer-snapshot h2,
.protection-hero h2,
.protection-page-template .protection-hero h2,
.protection-page-template .protection-cobra-copy h2,
.cobra-section h2,
.cobra-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.85rem) !important;
}

#solution .first-step-image.solution-image-right,
#solution .solution-image-right {
  min-height: 470px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.14)),
    url('/wp-content/iye-secure-uploads/iye-fraud-shield-solution.jpg') center center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(7,17,31,0.1);
  position: relative;
  overflow: hidden;
}

#business-overview .first-step-image {
  min-height: 470px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.14)),
    url('/wp-content/iye-secure-uploads/iye-fraud-shield-protection.jpg') center center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(7,17,31,0.1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 940px) {
  #solution .first-step-image.solution-image-right,
  #solution .solution-image-right,
  #business-overview .first-step-image {
    min-height: 340px;
  }
}

.primary-btn,
.nav-cta,
.nav-started,
.download-btn,
.first-step-actions .primary-btn,
.report-actions .primary-btn,
.pricing-button,
.pricing-card-button,
.pricing-drawer-button,
.drawer-cta,
.button,
button[type="submit"],
input[type="submit"] {
  background: #62BFCA;
  border-color: #62BFCA;
}

.primary-btn:hover,
.nav-cta:hover,
.nav-started:hover,
.download-btn:hover,
.first-step-actions .primary-btn:hover,
.report-actions .primary-btn:hover,
.pricing-button:hover,
.pricing-card-button:hover,
.pricing-drawer-button:hover,
.drawer-cta:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #071f7a;
  border-color: #071f7a;
}


/* =========================================================
   Stability patch: header logo, contact layout, h2 scale,
   pricing drawer closed state and button colours
   ========================================================= */
.site-header .header-inner {
  height: 96px !important;
}

.site-header .brand {
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
}

.site-header .brand img,
.site-header .brand .site-logo,
.site-header .site-logo,
.site-header .custom-logo,
.site-header .custom-logo-link img,
.site-header .brand-logo img,
.site-header .logo img,
.site-header .header-logo img {
  width: 190px !important;
  height: auto !important;
  max-width: 190px !important;
  max-height: 82px !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 1100px) {
  .site-header .header-inner {
    height: 78px !important;
  }
  .mobile-menu {
    top: 78px !important;
  }
  .site-header .brand img,
  .site-header .brand .site-logo,
  .site-header .site-logo,
  .site-header .custom-logo,
  .site-header .custom-logo-link img,
  .site-header .brand-logo img,
  .site-header .logo img,
  .site-header .header-logo img {
    width: 150px !important;
    max-width: 150px !important;
    max-height: 66px !important;
  }
}

@media (max-width: 640px) {
  .site-header .header-inner {
    height: 68px !important;
  }
  .mobile-menu {
    top: 68px !important;
  }
  .site-header .brand img,
  .site-header .brand .site-logo,
  .site-header .site-logo,
  .site-header .custom-logo,
  .site-header .custom-logo-link img,
  .site-header .brand-logo img,
  .site-header .logo img,
  .site-header .header-logo img {
    width: 132px !important;
    max-width: 132px !important;
    max-height: 58px !important;
  }
}

/* Consistent h2 and non-H1 title scale */
h2,
h2.section-title,
.section-title:not(h1),
.about-clean-h2,
.get-protected-section h2,
.closing-section h2,
.solution-text-left h2,
.first-step-copy h2,
.pricing-matrix-head h2,
.plan-content h2,
.enterprise-card h2,
.pricing-card h2,
.drawer-head h2,
.pricing-intelligence-drawer h2,
.drawer-snapshot h2,
.protection-section-head h2,
.protection-page-template .section-title,
.protection-page-template .protection-cobra-copy h2,
.cobra-section h2,
.cobra-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.55rem) !important;
  line-height: 0.98 !important;
}

/* Front-page image assignments - do not change these paths */
#solution .first-step-image.solution-image-right,
#solution .solution-image-right {
  background:
    linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.14)),
    url('/wp-content/iye-secure-uploads/iye-fraud-shield-solution.jpg') center center / cover no-repeat !important;
}

#business-overview .first-step-image {
  background:
    linear-gradient(180deg, rgba(7,17,31,0.18), rgba(7,17,31,0.14)),
    url('/wp-content/iye-secure-uploads/iye-fraud-shield-protection.jpg') center center / cover no-repeat !important;
}

/* Pricing drawer must be closed on page load */
.pricing-intelligence-drawer.is-collapsed {
  display: none !important;
}

.pricing-intelligence-drawer .drawer-panel {
  display: none;
}

.pricing-intelligence-drawer .drawer-panel.active {
  display: block;
}

/* Contact page layout */
.contact-template-page .contact-hero {
  padding: 150px 0 76px;
}

.contact-form-section {
  padding: 78px 0 96px;
  background: #ffffff;
}

.contact-wide-container {
  width: min(var(--max), calc(100% - 40px));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.88fr);
  gap: 34px;
  align-items: start;
}

.contact-intro-card,
.iye-contact-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7,17,31,0.045);
}

.contact-intro-card {
  padding: 30px;
}

.contact-intro-card h2 {
  margin: 0 0 22px;
  font-family: var(--heading-font);
  font-size: clamp(1.7rem, 2.6vw, 2.85rem) !important;
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact-intro-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

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

.iye-contact-form {
  padding: 30px;
}

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

.contact-form-grid .form-field.full {
  grid-column: 1 / -1;
}

.iye-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-consent {
  margin-top: 18px;
}

.contact-actions {
  margin-top: 18px;
}

@media (max-width: 940px) {
  .contact-layout,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-template-page .contact-hero {
    padding: 126px 0 62px;
  }
  .contact-form-section {
    padding: 64px 0 76px;
  }
  .contact-intro-card,
  .iye-contact-form {
    padding: 24px;
    border-radius: 24px;
  }
}

/* Site-wide button colour correction */
.primary-btn,
.nav-cta,
.nav-started,
.download-btn,
.reveal-plan-btn,
.protection-reveal-btn,
.first-step-actions .primary-btn,
.report-actions .primary-btn,
.pricing-cta-row .primary-btn,
.post-how-cta-row .primary-btn,
.drawer-cta,
.button,
button[type="submit"],
input[type="submit"] {
  background: #62BFCA !important;
  border-color: #62BFCA !important;
  color: #ffffff !important;
}

.primary-btn:hover,
.nav-cta:hover,
.nav-started:hover,
.download-btn:hover,
.reveal-plan-btn:hover,
.reveal-plan-btn.active,
.protection-reveal-btn:hover,
.first-step-actions .primary-btn:hover,
.report-actions .primary-btn:hover,
.pricing-cta-row .primary-btn:hover,
.post-how-cta-row .primary-btn:hover,
.drawer-cta:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #071f7a !important;
  border-color: #071f7a !important;
  color: #ffffff !important;
}

.btn-arrow {
  background: #071f7a !important;
}

.primary-btn:hover .btn-arrow,
.nav-cta:hover .btn-arrow,
.download-btn:hover .btn-arrow,
button[type="submit"]:hover .btn-arrow {
  background: #62BFCA !important;
}

/* Mobile/tablet standalone button width correction */
@media (max-width: 1024px) {
  .hero-actions,
  .first-step-actions,
  .get-protected-actions,
  .report-actions,
  .pricing-cta-row,
  .post-how-cta-row,
  .confirmation-actions,
  .contact-actions,
  .form-actions {
    align-items: flex-start !important;
  }

  .hero-actions .primary-btn,
  .first-step-actions .primary-btn,
  .get-protected-actions .primary-btn,
  .report-actions .primary-btn,
  .pricing-cta-row .primary-btn,
  .post-how-cta-row .primary-btn,
  .confirmation-actions .primary-btn,
  .contact-actions .primary-btn,
  .form-actions .primary-btn,
  .contact-actions button[type="submit"],
  .form-actions button[type="submit"] {
    width: auto !important;
    max-width: 100% !important;
    align-self: flex-start !important;
  }
}

#solution .first-step-image::after {
  content: "Connecting the unknown";
}

#business-overview .first-step-image::after {
  content: "Intelligence-led protection";
}

@media (max-width: 1024px) {
  #business-overview .first-step-image {
    display: none;
  }
}
/* OTC Desks page: scoped layout and functionality */
.otc-desks-page-template {
  background: #ffffff;
}

.otc-desks-page-template .accent {
  color: var(--blue);
}

.otc-hero-section {
  position: relative;
  overflow: hidden;
  padding: 148px 0 92px;
  color: #ffffff;
  background: var(--navy);
}

.otc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.84), rgba(7,17,31,0.92)),
    radial-gradient(circle at 18% 22%, rgba(98,191,202,0.34), transparent 32%),
    radial-gradient(circle at 78% 70%, rgba(7,31,122,0.52), transparent 38%),
    url('iye-fraud-shield-header.jpg') center center / cover no-repeat;
  pointer-events: none;
}

.otc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.58fr);
  gap: 44px;
  align-items: center;
}

.otc-hero-copy .section-kicker {
  color: #dbe7ff;
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
}

.otc-hero-copy .section-kicker::before {
  background: #dbe7ff;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
}

.otc-hero-copy .about-clean-title {
  max-width: 900px;
  color: #ffffff;
}

.otc-hero-copy .about-clean-subtitle {
  max-width: 760px;
  color: #ffffff;
}

.otc-hero-quote {
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--blue);
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.54;
  letter-spacing: -0.025em;
  font-weight: 650;
}

.otc-hero-actions {
  justify-content: flex-start;
}

.otc-hero-panel {
  min-width: 0;
}

.otc-terminal-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
  overflow: hidden;
}

.otc-terminal-card::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98,191,202,0.42), transparent 64%);
}

.otc-terminal-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.otc-terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
}

.otc-terminal-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.otc-terminal-row strong {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 850;
}

.otc-terminal-row span {
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
  line-height: 1.45;
}

.otc-terminal-decision {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(98,191,202,0.2);
  border: 1px solid rgba(98,191,202,0.36);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.otc-threat-section,
.otc-process-section {
  background: #ffffff;
}

.otc-risk-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.otc-risk-node {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7,17,31,0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.otc-risk-node:hover,
.otc-process-card:hover,
.otc-stage-panel:hover,
.otc-cobra-visual:hover {
  transform: translateY(-4px);
  border-color: rgba(98,191,202,0.35);
  box-shadow: 0 24px 64px rgba(7,17,31,0.08);
}

.otc-risk-node.node-large {
  grid-column: span 2;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 14%, rgba(98,191,202,0.36), transparent 34%),
    var(--navy);
  border-color: rgba(7,17,31,0.16);
}

.otc-risk-node span,
.otc-process-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, #eef3ff, #ffffff);
  border: 1px solid #dbe5ff;
  font-family: var(--heading-font);
  font-weight: 900;
}

.otc-risk-node.node-large span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: #ffffff;
}

.otc-risk-node h3,
.otc-process-card h3,
.otc-stage-panel h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 760;
  color: var(--ink);
}

.otc-risk-node.node-large h3 {
  color: #ffffff;
}

.otc-risk-node p,
.otc-process-card p,
.otc-stage-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.otc-risk-node.node-large p {
  color: rgba(255,255,255,0.74);
}

.otc-workflow-section,
.otc-solutions-section,
.otc-evidence-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.otc-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.62fr);
  gap: 28px;
  align-items: stretch;
}

.otc-workflow-copy {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7,17,31,0.045);
}

.otc-stage-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.otc-stage-btn {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #354052;
  background: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.otc-stage-btn:hover,
.otc-stage-btn.is-active {
  transform: translateY(-2px);
  color: #ffffff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.otc-stage-panel {
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7,17,31,0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.otc-stage-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 34px !important;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue-dark) !important;
  background: #f4f7ff;
  border: 1px solid rgba(98,191,202,0.24);
  font-size: 0.72rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.otc-stage-panel ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.otc-stage-panel li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.otc-stage-panel li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

.otc-solution-grid .protection-card {
  min-height: 318px;
}

.otc-solution-card .protection-card-head p {
  padding-bottom: 0 !important;
}

.otc-card-footer {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #f4f7ff;
  border: 1px solid rgba(98,191,202,0.24);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.otc-cobra-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.82), rgba(7,17,31,0.92)),
    url('/wp-content/iye-secure-uploads/cobra-ai-bg.jpeg') center center / cover no-repeat;
}

.otc-cobra-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(98,191,202,0.32), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(7,31,122,0.34), transparent 34%);
  pointer-events: none;
}

.otc-cobra-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.otc-cobra-copy h2 {
  margin: 0;
  max-width: 650px;
  font-family: var(--heading-font);
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 760;
  color: #ffffff;
}

.otc-cobra-copy p:not(.protection-cobra-kicker),
.otc-cobra-copy .protection-cobra-lead {
  color: rgba(255,255,255,0.76);
}

.otc-cobra-copy .protection-cobra-lead {
  color: rgba(255,255,255,0.9);
}

.otc-cobra-visual {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.otc-cobra-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.otc-cobra-matrix span {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  border-radius: 20px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.86rem;
  font-weight: 850;
}

.otc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.otc-process-card {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7,17,31,0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.otc-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: center;
}

.otc-evidence-quote {
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .otc-hero-grid,
  .otc-workflow-grid,
  .otc-cobra-grid,
  .otc-evidence-grid {
    grid-template-columns: 1fr;
  }

  .otc-risk-map,
  .otc-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .otc-risk-node.node-large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .otc-hero-section {
    padding: 124px 0 72px;
  }

  .otc-risk-map,
  .otc-process-grid,
  .otc-cobra-matrix {
    grid-template-columns: 1fr;
  }

  .otc-risk-node.node-large {
    grid-column: span 1;
  }

  .otc-workflow-copy,
  .otc-stage-panel,
  .otc-cobra-visual,
  .otc-terminal-card,
  .otc-risk-node,
  .otc-process-card {
    padding: 24px;
    border-radius: 24px;
  }

  .otc-terminal-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .otc-stage-btn {
    width: auto !important;
  }
}

/* OTC Desks page: reused protection components scoped for this template */
.otc-desks-page-template .protection-section-head {
  max-width: 920px;
  margin: 0 0 40px;
  text-align: left;
}

.otc-desks-page-template .protection-section-head .section-title,
.otc-desks-page-template .protection-section-head p:not(.section-kicker) {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.otc-desks-page-template .protection-section-head p:not(.section-kicker) {
  max-width: 850px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.otc-desks-page-template .protection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.otc-desks-page-template .protection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7,17,31,0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.otc-desks-page-template .protection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(98,191,202,0.35);
  box-shadow: 0 24px 64px rgba(7,17,31,0.08);
}

.otc-desks-page-template .protection-card-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.otc-desks-page-template .protection-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, #eef3ff, #ffffff);
  border: 1px solid #dbe5ff;
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.otc-desks-page-template .protection-card h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 760;
  color: var(--ink);
}

.otc-desks-page-template .protection-card-head p {
  margin: 14px 0 0 !important;
  padding-bottom: 0 !important;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.otc-desks-page-template .protection-cobra-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.otc-desks-page-template .protection-cobra-lead {
  margin: 28px 0 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--blue);
  max-width: 620px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.12rem, 1.75vw, 1.42rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.otc-desks-page-template .protection-cobra-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto 30px;
}

@media (max-width: 940px) {
  .otc-desks-page-template .protection-grid {
    grid-template-columns: 1fr;
  }

  .otc-desks-page-template .protection-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .otc-desks-page-template .protection-card {
    padding: 22px;
    border-radius: 24px;
  }

  .otc-desks-page-template .protection-card-head {
    grid-template-columns: 1fr;
  }
}

/* Front page intelligence metrics: mobile/tablet card layout only */
@media (max-width: 1024px) {
  #intelligence .metric-grid.metric-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #intelligence .metric-grid.metric-grid-four .metric-card:nth-child(n+5) {
    grid-column: 1 / -1;
  }
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #62bfca;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(98, 191, 202, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.scroll-to-top::before {
  content: "↑";
  color: #ffffff;
  line-height: 1;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: #4eacb6;
  box-shadow: 0 18px 42px rgba(98, 191, 202, 0.45);
}

.scroll-to-top:focus-visible {
  outline: 3px solid rgba(98, 191, 202, 0.35);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

/* Front page hero H1 weight only */
body.home .hero h1,
body.front-page .hero h1 {
  font-weight: 500 !important;
}