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

    :root {
      --sq-blue: #006AFF;
      --sq-blue-dark: #0052CC;
      --sq-green: #00C896;
      --black: #0A0A0A;
      --gray-900: #1A1A1A;
      --gray-700: #3D3D3D;
      --gray-500: #6B6B6B;
      --gray-200: #E5E5E5;
      --gray-100: #F5F5F5;
      --white: #FFFFFF;
      --font-sans: 'DM Sans', sans-serif;
      --font-serif: 'DM Serif Display', serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-sans);
      color: var(--black);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200);
      padding: 0 32px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.4px;
      text-decoration: none;
      color: var(--black);
    }

    .logo-stack {
      display: flex;
      min-width: 0;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      line-height: 1.05;
    }

    .logo-wordmark {
      display: block;
    }

    .logo-powered {
      display: block;
      margin-top: 3px;
      color: var(--gray-500);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1.1;
      white-space: nowrap;
    }

    .nav-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: var(--black);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
    }

    .nav-logo .logo-icon svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--gray-700);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.15s;
    }

    .nav-links a:hover { color: var(--black); }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-ghost {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--black);
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 16px;
      border-radius: 8px;
      transition: background 0.15s;
      text-decoration: none;
    }

    .btn-ghost:hover { background: var(--gray-100); }

    .btn-primary {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      background: var(--black);
      border: none;
      cursor: pointer;
      padding: 10px 20px;
      border-radius: 8px;
      transition: background 0.15s, transform 0.1s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--gray-900); transform: translateY(-1px); }

    .btn-primary.blue {
      background: var(--sq-blue);
    }

    .btn-primary.blue:hover { background: var(--sq-blue-dark); }

    .btn-large {
      font-size: 16px;
      padding: 14px 28px;
      border-radius: 10px;
    }

    /* ── HERO ── */
    .hero {
      padding: 96px 32px 80px;
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #EFF6FF;
      color: var(--sq-blue);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 6px 12px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .hero-eyebrow .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sq-blue);
    }

    .hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(40px, 5vw, 60px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--black);
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--sq-blue);
    }

    .hero-sub {
      font-size: 18px;
      line-height: 1.65;
      color: var(--gray-500);
      margin-bottom: 40px;
      max-width: 480px;
    }

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

    .hero-note {
      font-size: 13px;
      color: var(--gray-500);
      margin-top: 16px;
    }

    .hero-note strong { color: var(--black); }

    /* Hero visual */
    .hero-visual {
      position: relative;
    }

    .hero-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 20px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.05);
      overflow: hidden;
      animation: floatCard 6s ease-in-out infinite;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .card-header {
      background: var(--black);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .card-header-title {
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      opacity: 0.7;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .card-header-amount {
      color: var(--white);
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .card-body { padding: 20px 24px; }

    .sale-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 14px;
    }

    .sale-row:last-child { border-bottom: none; }

    .sale-row .item { color: var(--gray-700); }

    .sale-row .price {
      font-weight: 600;
      color: var(--black);
    }

    .sale-row .badge {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 100px;
      background: #E8F7F1;
      color: #007A53;
    }

    .card-total {
      background: var(--gray-100);
      margin: 0 -24px -20px;
      padding: 16px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .card-total .label { font-size: 13px; color: var(--gray-500); font-weight: 500; }
    .card-total .amount { font-size: 22px; font-weight: 700; color: var(--black); letter-spacing: -0.03em; }

    .float-badge {
      position: absolute;
      bottom: -16px;
      left: -20px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: floatBadge 5s ease-in-out infinite 1s;
    }

    @keyframes floatBadge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .float-badge .avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #667eea, #764ba2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      font-weight: 700;
    }

    .float-badge .info { font-size: 12px; }
    .float-badge .info .name { font-weight: 600; color: var(--black); }
    .float-badge .info .detail { color: var(--gray-500); margin-top: 1px; }

    .float-badge-2 {
      position: absolute;
      top: -16px;
      right: -20px;
      background: var(--sq-blue);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,106,255,0.30);
      padding: 10px 14px;
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      animation: floatBadge 5s ease-in-out infinite 2s;
      /* solid blue + white text keeps chip readable on white/blue hero */
      text-shadow: 0 1px 0 rgba(0,0,0,0.12);
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--gray-100);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      padding: 20px 32px;
    }

    .trust-bar-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--gray-500);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
    }

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

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-700);
    }

    .trust-item svg { opacity: 0.5; }

    /* ── SECTION BASE ── */
    .section {
      padding: 96px 32px;
    }

    .section-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--sq-blue);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--black);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 18px;
      color: var(--gray-500);
      line-height: 1.6;
      max-width: 580px;
    }

    /* ── VALUE PROPS ── */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--gray-200);
      border-radius: 20px;
      overflow: hidden;
      margin-top: 56px;
    }

    .value-card {
      background: var(--white);
      padding: 40px 36px;
      transition: background 0.2s;
    }

    .value-card:hover { background: #FAFAFA; }

    .value-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }

    .value-icon.blue { background: #EFF6FF; }
    .value-icon.green { background: #ECFDF5; }
    .value-icon.purple { background: #F5F3FF; }

    .value-card h3 {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--black);
      margin-bottom: 12px;
    }

    .value-card p {
      font-size: 15px;
      line-height: 1.65;
      color: var(--gray-500);
    }

    /* ── FEATURES ── */
    .features-section {
      background: var(--black);
    }

    .features-section .section-label { color: var(--sq-green); }
    .features-section .section-title { color: var(--white); }
    .features-section .section-sub { color: rgba(255,255,255,0.5); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 56px;
    }

    .feature-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 32px;
      transition: background 0.2s, border-color 0.2s;
      cursor: default;
      display: flex;
      flex-direction: column;
    }

    /* Primary row: POS + Payments — clearer hierarchy */
    .feature-card--primary {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.14);
      padding: 36px;
    }

    .feature-card--primary h3 {
      font-size: 20px;
    }

    .feature-card--primary p {
      color: rgba(255,255,255,0.55);
    }

    .feature-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.14);
    }

    .feature-card--primary:hover {
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.18);
    }

    .feature-hw-img {
      width: 100%;
      height: 160px;
      object-fit: contain;
      margin-bottom: 20px;
      filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
      transition: transform 0.3s ease;
    }

    .feature-card:hover .feature-hw-img {
      transform: scale(1.04) translateY(-4px);
    }

    .feature-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .feature-tag {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 100px;
      letter-spacing: 0.04em;
    }

    .feature-tag.included {
      background: rgba(0,200,150,0.15);
      color: var(--sq-green);
    }

    .feature-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .feature-card p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.45);
    }

    /* ── LOCAL SECTION ── */
    .local-section {
      background: var(--gray-100);
    }

    .local-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .local-list {
      list-style: none;
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .local-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 16px;
      color: var(--gray-700);
      line-height: 1.5;
    }

    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--sq-green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .check-icon svg {
      width: 12px;
      height: 12px;
      stroke: white;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .local-list li strong { color: var(--black); }

    /* Testimonial cards */
    .testimonial-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .testimonial {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.04);
      transition: transform 0.2s;
    }

    .testimonial:hover { transform: translateX(4px); }

    .testimonial-text {
      font-size: 17px;
      line-height: 1.75;
      color: var(--gray-700);
      margin-bottom: 18px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .author-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      color: white;
      flex-shrink: 0;
    }

    .author-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.01em;
    }

    .author-biz {
      font-size: 12px;
      font-weight: 400;
      color: var(--gray-500);
      margin-top: 2px;
    }

    .stars {
      color: #F59E0B;
      font-size: 14px;
      margin-left: auto;
    }

    /* ── PRICING ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .pricing-card {
      border: 1.5px solid var(--gray-200);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      transition: box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .pricing-card:hover {
      box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

    .pricing-card.featured {
      border-color: var(--sq-blue);
      box-shadow: 0 0 0 4px rgba(0,106,255,0.08);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--sq-blue);
      color: white;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
      letter-spacing: 0.03em;
    }

    .plan-name {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 12px;
    }

    .plan-price {
      font-family: var(--font-serif);
      font-size: 48px;
      letter-spacing: -0.04em;
      color: var(--black);
      line-height: 1;
      margin-bottom: 6px;
    }

    .plan-price sup {
      font-family: var(--font-sans);
      font-size: 24px;
      font-weight: 600;
      vertical-align: super;
    }

    .plan-period {
      font-size: 13px;
      color: var(--gray-500);
      margin-bottom: 24px;
    }

    .plan-divider {
      height: 1px;
      background: var(--gray-200);
      margin: 24px 0;
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
      flex: 1 1 auto;
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--gray-700);
    }

    .plan-features li .check {
      color: var(--sq-green);
      font-size: 14px;
      font-weight: 700;
    }

    .plan-btn {
      width: 100%;
      margin-top: auto;
      padding: 13px;
      border-radius: 10px;
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s;
      text-align: center;
      border: 2px solid var(--black);
      background: none;
      color: var(--black);
    }

    .plan-btn:hover {
      background: var(--black);
      color: var(--white);
    }

    .plan-btn.featured-btn {
      background: var(--sq-blue);
      border-color: var(--sq-blue);
      color: var(--white);
    }

    .plan-btn.featured-btn:hover {
      background: var(--sq-blue-dark);
      border-color: var(--sq-blue-dark);
    }

    /* Business: solid black CTA — intentional, not ghost */
    .plan-btn.plan-btn-solid {
      background: var(--black);
      border-color: var(--black);
      color: var(--white);
    }

    .plan-btn.plan-btn-solid:hover {
      background: var(--gray-900);
      border-color: var(--gray-900);
      color: var(--white);
    }

    /* ── CTA ── */
    .cta-section {
      padding: 96px 32px;
      background: var(--black);
      text-align: center;
    }

    .cta-section .section-label { color: var(--sq-green); margin-bottom: 24px; }

    .cta-title {
      font-family: var(--font-serif);
      font-size: clamp(36px, 5vw, 60px);
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

    .cta-title em { font-style: italic; color: var(--sq-blue); }

    .cta-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 40px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-outline-white {
      font-family: var(--font-sans);
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      background: none;
      border: 2px solid rgba(255,255,255,0.25);
      cursor: pointer;
      padding: 13px 26px;
      border-radius: 10px;
      transition: border-color 0.15s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline-white:hover { border-color: rgba(255,255,255,0.6); }

    /* ── FOOTER ── */
    footer {
      background: #0A0A0A;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 48px 32px 32px;
      color: rgba(255,255,255,0.4);
    }

    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 16px;
      color: var(--white);
    }

    .footer-logo .logo-powered {
      color: rgba(255,255,255,0.45);
    }

    .footer-logo .logo-sq {
      width: 34px;
      height: 34px;
      background: var(--black);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3px;
      /* Match nav mark: black plate + same clearspace */
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    }

    .footer-logo .logo-sq svg { width: 100%; height: 100%; overflow: visible; }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.4);
      font-size: 13px;
      transition: color 0.15s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.8); }

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

    .footer-copy { font-size: 12px; }

    .footer-sq-note {
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .sq-logo-inline {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(255,255,255,0.08);
      padding: 3px 8px;
      border-radius: 4px;
      color: rgba(255,255,255,0.6);
      font-weight: 600;
      font-size: 11px;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.7s ease forwards;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    /* ── RESPONSIVE ── */
    /* Mid widths: keep Jake badge clear of dashboard card */
    @media (min-width: 769px) and (max-width: 1024px) {
      .hero {
        gap: 40px;
        padding: 80px 28px 64px;
      }
      .hero-visual > div {
        padding: 28px 12px 36px !important;
      }
      .float-badge {
        left: 4px;
        bottom: -8px;
        max-width: calc(100% - 24px);
        z-index: 2;
      }
      .float-badge-2 {
        right: 4px;
        top: -8px;
        z-index: 2;
      }
    }

    @media (max-width: 768px) {
      .nav-logo {
        min-width: 0;
        gap: 8px;
      }
      .logo-powered {
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 9px;
      }
      .hero {
        grid-template-columns: 1fr;
        padding: 60px 24px 48px;
        gap: 40px;
      }
      .value-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .local-inner { grid-template-columns: 1fr; gap: 48px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .section { padding: 64px 24px; }
    }


/* ── INNER PAGES (VISUAL-SPECS) ── */
.page-hero {
  padding: 72px 32px 40px;
  max-width: 1160px;
  margin: 0 auto;
}
.page-hero.narrow { max-width: 720px; }
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}
.page-hero .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 580px;
}

.content-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px 96px;
}
.content-wrap.article {
  max-width: 720px;
}

/* Blog listing cards */
.post-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 32px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  border-left: 3px solid transparent;
}
.post-card:hover {
  background: #FAFAFA;
  border-left-color: var(--sq-blue);
}
.post-card.is-stub {
  cursor: default;
  opacity: 0.92;
}
.post-card.is-stub:hover {
  border-left-color: transparent;
  background: var(--white);
}
.post-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.post-card .meta .week-label { color: var(--sq-blue); }
.post-card h2 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 8px;
}
.post-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card .coming-soon {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 4px;
}

/* Article */
.article-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sq-blue);
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.post-meta .sep { color: var(--gray-200); }

.prose {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-700);
}
.prose p { margin-bottom: 1.25em; }
.prose strong { color: var(--black); font-weight: 600; }
.prose a { color: var(--sq-blue); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 2.25em 0 0.75em;
  line-height: 1.2;
  font-weight: 400;
}
.prose h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 1.75em 0 0.5em;
}
.prose ul, .prose ol {
  margin: 0 0 1.25em 1.25em;
  padding: 0;
}
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--sq-green); }

.article-figure {
  margin: 32px 0 36px;
  padding: 12px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
}
.article-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.prose .callout {
  background: var(--gray-100);
  border-left: 3px solid var(--sq-blue);
  border-radius: 0 12px 12px 0;
  padding: 20px;
  margin: 28px 0;
  font-size: 16px;
  color: var(--gray-700);
}
.prose .callout strong { color: var(--black); }
.prose .pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--gray-700);
  margin: 36px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gray-200);
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sq-blue);
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* Post CTA band */
.post-cta {
  margin: 64px 0 0;
  padding: 40px 36px;
  background: var(--black);
  border-radius: 20px;
  text-align: center;
}
.post-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-weight: 400;
}
.post-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.post-cta .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── WHY LOCALPAY (M3) ── */
.why-localpay {
  background: var(--white);
}
.why-localpay .why-body {
  max-width: 720px;
  margin-top: 8px;
}
.why-localpay .why-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.15em;
}
.why-localpay .why-body p:last-child { margin-bottom: 0; }
.why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  margin: 48px 0 40px;
}
.why-compare .value-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
.why-compare ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-compare li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-700);
}
.why-compare li:last-child { margin-bottom: 0; }
.why-compare li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sq-green);
}
.why-compare .value-card.alone li::before {
  background: var(--gray-200);
}
.why-localpay .why-cta-wrap {
  margin-top: 36px;
}
.why-faq {
  margin-top: 64px;
  max-width: 720px;
}
.why-faq .faq-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 28px;
  font-weight: 400;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--black);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; color: var(--sq-blue); }
.faq-item .faq-a {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
}
@media (max-width: 768px) {
  .why-compare { grid-template-columns: 1fr; }
}

/* Prose comparison table (blog) */
.prose .table-wrap {
  overflow-x: auto;
  margin: 1.5em 0 1.75em;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
}
.prose table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}
.prose table.compare th,
.prose table.compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.prose table.compare th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-100);
}
.prose table.compare tr:last-child td { border-bottom: none; }
.prose table.compare td:first-child {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

/* Calendar */
.calendar-table-wrap {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}
table.calendar {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
table.calendar th {
  text-align: left;
  padding: 14px 20px;
  background: var(--gray-100);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
table.calendar td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
  color: var(--gray-700);
}
table.calendar tr:last-child td { border-bottom: none; }
table.calendar tr.week-current {
  background: #EFF6FF;
}
table.calendar tr.week-future td {
  color: var(--gray-500);
}
table.calendar tr.week-future td a { color: var(--gray-700); }
table.calendar td.week-num {
  font-weight: 700;
  color: var(--sq-blue);
  white-space: nowrap;
}
table.calendar td.date {
  white-space: nowrap;
  font-weight: 500;
}
table.calendar a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}
table.calendar a:hover { color: var(--sq-blue); }

/* Mobile calendar cards */
.calendar-cards { display: none; list-style: none; }
.cal-card {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 12px;
  background: var(--white);
}
.cal-card.current { background: #EFF6FF; border-color: #BFDBFE; }
.cal-card.future { opacity: 0.9; }
.cal-card .top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.cal-card .top .wk { color: var(--sq-blue); }
.cal-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cal-card h3 a { color: inherit; text-decoration: none; }
.cal-card h3 a:hover { color: var(--sq-blue); }
.cal-card .angle {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-500);
}

.nav-links a.active { color: var(--black); font-weight: 600; }

@media (max-width: 768px) {
  .page-hero { padding: 48px 24px 28px; }
  .content-wrap { padding: 0 24px 64px; }
  .post-card { padding: 22px 20px; }
  .post-cta { padding: 32px 24px; }
  .calendar-table-wrap { display: none; }
  .calendar-cards { display: block; }
}

/* ── LEAD MODAL (M2) ── */
.lead-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lead-modal.is-open {
  display: flex;
}
.lead-modal__dialog {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: leadModalIn 0.25s ease;
}
@keyframes leadModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.lead-modal__header {
  background: var(--black);
  padding: 28px 32px 24px;
}
.lead-modal__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.lead-modal__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sq-green);
}
.lead-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  line-height: 1;
  padding: 0;
}
.lead-modal__close:hover {
  color: rgba(255, 255, 255, 0.8);
}
.lead-modal__title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 400;
}
.lead-modal__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  line-height: 1.5;
}
.lead-modal__form {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-modal__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.lead-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.lead-field input,
.lead-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
  background: var(--white);
  resize: vertical;
}
.lead-field input:focus,
.lead-field textarea:focus {
  border-color: var(--sq-blue);
}
.lead-modal__error {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.lead-modal__error.is-visible {
  display: block;
}
.lead-modal__submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px;
  background: var(--sq-blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lead-modal__submit:hover:not(:disabled) {
  background: var(--sq-blue-dark);
}
.lead-modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.lead-modal__footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}
.lead-modal__success {
  display: none;
  padding: 48px 32px;
  text-align: center;
}
.lead-modal__success.is-visible {
  display: block;
}
.lead-modal__success-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.lead-modal__success h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 400;
}
.lead-modal__success p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 8px;
}
.lead-modal__success-phone {
  display: inline-block;
  margin: 12px 0 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}
.lead-modal__success-phone:hover {
  color: var(--sq-blue);
}
.lead-modal__success-close {
  padding: 12px 28px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

/* ── WHY LOCALPAY punch-up (Higgsfield structure, LocalPay voice) ── */
.why-localpay--punch {
  background: linear-gradient(180deg, #0A0A0A 0%, #121212 42%, #F5F5F5 42%, #F5F5F5 100%);
  padding-top: 0;
}
.why-localpay--punch .section-inner { padding-top: 96px; }
.why-hero-band {
  max-width: 760px;
  margin-bottom: 48px;
}
.why-localpay--punch .why-label {
  color: var(--sq-green);
}
.why-localpay--punch .why-title {
  color: var(--white);
}
.why-localpay--punch .why-sub {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.why-hook {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 520px;
  line-height: 1.45;
}
.why-compare--punch {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: transparent;
  margin: 0 0 32px;
  border-radius: 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.why-card--alone {
  background: #FAFAFA;
  border-color: var(--gray-200);
  opacity: 0.92;
  box-shadow: none;
}
.why-card--us {
  border: 2px solid var(--sq-blue);
  box-shadow: 0 16px 48px rgba(0, 106, 255, 0.18);
  transform: translateY(-6px);
}
.why-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.why-card__badge--us {
  color: var(--white);
  background: var(--sq-blue);
}
.why-card h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--black);
}
.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.why-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
}
.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
}
.why-card--us li::before {
  background: var(--sq-green);
}
.why-card__miss {
  color: var(--gray-500);
}
.why-card__foot {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}
.why-card__foot--us {
  color: var(--sq-blue);
  font-weight: 600;
  border-top-color: #D6E8FF;
}
.why-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  z-index: 2;
}
.why-vs span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sq-green);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.35);
}
.why-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 56px;
}
.why-cta-bar__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 420px;
}
.why-cta-bar__copy strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}
.why-cta-bar__copy span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.why-cta-bar__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.why-cta-phone {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.25);
}
.why-cta-phone:hover {
  background: rgba(255,255,255,0.08) !important;
}
.why-localpay--punch .why-faq {
  max-width: 760px;
}
.why-localpay--punch .faq-item {
  background: var(--white);
}
@media (max-width: 860px) {
  .why-localpay--punch {
    background: linear-gradient(180deg, #0A0A0A 0%, #121212 28%, #F5F5F5 28%, #F5F5F5 100%);
  }
  .why-compare--punch {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-vs {
    width: 100%;
    height: 0;
    position: relative;
  }
  .why-vs span {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }
  .why-card--us { transform: none; }
  .why-cta-bar { flex-direction: column; align-items: flex-start; }
}

/* Hero sales CTA */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-phone {
  font-weight: 600;
  color: var(--sq-blue) !important;
  border-color: #D6E8FF;
}
.hero-phone:hover {
  background: #EFF6FF !important;
}
.nav-cta .nav-phone {
  display: none;
}
@media (min-width: 980px) {
  .nav-cta .nav-phone { display: inline-flex; }
}


/* ── SERVICE AREA (M5 local proof) ── */
.service-area {
  background: var(--gray-100);
  padding-top: 0;
}
.service-area .section-inner {
  padding-top: 72px;
  padding-bottom: 80px;
}
.service-area__eyebrow {
  color: var(--sq-green);
}
.service-area__title {
  max-width: 720px;
}
.service-area__sub {
  max-width: 720px;
  color: var(--gray-500);
}
.service-area__body {
  max-width: 720px;
  margin: 8px 0 28px;
}
.service-area__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.service-area__body p:last-child { margin-bottom: 0; }
.service-area__body em { font-style: italic; }
.service-area__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
}
.area-chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 14px;
  line-height: 1.2;
}
/* chips sit on gray-100 band — lift fill to white so pills read */
.service-area .area-chip {
  background: var(--white);
}
.area-chip--home {
  background: #EFF6FF !important;
  border-color: #BFDBFE;
  color: var(--sq-blue);
  font-weight: 600;
}
.service-area__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 32px;
}
.proof-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proof-tile__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--sq-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.proof-tile__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.proof-tile__value {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.proof-tile__value a {
  color: inherit;
  text-decoration: none;
}
.proof-tile__value a:hover {
  color: var(--sq-blue);
}
.service-area__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.service-area__phone {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}
.service-area__phone:hover {
  background: var(--white);
}
@media (max-width: 720px) {
  .service-area__proof {
    grid-template-columns: 1fr;
  }
  .service-area .section-inner {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

/* Booking / path picker */
.hero-book-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gray-500);
}
.hero-book-note a, .hero-book-note .text-link {
  color: var(--sq-blue);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lead-path { display: none !important; } /* deprecated: chips replaced by .lead-choice */
.lead-path__chip { display: none !important; }

.lead-choice {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-choice__btn {
  width: 100%;
  min-height: 64px;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.lead-choice__btn:hover {
  transform: translateY(-1px);
}
.lead-choice__btn--primary {
  background: var(--sq-blue);
  border: 2px solid var(--sq-blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 106, 255, 0.28);
}
.lead-choice__btn--primary:hover {
  background: var(--sq-blue-dark);
  border-color: var(--sq-blue-dark);
}
.lead-choice__btn--secondary {
  background: var(--white);
  border: 2px solid var(--black);
  color: var(--black);
}
.lead-choice__btn--secondary:hover {
  background: var(--gray-100);
}
.lead-choice__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.lead-choice__sub {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.85;
}
.lead-choice__btn--primary .lead-choice__sub {
  color: rgba(255, 255, 255, 0.9);
}
.lead-choice__btn--secondary .lead-choice__sub {
  color: var(--gray-500);
  opacity: 1;
}
.lead-choice__note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.45;
  text-align: center;
}
.lead-form__back {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
}
.lead-form__back:hover {
  color: var(--black);
}
.lead-modal__booking-cta {
  display: inline-flex;
  margin: 16px 0 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--sq-blue);
  color: var(--white) !important;
  font-weight: 600;
  text-decoration: none !important;
}
.lead-modal__booking-cta:hover { background: var(--sq-blue-dark); }

/* Higgsfield-clarity CTA weight (LocalPay honest) */
.btn-xl {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  color: var(--white);
  background: var(--sq-blue);
  letter-spacing: -0.02em;
  box-shadow: 0 12px 32px rgba(0, 106, 255, 0.35);
  min-height: 56px;
}
.btn-xl:hover {
  background: var(--sq-blue-dark);
  transform: translateY(-1px);
}
.hero-actions--sell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 420px;
}
.hero-actions--sell .btn-xl {
  width: 100%;
  text-align: center;
}
.hero-secondary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.hero-secondary .btn-ghost {
  width: 100%;
  justify-content: center;
  border-width: 1.5px;
}
.hero-secondary__sub {
  font-size: 13px;
  color: var(--gray-500);
  padding-left: 4px;
}

/* Service area — Anywhere + NC backyard */
.service-area__modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0 28px;
}
.service-mode {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 16px 16px 22px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
}
.service-mode--home {
  border-color: #D6E8FF;
}
.service-mode__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 14px;
  background: var(--gray-100);
}
.service-mode__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.service-mode__badge--home {
  color: var(--white);
  background: var(--sq-blue);
}
.service-mode h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service-mode p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-600);
  margin: 0;
}
.why-media {
  margin: 0 0 28px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.why-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
}
@media (max-width: 760px) {
  .service-area__modes { grid-template-columns: 1fr; }
  .service-mode__img { height: 160px; }
}

/* ── M6 Offer landing: /offers/free-equipment/ ── */
.offer-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}
.offer-hero {
  padding: 72px 32px 64px;
  max-width: 1160px;
  margin: 0 auto;
}
.offer-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.offer-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0 18px;
  color: var(--black);
}
.offer-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: 28px;
}
.offer-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 420px;
}
.offer-cta-primary,
.offer-hero__actions .btn-xl {
  width: 100%;
  text-align: center;
}
.offer-hero__secondary {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offer-cta-secondary {
  width: 100%;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  min-height: 52px;
}
.offer-hero__note {
  font-size: 13px;
  color: var(--gray-500);
  padding-left: 2px;
}
.offer-hero__note a {
  color: var(--sq-blue);
  font-weight: 600;
  text-decoration: none;
}
.offer-hero__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  background: var(--gray-100);
}
.offer-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.offer-steps {
  background: var(--gray-100);
  padding: 72px 0;
}
.offer-steps h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.offer-steps__list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin: 0 0 28px;
}
.offer-steps__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}
.offer-steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sq-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-steps__list strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.offer-steps__list p {
  margin: 0;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}
.offer-steps__aside {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.55;
  max-width: 640px;
}

.offer-included {
  padding: 80px 0;
}
.offer-included h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 10px 0 36px;
}
.offer-included__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0;
}
.offer-included__grid li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
}
.offer-included__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #E8F1FF;
  color: var(--sq-blue);
  font-size: 16px;
  margin-bottom: 12px;
}
.offer-included__grid strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.offer-included__grid p {
  margin: 0;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

.offer-audience {
  background: #0A0A0A;
  color: var(--white);
  padding: 80px 0;
}
.offer-audience .section-label { color: var(--sq-green); }
.offer-audience__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.offer-audience h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 10px 0 18px;
}
.offer-audience p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}
.offer-audience__not {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
}
.offer-audience__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px 28px 24px;
}
.offer-audience__stat {
  font-family: var(--font-serif);
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.offer-audience__stat--sm {
  font-size: 32px;
  margin-top: 22px;
}
.offer-audience__card p {
  margin: 0 0 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.offer-how {
  padding: 80px 0;
}
.offer-how h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 10px 0 32px;
}
.offer-how__list {
  list-style: none;
  counter-reset: how;
  margin: 0;
  display: grid;
  gap: 14px;
}
.offer-how__list li {
  counter-increment: how;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: baseline;
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.45;
}
.offer-how__list li::before {
  content: counter(how);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--sq-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer-how__list span {
  color: var(--gray-600);
}

.offer-faq {
  background: var(--gray-100);
  padding: 80px 0;
}
.offer-faq h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 10px 0 32px;
}
.offer-faq__list {
  margin: 0;
  display: grid;
  gap: 12px;
}
.offer-faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 22px;
}
.offer-faq__item dt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.offer-faq__item dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-600);
}

.offer-close {
  padding: 88px 0 72px;
}
.offer-close__inner {
  text-align: center;
  max-width: 640px;
}
.offer-close h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.offer-close p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 28px;
}
.offer-close__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 18px;
}
.offer-close__actions .btn-xl {
  width: 100%;
}
.offer-close__actions .btn-ghost {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  min-height: 52px;
  text-align: center;
}
.offer-close__phone {
  font-size: 15px !important;
  margin-bottom: 0 !important;
}
.offer-close__phone a {
  color: var(--sq-blue);
  font-weight: 700;
  text-decoration: none;
}

.offer-legal {
  max-width: 860px;
  margin: 0 auto 48px;
  padding: 0 32px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray-500);
  text-align: center;
}

@media (max-width: 860px) {
  .offer-hero__grid,
  .offer-audience__inner,
  .offer-included__grid {
    grid-template-columns: 1fr;
  }
  .offer-hero {
    padding: 48px 20px 40px;
  }
  .offer-wrap {
    padding: 0 20px;
  }
  .offer-hero__media img {
    max-height: 280px;
  }
}
