@font-face {
      font-family: 'Pickler Social';
      src: url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Regular-1.woff2') format('woff2'),
           url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Regular-1.woff') format('woff');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Pickler Social';
      src: url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Medium-1.woff2') format('woff2'),
           url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Medium-1.woff') format('woff');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Pickler Social';
      src: url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Bold-1.woff2') format('woff2'),
           url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Bold-1.woff') format('woff');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Pickler Social Condensed';
      src: url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocialCondensed-Black.woff2') format('woff2'),
           url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocialCondensed-Black.woff') format('woff');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

/* ─── RESET & BASE ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Pickler Social', 'Inter', sans-serif;
      background: #fff;
      color: #000000;
      font-size: 16px;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ─── DESIGN TOKENS ────────────────────────────────────── */
    :root {
      --navy:     #000000;
      --navy-dark:#111f25;
      --cyan:     #0075E7;
      --cyan-dark:#0063c7;
      --cream:    #F8F0E0;
      --cream-dark:#e8d8c0;
      --gold:     #D9C696;
      --brand-blue:#0075E7;
      --brand-blue-dark:#0063c7;
      --white:    #ffffff;
      --offwhite: #F4F6F8;
      --muted:    #667085;
      --border:   #e2e8f0;
      --radius:   10px;
      --radius-lg:18px;
    }

    /* ─── UTILITY ──────────────────────────────────────────── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .text-center { text-align: center; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px;
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-radius: 100px;
      padding: 19px 35px;
      min-height: 48px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all .2s ease;
      white-space: nowrap;
    }
    /* Site-accurate button styles */
    .btn-primary {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }
    .btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(17,31,37,.35); }
    .btn-cream {
      background: var(--cream);
      color: var(--navy);
      border-color: var(--cream);
    }
    .btn-cream:hover { background: var(--cream-dark); border-color: var(--cream-dark); transform: translateY(-1px); }
    .btn-cyan {
      background: var(--brand-blue);
      color: var(--white);
      border-color: var(--brand-blue);
    }
    .btn-cyan:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-1px); }
    .hero .btn-cyan:hover,
    .nav-scroll-cta .btn-cyan:hover,
    .pricing-card.featured .btn-cyan:hover,
    .final-cta .btn-cyan:hover { border-color: var(--white); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,.5);
    }
    .btn-outline:hover { border-color: var(--brand-blue); background: var(--brand-blue); color: var(--white); }
    .btn-outline-dark {
      background: transparent;
      color: var(--navy);
      border-color: var(--navy);
    }
    .btn-outline-dark:hover { background: var(--navy); color: var(--white); }
    .badge {
      display: inline-block;
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
    }

    /* ─── HERO ─────────────────────────────────────────────── */
    .hero {
      padding-top: 96px;
      min-height: 65vh;
      display: flex; align-items: center;
      position: relative;
      overflow: hidden;
      background-image: var(--hero-bg-image, url('images/Hero.webp'));
      background-size: cover;
      background-position: center;
      padding-bottom: 10px;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 65%, transparent 100%);
    }

    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1160px; margin: 0 auto; padding: 80px 40px 56px;
      width: 100%;
    }
    .hero-content { }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 18px;
      font-weight: 400;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 20px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    }
    .hero-eyebrow::before {
      content: '';
      display: block; width: 28px; height: 2px;
      background: var(--cyan);
    }
    .hero h1 {
      font-family: 'Pickler Social Condensed', 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 90px;
      line-height: 0.9em;
      line-height: 1.05;
      color: var(--white);
      max-width: 680px;
      margin-bottom: 24px;
      letter-spacing: -.02em;
      text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
    }
    .hero h1 em {
      font-style: normal;
      color: var(--cyan);
    }
    .hero-sub {
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 40px;
      line-height: 1.3;
      text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    }
    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 14px;
      margin-bottom: 56px;
      align-items: center;
    }
    .hero-actions .btn { font-size: 15px; padding: 16px 34px; min-height: 54px; }
    .hero-note {
      font-size: 12px;
      color: rgba(255,255,255,.45);
      margin-top: 14px;
      width: 100%;
    }
    .hero-urgency {
      font-size: 13px;
      color: rgba(255,255,255,.6);
      margin-top: 8px;
      width: 100%;
      font-weight: 500;
    }
    .hero-social-proof {
      display: flex; flex-wrap: wrap; gap: 32px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .proof-stat { }
    .proof-stat .stat-number {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 28px;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
    }
    .proof-stat .stat-label {
      font-size: 12px;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      letter-spacing: .06em;
      font-weight: 600;
    }

    /* ─── TRUST STRIP ──────────────────────────────────────── */
    .trust-strip {
      background: var(--cyan);
      padding: 18px 24px;
    }
    .trust-strip-inner {
      max-width: 1160px; margin: 0 auto;
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
      gap: 8px 40px;
    }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: .04em; text-transform: uppercase;
      color: var(--white);
    }
    .trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ─── SECTION STYLES ───────────────────────────────────── */
    section { padding: 96px 0; }
    .section-label {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
       text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 64px;
      line-height: 1.1;
      letter-spacing: -.02em;
      color: #000000;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 17px;
      color: #000000;
      max-width: 850px;
      line-height: 1.3;
      margin: 0 auto; 
    }
    .section-header { margin-bottom: 56px; }
    .pricing .section-header { margin-bottom: 32px; }

    /* ─── INTRO / WHY ──────────────────────────────────────── */
    /* ── How It Works ── */
    .how { background: var(--white); padding-bottom: 45px;}
    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 48px;
      position: relative;
    }
    .how-steps::before {
      content: '';
      position: absolute;
      top: 28px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
      height: 2px;
      background: linear-gradient(to right, var(--cyan), rgba(0,117,231,.3));
    }
    .how-step {
      text-align: center;
      padding: 0 32px;
    }
    .how-step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--white);
      color: var(--cyan);
      border: 2px solid var(--border);
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800; font-size: 20px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      position: relative; z-index: 1;
      border: 3px solid var(--cyan);
    }
    .how-step:first-child .how-step-num { background: var(--cyan); color: var(--white); }
    .how-step h4 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800; font-size: 17px;
      color: var(--navy); margin-bottom: 10px;
    }
    .how-step p { font-size: 14px; color: #000000; line-height: 1.6; }
    .how-step-tag {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; color: var(--cyan);
      margin-bottom: 12px;
    }
    @media (max-width: 768px) {
      .how-steps { grid-template-columns: 1fr; gap: 32px; }
      .how-steps::before { display: none; }
      .how-step { padding: 0; }
    }

    .why { background: var(--offwhite); padding: 64px 0; }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-visual { display: flex; flex-direction: column; gap: 24px; align-items: center; }
    .why-visual img {
      border-radius: var(--radius-lg);
      width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
    }
    .why-visual-label {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 600;
      color: rgba(255,255,255,.4);
      text-align: center; padding: 24px;
      border: 2px dashed rgba(255,255,255,.15);
      border-radius: var(--radius);
      margin: 24px;
    }
    .why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
    .why-point { display: flex; gap: 10px; align-items: flex-start; }
    .why-point-icon {
      width: 28px; height: 28px; flex-shrink: 0;
      margin-top: 2px;
    }
    .why-point-icon svg { width: 20px; height: 20px; }
    .why-point-text h4 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700; font-size: 15px;
      margin-top: 0; margin-bottom: 4px; color: var(--navy);
    }
    .why-point-text p { font-size: 14px; color: #000000; line-height: 1.55; }

    /* ─── AMENITIES ────────────────────────────────────────── */
    .amenities { background: #f3f4f6; padding: 56px 0; }
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .amenity-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/3;
      cursor: default;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .amenity-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
    .amenity-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }
    .amenity-card:hover img { transform: scale(1.04); }
    .amenity-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,.05) 100%);
    }
    .amenity-text {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 24px;
    }
    .amenity-text h3 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700; font-size: 16px;
      color: var(--white); margin-bottom: 5px;
      line-height: 1.3;
    }
    .amenity-text p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.45; margin: 0; }

    .amenities-cta {
      text-align: center; margin-top: 56px;
      padding: 48px;
      background: var(--navy);
      border-radius: var(--radius-lg);
    }
    .amenities-cta p {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700; font-size: 20px;
      color: var(--white); margin-bottom: 20px;
    }

    /* ─── PRICING ──────────────────────────────────────────── */
    .pricing { background: var(--offwhite); scroll-margin-top: 70px; }
    .pricing-toggle {
      display: flex; align-items: center; justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
    }
    .toggle-label {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .06em;
      color: #000000;
      cursor: pointer;
      transition: color .2s;
    }
    .toggle-label.active { color: var(--navy); }
    .toggle-switch {
      width: 52px; height: 28px;
      background: var(--cyan) !important;
      border-radius: 50px;
      position: relative; cursor: pointer;
      transition: background .2s;
      border: none !important; padding: 0; box-shadow: none !important;
    }
    .toggle-switch:hover, .toggle-switch:focus { background: var(--cyan) !important; }
    .toggle-switch::after {
      content: '';
      position: absolute; top: 3px; left: 3px;
      width: 22px; height: 22px;
      background: var(--white);
      border-radius: 50%;
      transition: transform .2s;
    }
    .toggle-switch.annual::after { transform: translateX(24px); }
    .save-badge {
      background: rgba(0,117,231,.12);
      color: var(--cyan);
      font-size: 11px; font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 50px;
    }

    .pricing-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      align-items: stretch;
      flex-direction: row;
      flex-wrap: nowrap;
    }
    
    .pricing-card {
      flex: 1 1 280px;
      max-width: calc(33.333% - 11px);
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 34px 22px;
      border: 2px solid var(--border);
      position: relative;
      transition: box-shadow .2s;
      display: flex;
      flex-direction: column;
    }
    .pricing-grid--2col .pricing-card { max-width: calc(50% - 8px); flex: 1 1 50%;}
    .pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); }
    .pricing-card.trial-card {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 40px 44px;
      flex: none;
      max-width: none;
      width: 100%;
    }
    .pricing-card.featured {
      background: var(--navy);
      border-color: var(--cyan);
      box-shadow: 0 16px 48px rgba(0,117,231,.2);
      color: var(--white); 
    }
    .popular-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--cyan);
      color: var(--white);
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 14px; font-weight: 800;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 50px;
      white-space: nowrap;
    }
    .plan-name {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: bold;
      font-size: 30px;
      line-height: 1.2;
      letter-spacing: 0;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .pricing-card .plan-name { color: var(--navy); }
    .pricing-card .plan-sub { font-size: 14px; color: var(--navy); line-height: 1.5; margin: 5px 0 16px 0; font-weight: 400; }
    .pricing-card.featured .plan-sub { color: rgba(255,255,255,.85); }
    .pricing-card.featured .plan-name { color: var(--cyan); }
    .pricing-card.trial-card .plan-features li::before { content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Cpath d='M4 9.5l3.5 3.5 6.5-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
    .pricing-card.trial-card .plan-features li { color: rgba(255,255,255,1); }

    .plan-price {
      margin-bottom: 10px;
      line-height: 1;
      margin-top: 20px;
    }
    .price-amount {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 42px;
      letter-spacing: -.03em;
      color: var(--navy);
    }
    .pricing-card.featured .price-amount { color: var(--white); }
    .price-per {
      font-size: 14px; font-weight: 600;
      color: var(--navy);
    }
    .pricing-card.featured .price-per { color: rgba(255,255,255,.85); }
    .price-annual-note {
      font-size: 13px; color: var(--navy);
      margin-bottom: 16px; min-height: 20px;
    }
    .pricing-card.featured .price-annual-note { color: rgba(255,255,255,.45); }
    .price-annual-note .savings { color: var(--cyan); font-weight: 700; }

    .plan-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 24px;
    }
    .pricing-card.featured .plan-divider { background: rgba(255,255,255,.12); }

    .plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
    .plan-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--navy);
      line-height: 1.4;
    }
    .pricing-card.featured .plan-features li { color: #fff; }
    .plan-features li::before {
      content: '';
      display: block; flex-shrink: 0;
      width: 18px; height: 18px; margin-top: 1px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230075E7'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    .plan-features li.no {
      opacity: .35;
      text-decoration: line-through;
    }
    .plan-features li.no::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23aaa'%3E%3Cpath fill-rule='evenodd' d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    }
    .pricing-card.featured .plan-features li.no { opacity: .25; }
    .plan-cta-wrap { }
    .plan-cta { width: 100%; justify-content: center; font-size: 14px; padding: 14px; }
    .plan-cancel {
      display: none; text-align: center;
      font-size: 12px; color: var(--muted);
      margin-top: 10px;
    }
    .pricing-card.featured .plan-cancel { color: rgba(255,255,255,.4); }

    .pricing-footnotes {
      margin-top: 32px;
      padding: 20px 24px;
      background: rgba(0,0,0,.03);
      border-radius: var(--radius);
      display: flex; flex-wrap: wrap; gap: 12px 32px;
    }
    .pricing-footnotes p {
      font-size: 12px; color: var(--muted);
      line-height: 1.5;
      margin: 0;
    }

    .pricing-other {
      margin-top: 48px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .pricing-other-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
    }
    .pricing-other-card h4 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700; font-size: 15px; color: var(--navy);
      margin-bottom: 4px;
    }
    .pricing-other-card p { font-size: 13px; color: #000000; }
    .pricing-other-card .other-price {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800; font-size: 20px; color: var(--navy);
      white-space: nowrap;
    }
    .pricing-other-card .other-cta {
      font-size: 12px; font-weight: 700;
      color: var(--cyan);
      text-transform: uppercase; letter-spacing: .06em;
      white-space: nowrap;
    }

    /* ─── TESTIMONIALS ─────────────────────────────────────── */
    .testimonials { background: var(--navy); }
    .testimonials .section-title { color: var(--white); }
    .testimonials .section-label { color: var(--cyan); }
    .testimonials .section-sub { color: rgba(255,255,255,.55); }

    .testimonials-note {
      background: rgba(255,255,255,.06);
      border: 1px dashed rgba(255,255,255,.2);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-bottom: 40px;
    }
    .testimonials-note p {
      font-size: 13px; color: rgba(255,255,255,.45);
      text-align: center;
    }
    .testimonials-note strong { color: rgba(255,255,255,.7); }

    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      padding: 32px;
    }
    .stars {
      display: flex; gap: 4px; margin-bottom: 16px;
    }
    .stars svg { width: 16px; height: 16px; color: #FFB800; fill: #FFB800; }
    .testimonial-card blockquote {
      font-size: 15px; line-height: 1.65;
      color: rgba(255,255,255,.8);
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(0,117,231,.2);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800; font-size: 16px;
      color: var(--cyan);
      flex-shrink: 0;
    }
    .author-name {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700; font-size: 14px;
      color: var(--white);
    }
    .author-detail { font-size: 12px; color: rgba(255,255,255,.4); }

    /* ─── VISIT / LOCATION ─────────────────────────────────── */
    .visit { background: var(--white); padding-top: 45px; }
    .visit-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: start;
    }
    .visit-info { display: flex; flex-direction: column; gap: 24px; }
    .visit-block h4 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700; font-size: 11px;
      letter-spacing: .1em; text-transform: uppercase;
      color: #000000; margin-bottom: 8px;
    }
    .visit-block p, .visit-block a {
      font-size: 16px; color: var(--navy); line-height: 1.6;
    }
    .visit-block a { color: var(--cyan); }
    .visit-block a:hover { text-decoration: underline; }
    .visit-block a[href^="mailto:"] { word-break: break-all; }
    .hours-grid {
      display: flex; flex-direction: column; gap: 4px;
    }
    .hours-row { display: flex; justify-content: space-between; font-size: 15px; flex-direction: column; }
    .hours-row .day { color: var(--navy);}
    .hours-row .time { color: #000000; }
    .visit-map {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--offwhite);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
    }
    .map-placeholder {
      text-align: center; padding: 32px;
      color: #000000; font-size: 14px;
    }
    .map-placeholder svg { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--cyan); }
    .map-placeholder a { color: var(--cyan); font-weight: 600; display: block; margin-top: 8px; }

    /* ─── FINAL CTA ────────────────────────────────────────── */
    .final-cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      padding: 96px 0;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(0,117,231,.12) 0%, transparent 70%);
    }
    .final-cta .container { position: relative; z-index: 1; }
    .final-cta h2 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700; font-size: clamp(28px, 4vw, 48px);
      color: var(--white); margin-bottom: 16px;
      letter-spacing: -.02em;
    }
    .final-cta p {
      font-size: 18px; color: rgba(255,255,255,.6);
      margin-bottom: 40px;
    }
    .final-cta-actions {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
      margin-bottom: 20px;
    }
    .final-cta-actions .btn { font-size: 15px; padding: 16px 36px; min-height: 54px; }
    .final-cta-reassurance {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
      margin-top: 24px;
    }
    .reassurance-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; color: rgba(255,255,255,.45);
      font-weight: 600;
    }
    .reassurance-item svg { width: 16px; height: 16px; color: var(--cyan); }

    /* ─── FAQ ACCORDION ────────────────────────────────────── */
    .faq { background: var(--white); }
    .faq-list { max-width: 740px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    /* Reset all button chrome — overrides Hello Elementor global button styles */
    .faq-q {
      -webkit-appearance: none !important;
      appearance: none !important;
      background: transparent !important;
      background-color: transparent !important;
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
      -webkit-tap-highlight-color: transparent !important;
      width: 100%;
      max-width: 100%;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      cursor: pointer;
      text-align: left;
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--navy);
      transition: color .15s;
    }
    .faq-q:hover,
    .faq-q:focus,
    .faq-q:active {
      background: transparent !important;
      background-color: transparent !important;
      outline: none !important;
      box-shadow: none !important;
    }
    .faq-q:focus-visible {
      outline: 2px solid var(--cyan) !important;
      outline-offset: 4px;
      border-radius: 4px;
    }
    .faq-q:hover { color: var(--cyan); }
    .faq-q[aria-expanded="true"] { color: var(--cyan); }
    .faq-q .faq-text {
      flex: 1 1 0%;
      min-width: 0;
      max-width: calc(100% - 40px);
      overflow-wrap: break-word;
      word-break: break-word;
      white-space: normal;
      padding-top: 3px;
    }
    .faq-icon {
      flex-shrink: 0;
      width: 24px; height: 24px;
      margin-top: 1px;
      border: 2px solid currentColor;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s, transform .3s;
    }
    .faq-q[aria-expanded="true"] .faq-icon {
      background: var(--cyan); border-color: var(--cyan); transform: rotate(45deg);
    }
    .faq-icon svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; }
    .faq-q[aria-expanded="true"] .faq-icon svg { stroke: #fff; }
    .faq-a {
      overflow: hidden; max-height: 0;
      transition: max-height .35s ease;
    }
    .faq-a-inner {
      font-size: 15px; color: #000000; line-height: 1.75;
      padding: 4px 0 24px 16px;
      border-left: 3px solid var(--cyan);
    }
    .faq-a.open { max-height: 500px; }

    /* ─── FOOTER ───────────────────────────────────────────── */
    footer {
      background: var(--navy);
      padding: 48px 0 32px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-top {
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 48px; margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .footer-brand .nav-logo { font-size: 20px; margin-bottom: 12px; display: block; transition: all 0.3s linear;}
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); max-width: 240px; line-height: 1.6; transition: all 0.3s linear; }
    .footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
    .footer-col h5 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 14px; color: rgba(255,255,255,.65);
      margin-bottom: 10px;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--white); }
    .findus-social { display: flex; gap: 10px; margin-top: 14px; }
    .findus-social a {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: transparent;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      transition: background .2s, border-color .2s, color .2s;
    }
    .findus-social a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--white); }
    .findus-social svg { width: 15px; height: 15px; }
    .footer-social { display: flex; gap: 12px; margin-top: 16px; }
    .footer-social a {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .footer-social a:hover { background: var(--cyan); }
    .footer-social svg { width: 16px; height: 16px; color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

    /* ─── SCHEDULE LINKS ───────────────────────────────────── */
    .schedule-links {
      margin-bottom: 32px;
    }
    .schedule-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .schedule-item {
      display: flex; align-items: center; gap: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 24px;
      transition: all .2s;
      cursor: pointer;
    }
    .schedule-item:hover { border-color: var(--cyan); box-shadow: 0 4px 16px rgba(0,0,0,.06); transform: translateY(-1px); }
    .schedule-icon {
      flex-shrink: 0;
      width: 40px; height: 40px;
      border-radius: 8px;
      background: rgba(0,117,231,.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--cyan);
    }
    .schedule-item div { flex: 1; }
    .schedule-item strong { display: block; font-family: 'Pickler Social', 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
    .schedule-item p { font-size: 13px; color: #000000; margin: 0; }
    .schedule-arrow { color: var(--cyan); font-weight: 700; font-size: 18px; flex-shrink: 0; }

    /* ─── PICKLR+ ───────────────────────────────────────────── */
    .picklr-plus {
      margin-top: 32px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .picklr-plus-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--cyan);
      color: var(--navy);
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 50px;
      margin-bottom: 10px;
    }
    .picklr-plus h3 {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800; font-size: 22px;
      color: var(--white); margin-bottom: 8px;
    }
    .picklr-plus p { font-size: 14px; color: rgba(255,255,255,.6); max-width: 420px; }
    .picklr-plus-price {
      text-align: right; flex-shrink: 0;
    }
    .picklr-plus-price .price {
      font-family: 'Pickler Social', 'Montserrat', sans-serif;
      font-weight: 800; font-size: 36px;
      color: var(--white); line-height: 1;
    }
    .picklr-plus-price .price-label {
      font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px;
    }

    /* ─── RESPONSIVE ───────────────────────────────────────── */
    @media (max-width: 1024px) {
      .pricing-card { max-width: calc(50% - 8px) !important; }
      .pricing-card.featured { order: -1; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      section { padding: 64px 0; }
      .visit { padding: 48px 0; }
      .visit .section-header { margin-bottom: 32px; }
      .visit-info { gap: 16px; }
      .visit-block h4 { font-size: 12px; margin-bottom: 6px; color: var(--navy); opacity: 0.5; }
      .visit-block { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
      .visit-block:last-child { border-bottom: none; padding-bottom: 0; }
      .visit-map { aspect-ratio: 16/9; }
      .visit-map iframe { min-height: 280px !important; }
      .section-title { font-size: 48px; }
      .section-sub { font-size: 15px; }
      .hero-sub { font-size: 18px; }
      .why-points { gap: 20px; }
      .why-point { gap: 0; }
      .price-amount { font-size: 36px; }
      .pricing-card { padding: 24px 20px; }
      .toggle-label { font-size: 14px; }
      .testimonial-card { padding: 24px; }
      .testimonial-card blockquote { font-size: 14px; }
      .faq-q { padding: 18px 0; }
      .faq-icon { width: 20px; height: 20px; }
      .faq-icon svg { width: 10px; height: 10px; }
      .final-cta p { font-size: 16px; }
      .faq { padding-bottom: 32px; }
      .final-cta { padding: 56px 0; }
      .pricing { padding-top: 48px; }
      .hero-inner { padding: 60px 24px 56px; }
      .hero-actions { margin-bottom: 32px; }
      .why-grid { grid-template-columns: 1fr; }
      .why-visual { order: -1; }
      .pricing-card { max-width: 100% !important; }
      .pricing-grid {
        flex-direction: column;
      }
      .trial-card { flex-direction: column !important; text-align: center !important; padding: 32px 24px !important; }
      .amenities-grid { grid-template-columns: 1fr; }
      .schedule-grid { grid-template-columns: 1fr; }
      .schedule-links { margin-bottom: 16px; }
      .schedule-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 20px; position: relative; }
      .schedule-item div { flex: unset; }
      .schedule-icon { width: 32px; height: 32px; }
      .schedule-arrow { position: absolute; top: 18px; right: 20px; }
      .amenities .section-header { margin-bottom: 24px; }
      .pricing-card.trial-card { text-align: left; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .visit-grid { grid-template-columns: 1fr; gap: 32px; }
      .pricing-other { grid-template-columns: 1fr; }
      .picklr-plus { flex-direction: column; }
      .picklr-plus-price { text-align: left; }
      .footer-links { gap: 40px; }
      .hero-social-proof { gap: 20px; }
    }

    @media (max-width: 480px) {
      section { padding: 48px 0; }
      .hero { min-height: 0; padding: 40px 0;}
      .hero h1 { font-size: 64px; }
      .hero-sub { font-size: 18px; }
      .hero-inner { padding-bottom: 28px; }
      .hero-sub { margin-bottom: 24px; }
      .hero-actions { margin-bottom: 0; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .trust-strip-inner { flex-direction: column; gap: 10px; }
      .price-amount { font-size: 32px; }
      .pricing-card { padding: 20px 16px; }
      .amenities .section-header { margin-bottom: 16px; }
      .amenity-text { padding: 16px; }
      .amenities .btn { width: 100%; justify-content: center; }
      .visit { padding: 32px 0; }
      .visit .section-header { margin-bottom: 24px; }
      .visit .section-label { margin-bottom: 8px; }
      .visit-info { gap: 12px; }
      .visit-grid { gap: 24px; }
      .visit-actions { flex-direction: column; }
      .visit-actions .btn { width: 100%; justify-content: center; }
      .visit-map iframe { min-height: 240px !important; }
      .testimonial-card { padding: 20px; }
      .faq-q { padding: 14px 0; }
      .final-cta p { font-size: 15px; }
      .final-cta-reassurance { gap: 16px; }
      .reassurance-item { font-size: 12px; }
      .final-cta-actions .btn { width: 100%; }
      .footer-top { flex-direction: column; }
      .footer { padding-top: 32px; }
      .footer-links { flex-direction: column; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .trial-btn { white-space: normal; font-size: 13px; padding: 12px 16px; }
    }

/* ─── FOUNDER PITCH BLOCK ─────────────────────────────── */
.founder-pitch { background: #fff; padding: 96px 0; scroll-margin-top: 100px; }
.founder-pitch .pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder-pitch .section-title { margin-bottom: 20px; }
.founder-pitch .pitch-sub {
  font-size: 17px;
  color: #000;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 560px;
}
.founder-pitch .pitch-benefits-label {
  font-family: 'Pickler Social', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 16px;
}
.founder-pitch .pitch-benefits {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 28px;
}
.founder-pitch .pitch-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #000;
  line-height: 1.5;
}
.founder-pitch .pitch-benefits li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230075E7'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}
.founder-pitch .pitch-footnotes {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.founder-pitch .pitch-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .founder-pitch { padding: 72px 0; }
  .founder-pitch .pitch-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .founder-pitch { padding: 56px 0; }
  .founder-pitch .pitch-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-pitch .pitch-visual { order: -1; }
  .founder-pitch .pitch-visual img { aspect-ratio: 4/3; }
  .founder-pitch .pitch-benefits { grid-template-columns: 1fr; gap: 10px; }
  .founder-pitch .pitch-sub { font-size: 16px; }
}

/* ─── FOUNDER PRICING VARIANT ─────────────────────────── */
.pricing--founder {  }
.pricing--founder .founder-grid { gap: 24px; align-items: stretch; }
.pricing-card.founder-card {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 64px 40px !important;
  border-radius: 24px !important;
  border: none !important;
  box-shadow: none !important;
  min-height: 360px;
}
.pricing-card.founder-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08) !important; }
.pricing-card.founder-card .plan-name {
  font-size: 32px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 16px !important;
  
}
.pricing-card.founder-card .founder-tier {
  font-size: 16px;
  letter-spacing: .08em;
  font-weight: 500;
  margin-bottom: 28px;
  
  text-transform: uppercase;
}
.pricing-card.founder-card .plan-price { margin: 0 !important; }
.pricing-card.founder-card .plan-price .price-amount {
  font-size: 96px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -.02em !important;
}
.pricing-card.founder-card .plan-cta-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.pricing-card.founder-card .founder-cta {
  width: auto !important;
  border-radius: 999px !important;
  padding: 16px 48px !important;
  border: 2px solid #000 !important;
  background: transparent !important;
  color: #000 !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  font-size: 14px !important;
  text-transform: uppercase;
  box-shadow: none !important;
}
.pricing-card.founder-card .founder-cta:hover,
.pricing-card.founder-card .founder-cta:focus {
  background: #000 !important;
  color: #fff !important;
}
.pricing-card.founder-card .founder-foot {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  opacity: .85;
}

.pricing-card.founder-card.featured .popular-badge { display: none !important; }
.pricing-card.founder-card--soldout {
  background: #f3ecd4 !important;
}
.pricing-card.founder-card--soldout .founder-soldout {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1;
  margin: 24px 0;
  color: #000;
  text-transform: uppercase;
  font-family: 'Pickler Social', 'Montserrat', sans-serif;
}
.pricing-disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .pricing-card.founder-card { padding: 40px 24px !important; min-height: 280px; }
  .pricing-card.founder-card .plan-price .price-amount { font-size: 72px !important; }
  .pricing-card.founder-card--soldout .founder-soldout { font-size: 56px; margin: 16px 0; }
}