  /* ============================================================
     HERO VISUAL — GEO AI-answer mock
     ============================================================ */
  .geo-visual {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    position: relative;
    margin: 0 auto;
  }
  .geo-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--sh-lg);
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
  }
  .geo-card .gc-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .geo-card .gc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .geo-card .gc-dot.ai { background: var(--geo); }
  .geo-card .gc-dot.src { background: #1d8a4a; }
  .geo-card .gc-dot.pulse {
    background: var(--pink);
    animation: gcPulse 2s ease-in-out infinite;
  }
  @keyframes gcPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.35); }
  }
  .geo-card .gc-query {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .geo-card .gc-answer {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .geo-card .gc-answer strong { color: var(--navy-dark); font-weight: 700; }
  .geo-card .gc-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #e8f7ee;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: #1d6b3e;
    letter-spacing: 0.03em;
  }
  .geo-card .gc-source::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1d8a4a;
    flex-shrink: 0;
  }
  .geo-card .gc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    gap: 10px;
  }
  .geo-card .gc-row + .gc-row { border-top: 1px dashed var(--border); }
  .geo-card .gc-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .geo-card .gc-pill.good { background: #e8f7ee; color: #1d6b3e; }
  .geo-card .gc-pill.warn { background: var(--orange-50); color: var(--orange); }
  .geo-card .gc-pill.geo { background: var(--geo-50); color: var(--geo); }

  .gc-ai-answer {
    top: 2%;
    left: 2%;
    width: 70%;
    transform: rotate(-3.5deg);
    z-index: 2;
    animation: gcFloatA 7s ease-in-out infinite;
  }
  .gc-sources {
    bottom: 26%;
    right: 0;
    width: 58%;
    transform: rotate(2.5deg);
    z-index: 3;
    animation: gcFloatB 6s ease-in-out infinite;
  }
  .gc-audit {
    bottom: 1%;
    left: 10%;
    width: 66%;
    transform: rotate(-1.5deg);
    z-index: 1;
    animation: gcFloatC 8s ease-in-out infinite;
  }
  @keyframes gcFloatA {
    0%, 100% { transform: rotate(-3.5deg) translateY(0); }
    50% { transform: rotate(-3.5deg) translateY(-10px); }
  }
  @keyframes gcFloatB {
    0%, 100% { transform: rotate(2.5deg) translateY(0); }
    50% { transform: rotate(2.5deg) translateY(-12px); }
  }
  @keyframes gcFloatC {
    0%, 100% { transform: rotate(-1.5deg) translateY(0); }
    50% { transform: rotate(-1.5deg) translateY(-8px); }
  }

  /* ============================================================
     AI-HI FORM
     ============================================================ */
  .ai-hi {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 16px 28px;
    background: #fff;
    color: var(--navy-dark);
    border: 1px solid var(--border);
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    font-family: var(--font);
    transition: all 0.2s;
  }
  .ai-hi:hover, .ai-hi:focus-within {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
  }
  .ai-hi-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    user-select: none;
    cursor: default;
  }
  .ai-hi-wave {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    transform-origin: 70% 70%;
    animation: aiWave 3.4s ease-in-out 2s infinite;
  }
  @keyframes aiWave {
    0%, 78%, 100% { transform: rotate(0deg); }
    82%  { transform: rotate(14deg); }
    86%  { transform: rotate(-8deg); }
    90%  { transform: rotate(14deg); }
    94%  { transform: rotate(-4deg); }
    98%  { transform: rotate(10deg); }
  }
  .ai-hi-input {
    width: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--navy-dark);
    font: 500 14px/1 var(--font);
    opacity: 0;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease 0.05s, padding 0.3s ease, margin 0.3s ease;
  }
  .ai-hi-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
  }
  .ai-hi:hover .ai-hi-input,
  .ai-hi:focus-within .ai-hi-input {
    width: 200px;
    opacity: 1;
    padding: 0 12px;
    margin-left: 10px;
    border-left: 1px solid var(--border);
  }
  .ai-hi-send {
    width: 0;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--navy-dark);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.65);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease 0.1s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  }
  .ai-hi-send svg { width: 14px; height: 14px; stroke-width: 2.6; }
  .ai-hi:hover .ai-hi-send,
  .ai-hi:focus-within .ai-hi-send {
    width: 32px;
    opacity: 1;
    transform: scale(1);
  }
  .ai-hi-send:hover, .ai-hi-send:focus-visible { color: var(--pink); }

  /* ============================================================
     SECTION HEAD
     ============================================================ */
  .block { padding: 100px 0; }
  .block.alt { background: var(--surface); }
  .section-head {
    margin-bottom: 64px;
    max-width: 880px;
  }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
  }
  .kicker.orange { color: var(--orange); }
  .kicker.pink { color: var(--pink); }
  .kicker.navy { color: var(--navy); }
  .kicker.geo { color: var(--geo); }
  .section-title {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.015em;
  }
  .section-title .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.7;
  }
  .section-head.center .section-lead { margin-left: auto; margin-right: auto; }

