  /* ───────────── Contact page — local styles ─────────────
     Shared system tokens come from shared.css. Only page-specific
     layout below. Visual restraint: this is the warmest page on the
     site but also the calmest — no marketing-page energy. */

  /* Hero — short and welcoming. Same dashed-arcs background motif. */
  .c-hero { padding: 96px 0 72px; }
  /* .c-hero::before background-image is injected via gonitaq-loader.php
     so the path always resolves to /wp-content/uploads/gonitaq/assets/ */
  @media (max-width: 720px) {
    .c-hero::before {
      background-position: center top;
    }
  }
  .c-hero .h-display {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    max-width: 16ch;
    margin-top: 18px;
  }
  .c-hero .subhead {
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--ink-700);
    line-height: 1.6;
    max-width: 44ch;
    margin-top: 18px;
    font-weight: 400;
  }
  @media (max-width: 720px) { .c-hero { padding: 56px 0 40px; } }

  /* ───────────── 2. WhatsApp band — primary CTA ─────────────
     The visually dominant block. Sand-warm background to lift it off
     white; subtle green accents are confined to the button and pulse
     so they don't fight the brand teal. */
  .wa-band {
    background: linear-gradient(180deg, #F1F4F4 0%, #ECF1F1 100%);
    padding: 72px 0;
    position: relative;
  }
  .wa-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 48px;
    border: 1px solid rgba(20,32,31,0.04);
    box-shadow: 0 30px 60px -40px rgba(20, 32, 31, 0.18);
    position: relative;
    overflow: hidden;
  }
  /* Faint WhatsApp-green wash on the right edge — signals the path
     without coloring the whole card. */
  .wa-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: #25D366;
    opacity: 0.85;
  }
  .wa-card .label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500;
    color: var(--ink-500);
    letter-spacing: 0.02em;
  }
  .wa-card .label::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: wa-pulse 2.2s ease-in-out infinite;
  }
  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  }
  .wa-card h2 {
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 14px;
    letter-spacing: -0.018em;
  }
  .wa-card .sub {
    margin-top: 14px;
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.6;
    max-width: 44ch;
  }
  .wa-card .save-num {
    margin-top: 18px;
    font-size: 14px;
    color: var(--ink-500);
  }
  .wa-card .save-num .num {
    font-family: var(--font-en);
    color: var(--ink-900);
    font-weight: 500;
    letter-spacing: 0.01em;
    direction: ltr;
    display: inline-block;
    margin-right: 4px;
    margin-left: 4px;
  }

  /* WhatsApp button — the only saturated-green moment on the page. */
  .btn-whatsapp {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 18px 28px;
    border-radius: 12px;
    font-family: var(--font-ar);
    font-size: 16px;
    font-weight: 600;
    min-height: 56px;
    white-space: nowrap;
    transition: background-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
    box-shadow: 0 14px 30px -16px rgba(37, 211, 102, 0.55);
  }
  .btn-whatsapp:hover {
    background: #1FBA59;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px -16px rgba(37, 211, 102, 0.7);
  }
  .btn-whatsapp svg { width: 22px; height: 22px; }
  .btn-whatsapp .arrow {
    display: inline-block;
    transition: transform 280ms ease;
  }
  .btn-whatsapp:hover .arrow { transform: translateX(-4px); }

  @media (max-width: 880px) {
    .wa-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
    .wa-card::after { width: 100%; height: 5px; bottom: auto; }
    .btn-whatsapp { width: 100%; }
  }

  /* ───────────── 3. Email + form ─────────────
     Visually quieter than WhatsApp. Single-column intro, form on the right.
     The form itself uses the same input language as the home lead-magnet. */
  .email-section { padding: 96px 0; }
  .email-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .email-intro h2 {
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 600;
    line-height: 1.25;
    margin-top: 14px;
    letter-spacing: -0.015em;
  }
  .email-intro .sub {
    margin-top: 16px;
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.65;
    max-width: 36ch;
  }
  .email-intro .direct {
    margin-top: 28px;
    padding: 20px;
    border-radius: var(--r-md);
    background: var(--sand);
    display: flex; flex-direction: column; gap: 6px;
  }
  .email-intro .direct .ttl {
    font-size: 13px; color: var(--ink-500); font-weight: 500;
  }
  .email-intro .direct a {
    font-family: var(--font-en);
    font-size: 17px;
    font-weight: 500;
    color: var(--teal);
    direction: ltr;
    display: inline-block;
    border-bottom: 1px solid rgba(13,115,119,0.2);
    padding-bottom: 2px;
    width: max-content;
    transition: border-color 280ms ease;
  }
  .email-intro .direct a:hover { border-color: var(--teal); }

  /* WEB_BUILD: this entire .contact-form block is a visual mockup.
     Replace with the WPForms shortcode [wpforms id="X"] when wiring up. */
  .contact-form {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    padding: 36px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .contact-form .field {
    display: flex; flex-direction: column; gap: 8px;
  }
  .contact-form label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-700);
  }
  .contact-form label .opt {
    color: var(--ink-400);
    font-weight: 400;
    margin-right: 4px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--ink-200);
    background: var(--white);
    font-size: 15px;
    font-family: var(--font-ar);
    color: var(--ink-900);
    outline: none;
    transition: border-color 280ms ease, box-shadow 280ms ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .contact-form textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.08);
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder { color: var(--ink-400); }
  .contact-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235a6968' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
  }
  .contact-form .row-2 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .contact-form .submit-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; flex-wrap: wrap; margin-top: 4px;
  }
  .contact-form button[type="submit"] {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--teal); color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px; font-weight: 500;
    min-height: 48px;
    transition: background-color 280ms ease;
  }
  .contact-form button[type="submit"]:hover { background: var(--teal-700); }
  .contact-form .privacy {
    font-size: 13px; color: var(--ink-500); display: inline-flex; align-items: center; gap: 8px;
  }
  .contact-form .privacy::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ink-300);
  }
  @media (max-width: 980px) {
    .email-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 540px) {
    .email-section { padding: 64px 0; }
    .contact-form { padding: 24px; }
    .contact-form .row-2 { grid-template-columns: 1fr; }
  }

  /* ───────────── 4. What we help with / don't ─────────────
     Two columns, even weight. Mute the "don't" column with dashes
     (not red Xs) per brief. */
  .help-section { background: var(--sand); padding: 96px 0; }
  .help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
  }
  .help-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink-900);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ink-200);
    margin-bottom: 6px;
  }
  .help-col.yes h3 { color: var(--teal); }
  .help-col ul { list-style: none; }
  .help-col li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--ink-100);
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-900);
  }
  .help-col li:last-child { border-bottom: none; }
  .help-col .icon {
    width: 24px; height: 24px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .help-col.yes .icon {
    background: var(--teal-50);
    color: var(--teal);
  }
  .help-col.no .icon {
    background: transparent;
    border: 1px solid var(--ink-200);
    color: var(--ink-400);
  }
  .help-col.no li { color: var(--ink-500); }
  .help-col .icon svg { width: 12px; height: 12px; }
  @media (max-width: 720px) {
    .help-section { padding: 64px 0; }
    .help-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  }

  /* ───────────── 5. Founder block ─────────────
     Small, warm, human. Round avatar on the right, name + line on the left. */
  .founder-block { padding: 96px 0; }
  .founder-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 36px;
    align-items: center;
    max-width: 760px;
  }
  .founder-card .avatar {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: var(--sand);
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--ink-100);
  }
  .founder-card .avatar::after {
    content: ''; position: absolute; bottom: 8px; left: 8px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--saffron);
    border: 2px solid var(--white);
  }
  .founder-card .avatar .silhouette {
    width: 80%; margin-bottom: 0;
  }
  .founder-card .who {
    font-size: 13px;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: 0.04em;
  }
  .founder-card .name {
    font-size: 24px;
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: -0.015em;
  }
  .founder-card .line {
    margin-top: 14px;
    font-size: 16px;
    color: var(--ink-700);
    line-height: 1.65;
    max-width: 46ch;
  }
  .founder-card .read-more {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px;
    font-size: 14.5px;
    color: var(--ink-900);
    font-weight: 500;
    border-bottom: 1px solid var(--ink-200);
    padding-bottom: 4px;
    transition: border-color 280ms ease, color 280ms ease;
    width: max-content;
  }
  .founder-card .read-more:hover { border-color: var(--teal); color: var(--teal); }
  .founder-card .read-more .arrow {
    display: inline-block;
    transition: transform 280ms ease;
  }
  .founder-card .read-more:hover .arrow { transform: translateX(-4px); }
  @media (max-width: 720px) {
    .founder-block { padding: 64px 0; }
    .founder-card { grid-template-columns: 96px 1fr; gap: 24px; }
    .founder-card .avatar { width: 96px; height: 96px; }
    .founder-card .name { font-size: 22px; }
  }

  /* ───────────── 6. FAQ ───────────── */
  .faq-section { padding: 96px 0; background: var(--white); border-top: 1px solid var(--ink-100); }
  .faq-list { margin-top: 40px; max-width: 760px; }
  .faq-item {
    border-bottom: 1px solid var(--ink-100);
  }
  .faq-item:first-child { border-top: 1px solid var(--ink-100); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink-900);
    line-height: 1.4;
    transition: color 240ms ease;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--teal); }
  .faq-item .toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--ink-200);
    flex-shrink: 0;
    position: relative;
    transition: border-color 240ms ease, background-color 240ms ease;
  }
  .faq-item .toggle::before,
  .faq-item .toggle::after {
    content: '';
    position: absolute;
    background: var(--ink-700);
    border-radius: 1px;
    transition: transform 280ms ease, background-color 240ms ease;
  }
  .faq-item .toggle::before { top: 50%; left: 50%; width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq-item .toggle::after { top: 50%; left: 50%; width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
  .faq-item[open] .toggle { border-color: var(--teal); background: var(--teal-50); }
  .faq-item[open] .toggle::before,
  .faq-item[open] .toggle::after { background: var(--teal); }
  .faq-item[open] .toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .faq-item .answer {
    font-size: 15.5px;
    color: var(--ink-700);
    line-height: 1.7;
    padding: 0 0 24px;
    max-width: 60ch;
  }
  .faq-item .answer a {
    color: var(--teal);
    border-bottom: 1px solid rgba(13,115,119,0.3);
    padding-bottom: 1px;
  }
  @media (max-width: 720px) {
    .faq-section { padding: 64px 0; }
    .faq-item summary { font-size: 16px; padding: 20px 0; gap: 16px; }
  }

  /* Section heads (page-local — tighter than home section heads) */
  .c-head {
    display: flex; flex-direction: column; gap: 14px;
    max-width: 640px;
  }
  .c-head h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.018em;
  }
  .c-head p {
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.65;
    max-width: 48ch;
  }
