/*
Theme Name:  SignPayGo
Theme URI:   https://signpaygo.com
Author:      SignPayGo
Description: Official theme for SignPayGo.com — permission slips, waivers & payments.
Version:     3.0.0
License:     Proprietary
Text Domain: signpaygo
*/

/* ── Google Fonts loaded via functions.php ── */

  :root {
    --navy: #0f2b4a;
    --blue: #1a6bb5;
    --sky: #3b9edd;
    --mint: #2dc98e;
    --mint-light: #e6faf3;
    --sand: #fdf8f3;
    --white: #ffffff;
    --text: #1a2535;
    --muted: #617589;
    --border: #dde8f0;
    --shadow: 0 4px 24px rgba(15,43,74,0.10);
    --shadow-lg: 0 12px 48px rgba(15,43,74,0.16);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 8px;
  }

  .nav-center {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }

  .nav-item {
    position: relative;
  }

  .nav-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
  }

  .nav-trigger:hover, .nav-item:hover .nav-trigger {
    background: var(--sand);
    color: var(--blue);
  }

  .nav-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
    opacity: 0.5;
  }

  .nav-item:hover .nav-trigger svg { transform: rotate(180deg); opacity: 1; }

  .nav-plain {
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
  }

  .nav-plain:hover { background: var(--sand); color: var(--blue); }

  /* MEGA DROPDOWN */
  .mega-drop {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(15,43,74,0.14);
    padding: 24px;
    min-width: 560px;
    z-index: 300;
    animation: dropIn 0.18s ease both;
  }

  @keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  .nav-item:hover .mega-drop { display: block; }

  /* arrow bridge so hover doesn't break */
  .mega-drop::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0; right: 0;
    height: 12px;
  }

  .mega-grid { display: grid; gap: 6px; }
  .mega-grid-2 { grid-template-columns: 1fr 1fr; }
  .mega-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

  .mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s;
  }

  .mega-item:hover { background: var(--sand); }

  .mega-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .mi-blue   { background: #e8f3fd; }
  .mi-mint   { background: var(--mint-light); }
  .mi-orange { background: #fff3e0; }
  .mi-purple { background: #f0ecfd; }
  .mi-red    { background: #fdeaea; }
  .mi-green  { background: #eafaf0; }
  .mi-teal   { background: #e3f8f4; }
  .mi-gold   { background: #fef9e7; }
  .mi-pink   { background: #fdeef6; }

  .mega-item-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
  }

  .mega-item-text span {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
  }

  .mega-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 12px 0;
  }

  .mega-featured {
    background: linear-gradient(135deg, #f0f7ff, #e8f3fd);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: box-shadow 0.15s;
    margin-top: 6px;
  }

  .mega-featured:hover { box-shadow: 0 4px 16px rgba(59,158,221,0.15); }

  .mega-featured-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .mega-featured strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
  .mega-featured span { font-size: 0.78rem; color: var(--muted); }

  /* NAV RIGHT */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-login {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    transition: all 0.15s;
    white-space: nowrap;
  }

  .nav-login:hover { border-color: var(--sky); color: var(--blue); }

  nav .cta-btn {
    background: var(--mint);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
  }

  nav .cta-btn:hover { background: #25b37d; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(45,201,142,0.35); }

  /* MOBILE NAV */
  .nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }

  @media (max-width: 900px) {
    .nav-center { display: none; }
    .nav-login { display: none; }
    .nav-mobile-toggle { display: block; }
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-icon svg { width: 20px; height: 20px; fill: white; }

  .logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
  }

  .logo-name span { color: var(--sky); }

  /* HERO */
  .hero {
    background: linear-gradient(160deg, var(--navy) 0%, #1a3d6b 60%, #1e5090 100%);
    padding: 90px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 88vh;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,158,221,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45,201,142,0.10) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-text { position: relative; z-index: 2; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45,201,142,0.15);
    border: 1px solid rgba(45,201,142,0.3);
    color: #5de8b2;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
  }

  h1 em {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 400;
    color: #7dd4f7;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--mint);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover { background: #25b37d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,201,142,0.4); }

  .btn-ghost {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: white; }
  .btn-ghost svg { width: 18px; height: 18px; }

  .hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .trust-avatars { display: flex; }
  .trust-avatars span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: linear-gradient(135deg, #5bb8f5, #3b9edd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    margin-left: -8px;
  }
  .trust-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #70d1a8, #2dc98e); }
  .trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #f5a65b, #e8823c); }

  .trust-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.4; }
  .trust-text strong { color: rgba(255,255,255,0.9); }

  /* HERO CARD */
  .hero-card {
    position: relative;
    z-index: 2;
    animation: floatUp 0.8s ease both;
  }

  @keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .slip-mockup {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1);
    max-width: 420px;
    margin: 0 auto;
  }

  .slip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .slip-org {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .slip-org-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a6bb5, #3b9edd);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
  }

  .slip-org-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
  .slip-org-sub { font-size: 0.75rem; color: var(--muted); }

  .slip-badge {
    background: #fff3e0;
    color: #e8823c;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
  }

  .slip-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .slip-subtitle { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }

  .slip-field {
    margin-bottom: 12px;
  }

  .slip-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }

  .slip-field .field-val {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
  }

  .slip-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  .slip-sig-section {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
  }

  .sig-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; }

  .sig-box {
    background: var(--mint-light);
    border: 1.5px solid var(--mint);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sig-name { font-family: 'Lora', serif; font-style: italic; font-size: 1.2rem; color: var(--navy); }

  .sig-check {
    width: 24px;
    height: 24px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sig-check svg { width: 14px; height: 14px; fill: white; }

  .slip-payment {
    margin-top: 16px;
    background: linear-gradient(135deg, var(--navy), #1e5090);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .payment-info { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
  .payment-info strong { display: block; color: white; font-size: 1.1rem; }
  .payment-status {
    background: var(--mint);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
  }

  /* LOGOS BAR */
  .logos-bar {
    background: var(--sand);
    padding: 28px 5%;
    border-bottom: 1px solid var(--border);
  }

  .logos-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .logos-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 32px;
    white-space: nowrap;
  }

  .logos-list {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
  }

  .logo-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #8a9eb5;
  }

  .logo-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  /* FEATURES */
  .features {
    padding: 96px 5%;
    background: white;
  }

  .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sky);
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .section-title em {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--sky);
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #b8d5ee;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }

  .fi-blue { background: #e8f3fd; }
  .fi-mint { background: var(--mint-light); }
  .fi-purple { background: #f0ecfd; }
  .fi-orange { background: #fff3e0; }
  .fi-teal { background: #e3f8f4; }
  .fi-gold { background: #fef9e7; }

  .feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* HOW IT WORKS */
  .how {
    background: var(--navy);
    padding: 96px 5%;
    position: relative;
    overflow: hidden;
  }

  .how::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .how .section-title { color: white; }
  .how .section-label { color: #5de8b2; }
  .how .section-sub { color: rgba(255,255,255,0.6); }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59,158,221,0.4), rgba(45,201,142,0.4), transparent);
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    color: white;
  }

  .step-num.active {
    background: linear-gradient(135deg, var(--sky), var(--mint));
    border-color: transparent;
    box-shadow: 0 0 0 6px rgba(45,201,142,0.15);
  }

  .step h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 8px; }
  .step p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* FORM SECTION */
  .form-section {
    padding: 96px 5%;
    background: white;
  }

  .form-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .form-left { position: sticky; top: 100px; }

  .form-left .section-sub { margin-bottom: 36px; }

  .trust-list { list-style: none; }
  .trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    color: var(--muted);
  }

  .trust-list li::before {
    content: '✓';
    min-width: 22px;
    height: 22px;
    background: var(--mint-light);
    color: var(--mint);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .form-card {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
  }

  .form-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
  }

  .form-card .form-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 28px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .field { margin-bottom: 16px; }

  .field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
  }

  .field input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }

  .field input:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(59,158,221,0.12);
  }

  .field input::placeholder { color: #b0c4d8; }

  .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
    letter-spacing: 0.2px;
  }

  .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,107,181,0.35); }

  .form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .form-note svg { width: 13px; height: 13px; }

  /* QUOTE SECTION */
  .quote-band {
    background: linear-gradient(135deg, var(--mint-light), #e8f6fd);
    border-top: 1px solid #c8edd9;
    border-bottom: 1px solid #c8edd9;
    padding: 64px 5%;
    text-align: center;
  }

  .quote-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--navy);
    max-width: 720px;
    margin: 0 auto 20px;
    line-height: 1.55;
  }

  .quote-author {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
  }

  .quote-author strong { color: var(--navy); }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 64px 5% 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
  }

  .footer-brand p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-top: 14px;
  }

  .footer-logo .logo-name { color: white; }

  .footer-seo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
  }

  .footer-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.15s;
  }

  .footer-col a:hover { color: rgba(255,255,255,0.9); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  footer .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

  @media (max-width: 1000px) {
    .footer-seo { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
  }

  @media (max-width: 560px) {
    .footer-seo { grid-template-columns: 1fr; }
  }

  /* RESPONSIVE */
  /* PRICING */
  .pricing-section {
    padding: 96px 5%;
    background: var(--sand);
    border-top: 1px solid var(--border);
  }

  .billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
  }

  .toggle-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
  }

  .toggle-track {
    width: 44px;
    height: 24px;
    background: var(--border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.25s;
  }

  .toggle-track.monthly { background: var(--sky); }

  .toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: left 0.25s;
  }

  .toggle-track.monthly .toggle-thumb { left: 23px; }

  .save-badge {
    background: var(--mint-light);
    color: var(--mint);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid #b8ecd9;
    transition: opacity 0.2s;
  }

  .save-badge.hidden { opacity: 0; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    text-align: left;
  }

  .pricing-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.2s;
  }

  .pricing-card:hover { box-shadow: var(--shadow); }

  .pricing-card-featured {
    border-color: var(--sky);
    box-shadow: 0 8px 32px rgba(59,158,221,0.15);
    transform: translateY(-6px);
  }

  .pricing-card-featured:hover { box-shadow: 0 12px 40px rgba(59,158,221,0.22); }

  .plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.3px;
  }

  .plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .plan-price-wrap { margin-bottom: 24px; }

  .plan-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1;
  }

  .plan-cycle {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 5px;
  }

  .plan-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 28px;
    cursor: pointer;
  }

  .plan-btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: white;
  }

  .plan-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,181,0.3); }

  .plan-btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
  }

  .plan-btn-outline:hover { border-color: var(--sky); color: var(--sky); }

  .plan-features {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

  .plan-features li {
    font-size: 0.875rem;
    color: var(--muted);
    padding: 7px 0;
    border-bottom: 1px solid #f0f5f9;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.45;
  }

  .plan-features li::before {
    content: '✓';
    color: var(--mint);
    font-weight: 700;
    font-size: 0.78rem;
    min-width: 16px;
    margin-top: 1px;
  }

  .plan-features li:last-child { border-bottom: none; }

  .plan-features li:has(✦) { color: var(--navy); font-weight: 600; }

  @media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card-featured { transform: none; }
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 60px 5%; }
    .hero-card { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .form-wrap { grid-template-columns: 1fr; gap: 40px; }
    .form-left { position: static; }
  }

  @media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
  }

  /* ── hero-card: photo fills, overlays sit on top ── */
  .hero-card {
    position: relative;
    z-index: 2;
    animation: floatUp 0.8s ease both;
    width: 100%;
    max-width: 400px;    /* smaller photo */
    margin: 0 auto;
  }

  /* Coach photo — full width */
  .hc-photo {
    display: block;
    width: 100%;
    position: relative;
  }
  .hc-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(15,43,74,.35);
  }

  /* Overlay container — sits on top of photo */
  .hc-overlays {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  /* iPhone — overlaps left edge, closer in */
  .hc-iphone {
    position: absolute;
    left: -60px;
    top: 4%;              /* higher up on the photo */
    pointer-events: auto;
  }

  /* Payments panel — overlaps right edge, closer in */
  .hc-payments {
    position: absolute;
    right: -60px;
    bottom: 4%;           /* lower on the photo */
    pointer-events: auto;
  }

  /* ── iPhone shell ─────────────────────────── */
  .iph-shell {
    position: relative;
    width: 168px; height: 346px;
    border-radius: 30px;
    background: #111;
    box-shadow:
      0 0 0 1.5px #2a2a2a,
      0 0 0 3px #111,
      0 20px 50px rgba(0,0,0,.6),
      inset 0 0 0 1px rgba(255,255,255,.08);
    flex-shrink: 0;
  }
  .iph-shell::before {
    content:''; position:absolute; left:-3.5px; top:68px;
    width:3px; height:22px; background:#2a2a2a;
    border-radius:2px 0 0 2px;
    box-shadow: 0 30px 0 #2a2a2a, 0 55px 0 #2a2a2a;
  }
  .iph-shell::after {
    content:''; position:absolute; right:-3.5px; top:80px;
    width:3px; height:34px; background:#2a2a2a;
    border-radius:0 2px 2px 0;
  }
  .iph-screen {
    position:absolute; inset:4px;
    border-radius:25px; background:#fff; overflow:hidden;
  }
  .iph-statusbar {
    position:absolute; top:0; left:0; right:0; height:32px;
    display:flex; align-items:flex-end; justify-content:space-between;
    padding:0 13px 5px; z-index:10; pointer-events:none;
  }
  .iph-time { font-size:.55rem; font-weight:800; color:#000; letter-spacing:-.02em; font-family:-apple-system,sans-serif; }
  .iph-icons { display:flex; align-items:center; gap:3px; }
  .iph-island {
    position:absolute; top:6px; left:50%; transform:translateX(-50%);
    width:52px; height:17px; background:#111;
    border-radius:12px; z-index:20;
    transition:all .45s cubic-bezier(.22,1,.36,1);
  }
  .iph-island.scanning { width:122px; height:26px; top:4px; }
  .iph-island.done-tap { width:60px; height:20px; top:5px; }
  .iph-faceid {
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center; gap:4px;
    opacity:0; transition:opacity .3s ease;
  }
  .iph-island.scanning .iph-faceid { opacity:1; }
  .iph-facelabel { font-size:.42rem; font-weight:700; color:white; white-space:nowrap; font-family:-apple-system,sans-serif; }
  .iph-scanline {
    position:absolute; left:5px; right:5px; height:1.5px;
    background:linear-gradient(90deg,transparent,rgba(45,201,142,.9),transparent);
    top:50%; opacity:0; animation:scanSweep 1.2s ease-in-out infinite;
  }
  .iph-island.scanning .iph-scanline { opacity:1; }
  @keyframes scanSweep {
    0%   { transform:translateY(-7px); opacity:0; }
    10%  { opacity:1; }
    90%  { opacity:1; }
    100% { transform:translateY(7px);  opacity:0; }
  }
  .iph-content { position:absolute; inset:0; overflow:hidden; }
  .iph-scene { position:absolute; inset:0; background:#fff; opacity:0; pointer-events:none; transition:opacity .4s ease; }
  .iph-scene.active { opacity:1; pointer-events:auto; }
  .iph-nav {
    position:absolute; top:32px; left:0; right:0; height:29px;
    display:flex; align-items:center; justify-content:center; padding:0 10px;
    border-bottom:.5px solid #e5e5ea; background:rgba(255,255,255,.95); z-index:5;
  }
  .iph-nav-title { font-size:.5rem; font-weight:700; color:#000; font-family:-apple-system,sans-serif; }
  .iph-waiver-body {
    position:absolute; top:61px; left:0; right:0; bottom:0;
    overflow:hidden; padding:8px 9px 9px;
    display:flex; flex-direction:column; gap:6px;
    transform:translateY(0); transition:transform 1.4s cubic-bezier(.4,0,.2,1);
  }
  .iph-waiver-body.scrolled { transform:translateY(-48px); }
  .iph-org-row { display:flex; align-items:center; gap:5px; }
  .iph-org-logo {
    width:18px; height:18px; border-radius:4px; flex-shrink:0;
    background:linear-gradient(135deg,#1a6bb5,#3b9edd);
    display:flex; align-items:center; justify-content:center;
    font-size:.4rem; font-weight:800; color:white;
  }
  .iph-org-name { font-size:.5rem; font-weight:800; color:#000; font-family:-apple-system,sans-serif; }
  .iph-org-sub  { font-size:.42rem; color:#8e8e93; font-family:-apple-system,sans-serif; }
  .iph-doc-tag  { margin-left:auto; font-size:.38rem; font-weight:800; background:#fff3e0; color:#e8823c; padding:1px 4px; border-radius:100px; }
  .iph-camp-title { font-size:.58rem; font-weight:800; color:#000; font-family:-apple-system,sans-serif; }
  .iph-camp-meta  { font-size:.42rem; color:#8e8e93; font-family:-apple-system,sans-serif; }
  .iph-rows { background:#f2f2f7; border-radius:6px; overflow:hidden; }
  .iph-row {
    display:flex; justify-content:space-between; align-items:center;
    padding:4px 7px; border-bottom:.5px solid rgba(0,0,0,.08);
    opacity:0; transform:translateX(5px); transition:opacity .25s ease,transform .25s ease;
  }
  .iph-row:last-child { border-bottom:none; }
  .iph-row.r-in { opacity:1; transform:translateX(0); }
  .iph-rl { font-size:.41rem; color:#8e8e93; font-family:-apple-system,sans-serif; }
  .iph-rv { font-size:.43rem; font-weight:600; color:#000; font-family:-apple-system,sans-serif; }
  .iph-wtext { font-size:.4rem; color:#636366; line-height:1.5; font-family:-apple-system,sans-serif; }
  .iph-sig-label { font-size:.4rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:#8e8e93; margin-bottom:3px; font-family:-apple-system,sans-serif; }
  .iph-sig-box { background:#f8fbff; border:1px solid #c7d8f0; border-radius:6px; padding:4px 6px; position:relative; }
  .iph-sig-svg  { width:100%; height:26px; display:block; }
  .iph-sig-line { border-top:1px dashed #c0d8ee; margin:2px 0 3px; }
  .iph-sig-date { font-size:.38rem; color:#8e8e93; font-family:-apple-system,sans-serif; }
  .iph-sig-badge {
    position:absolute; top:3px; right:4px;
    background:#e6faf3; border:1px solid #2dc98e; border-radius:4px;
    padding:1px 4px; font-size:.38rem; font-weight:800; color:#16a870;
    opacity:0; transform:scale(.8);
    transition:opacity .3s ease,transform .3s cubic-bezier(.34,1.56,.64,1);
    font-family:-apple-system,sans-serif;
  }
  .iph-sig-badge.b-in { opacity:1; transform:scale(1); }
  .iph-cursor { filter:drop-shadow(0 0 2px rgba(26,107,181,.9)); }

  /* Apple Pay sheet */
  .iph-pay-bg { position:absolute; inset:0; background:rgba(0,0,0,.45); opacity:0; transition:opacity .35s ease; }
  .iph-pay-bg.bg-in { opacity:1; }
  .iph-pay-sheet {
    position:absolute; left:0; right:0; bottom:0;
    background:#1c1c1e; border-radius:12px 12px 0 0;
    padding:7px 12px 17px;
    transform:translateY(100%); transition:transform .48s cubic-bezier(.22,1,.36,1);
  }
  .iph-pay-sheet.sheet-in { transform:translateY(0); }
  .iph-sheet-handle { width:22px; height:2.5px; background:rgba(255,255,255,.2); border-radius:2px; margin:0 auto 8px; }
  .iph-ap-logo { display:flex; align-items:center; justify-content:center; gap:4px; margin-bottom:7px; }
  .iph-pay-wordmark { font-size:.58rem; font-weight:700; color:white; font-family:-apple-system,sans-serif; }
  .iph-merchant { text-align:center; margin-bottom:8px; }
  .iph-merchant-name   { font-size:.47rem; color:rgba(255,255,255,.55); font-family:-apple-system,sans-serif; margin-bottom:2px; }
  .iph-merchant-amount { font-size:1.1rem; font-weight:700; color:white; letter-spacing:-.04em; font-family:-apple-system,sans-serif; }
  .iph-card-row { display:flex; align-items:center; gap:7px; background:rgba(255,255,255,.08); border-radius:7px; padding:5px 8px; margin-bottom:8px; }
  .iph-card-info { flex:1; }
  .iph-card-name { font-size:.45rem; font-weight:600; color:white; font-family:-apple-system,sans-serif; }
  .iph-card-num  { font-size:.4rem; color:rgba(255,255,255,.5); font-family:-apple-system,sans-serif; }
  .iph-card-chevron { color:rgba(255,255,255,.3); font-size:.44rem; }
  .iph-faceid-btn {
    width:100%; height:34px; background:white; border:none; border-radius:8px;
    display:flex; align-items:center; justify-content:center; gap:5px;
    cursor:pointer; position:relative; overflow:hidden; transition:all .15s ease;
  }
  .iph-faceid-btn.processing { background:#1c1c1e; border:1px solid rgba(255,255,255,.15); }
  .iph-faceid-btn.approved   { background:linear-gradient(135deg,#2dc98e,#22b07d); }
  .iph-fid-apple { display:flex; align-items:center; color:#000; transition:color .3s; }
  .iph-faceid-btn.processing .iph-fid-apple,
  .iph-faceid-btn.approved   .iph-fid-apple { color:white; }
  .iph-fid-label { font-size:.52rem; font-weight:700; color:#000; font-family:-apple-system,sans-serif; transition:color .3s; }
  .iph-faceid-btn.processing .iph-fid-label,
  .iph-faceid-btn.approved   .iph-fid-label { color:white; }
  .iph-tap-ripple {
    position:absolute; width:0; height:0; border-radius:50%;
    background:rgba(0,0,0,.08); left:50%; top:50%;
    transform:translate(-50%,-50%) scale(0); transition:all .4s ease;
  }
  .iph-faceid-btn.tapped .iph-tap-ripple { width:140px; height:140px; transform:translate(-50%,-50%) scale(1); opacity:0; }

  /* confirmation scene */
  .iph-conf-scene {
    position:absolute; inset:0; display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:5px;
    padding:12px 10px; background:white;
  }
  .iph-conf-scene::before {
    content:''; position:absolute; top:0; left:0; right:0; height:42%;
    background:linear-gradient(180deg,#e6faf3 0%,white 100%); z-index:0;
  }
  .iph-conf-content {
    position:relative; z-index:1;
    display:flex; flex-direction:column; align-items:center; gap:5px; width:100%;
  }
  .iph-big-check {
    width:38px; height:38px; border-radius:50%;
    background:linear-gradient(135deg,#2dc98e,#1ab07a);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 5px 16px rgba(45,201,142,.45);
    transform:scale(0); transition:transform .5s cubic-bezier(.34,1.56,.64,1);
    margin-bottom:2px;
  }
  .iph-big-check.ck-in { transform:scale(1); }
  @keyframes iphPulse {
    0%   { box-shadow:0 0 0 0   rgba(45,201,142,.5); }
    70%  { box-shadow:0 0 0 10px rgba(45,201,142,0);  }
    100% { box-shadow:0 0 0 0   rgba(45,201,142,0);  }
  }
  .iph-big-check.ck-in { animation:iphPulse 1.8s ease-out .5s infinite; }
  .iph-conf-title { font-size:.64rem; font-weight:800; color:#000; font-family:-apple-system,sans-serif; }
  .iph-conf-sub   { font-size:.46rem; color:#636366; text-align:center; font-family:-apple-system,sans-serif; line-height:1.4; }
  .iph-receipt    { width:100%; background:#f2f2f7; border-radius:7px; overflow:hidden; }
  .iph-r-row {
    display:flex; justify-content:space-between; align-items:center;
    padding:4px 7px; border-bottom:.5px solid rgba(0,0,0,.07);
    opacity:0; transform:translateY(4px); transition:opacity .3s ease,transform .3s ease;
  }
  .iph-r-row:last-child { border-bottom:none; }
  .iph-r-row.rr-in { opacity:1; transform:translateY(0); }
  .iph-rl2 { font-size:.41rem; color:#636366; font-family:-apple-system,sans-serif; }
  .iph-rv2 { font-size:.43rem; font-weight:700; color:#000; font-family:-apple-system,sans-serif; }
  .iph-rv2.green { color:#2dc98e; }
  .iph-done-btn {
    width:100%; padding:6px; background:#007aff; border:none; border-radius:7px;
    font-size:.52rem; font-weight:700; color:white;
    font-family:-apple-system,sans-serif; cursor:default;
    opacity:0; transform:translateY(4px); transition:opacity .3s ease,transform .3s ease;
  }
  .iph-done-btn.d-in { opacity:1; transform:translateY(0); }
  .iph-home {
    position:absolute; bottom:5px; left:50%; transform:translateX(-50%);
    width:64px; height:3px; background:rgba(0,0,0,.18); border-radius:2px; z-index:30;
  }

  /* ── Payments panel ──────────────────────── */
  .pay-panel {
    background: white;
    border-radius: 16px;
    padding: 16px;
    width: 210px;
    flex-shrink: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.14);
  }
  .pay-panel-header {
    display:flex; align-items:center; gap:8px;
    margin-bottom:12px; padding-bottom:10px; border-bottom:1px solid #f0f0f0;
  }
  .pay-panel-icon {
    width:28px; height:28px; background:linear-gradient(135deg,var(--mint),#22b07d);
    border-radius:8px; display:flex; align-items:center; justify-content:center;
    font-size:.78rem; flex-shrink:0;
  }
  .pay-panel-title { font-size:.76rem; font-weight:800; color:var(--navy); }
  .pay-panel-sub   { font-size:.58rem; color:var(--muted); }
  .pay-panel-live  { margin-left:auto; display:flex; align-items:center; gap:4px; font-size:.54rem; font-weight:700; color:var(--mint); }
  .pay-live-dot    { width:5px; height:5px; border-radius:50%; background:var(--mint); animation:livePulse 1.4s ease-in-out infinite; }
  @keyframes livePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.7);} }

  .pay-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-bottom:12px; }
  .pay-stat  { background:#f8f9fc; border-radius:7px; padding:7px 5px; text-align:center; }
  .pay-stat .ps-val { font-size:.68rem; font-weight:800; color:var(--navy); letter-spacing:-.02em; display:block; }
  .pay-stat .ps-val.green { color:var(--mint); }
  .pay-stat .ps-val.blue  { color:var(--sky);  }
  .pay-stat .ps-lbl { font-size:.46rem; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.4px; margin-top:1px; display:block; }

  .pay-list-label { font-size:.54rem; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:var(--muted); margin-bottom:7px; }
  .pay-list       { display:flex; flex-direction:column; gap:6px; }
  .pay-item {
    display:flex; align-items:center; gap:7px; padding:7px 8px;
    background:#f8f9fc; border-radius:8px; border:1px solid #eef1f6;
    opacity:0; transform:translateY(5px) scale(.98);
    transition:opacity .4s ease,transform .4s cubic-bezier(.22,1,.36,1);
  }
  .pay-item.pi-in  { opacity:1; transform:translateY(0) scale(1); }
  .pay-item.pi-new {
    background:linear-gradient(135deg,#f0fdf8,#e6faf3);
    border-color:#b8ead4;
    animation:newItemFlash .7s ease forwards;
  }
  @keyframes newItemFlash {
    0%  { box-shadow:0 0 0 0   rgba(45,201,142,.5); }
    60% { box-shadow:0 0 0 8px rgba(45,201,142,0);  }
    100%{ box-shadow:none; }
  }
  .pay-avatar { width:26px; height:26px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:.52rem; font-weight:800; color:white; }
  .pay-info   { flex:1; min-width:0; }
  .pay-name   { font-size:.62rem; font-weight:700; color:var(--navy); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .pay-event  { font-size:.52rem; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .pay-right  { text-align:right; flex-shrink:0; }
  .pay-amount { font-size:.64rem; font-weight:800; color:var(--navy); }
  .pay-time   { font-size:.48rem; color:var(--muted); margin-top:1px; }
  .pay-time.just-now { color:var(--mint); font-weight:700; }

  .pay-total-bar { margin-top:10px; padding-top:9px; border-top:1px solid #f0f0f0; display:flex; align-items:center; justify-content:space-between; }
  .pay-total-lbl  { font-size:.58rem; color:var(--muted); font-weight:600; }
  .pay-total-val  { font-size:.88rem; font-weight:800; color:var(--navy); letter-spacing:-.02em; transition:all .4s ease; }



/* ── WordPress admin bar offset ── */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }

/* ── Default page (non-homepage) content ── */
.site-content { max-width: 900px; margin: 60px auto; padding: 0 5%; }
.site-content h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.site-content p  { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
