  :root {
    --amber: #ffa028;
    --amber-dim: rgba(255,160,40,0.4);
    --amber-faint: rgba(255,160,40,0.05);
    --bg: #08090d;
    --bg2: #0c0e14;
    --text: #e8e8e8;
    --muted: rgba(255,255,255,0.45);
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* Focus */
  :focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--amber-dim); }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(8,9,13,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,160,40,0.08);
  }

  .nav-logo {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .nav-logo span { color: rgba(255,255,255,0.5); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }

  .nav-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
  }

  .nav-contact {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .nav-contact:hover { color: var(--amber); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,160,40,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,160,40,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridDrift 30s linear infinite;
  }

  @keyframes gridDrift {
    0% { transform: translate(0,0); }
    100% { transform: translate(48px, 48px); }
  }

  .hero-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,160,40,0.07) 0%, transparent 65%);
    top: -100px;
    right: -100px;
    animation: orbPulse 6s ease-in-out infinite;
  }
  @keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
  }

  .hero-grid,
  .hero-orb {
    pointer-events: none;
    z-index: 0;
  }

  .hero > :not(.hero-grid):not(.hero-orb) {
    position: relative;
    z-index: 1;
  }

  .hero-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
    position: relative;
    z-index: 2;
  }

  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 10px var(--amber);
    animation: blink 2s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .status-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    font-weight: bold;
    color: var(--amber);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 10vw, 128px);
    line-height: 0.88;
    color: #fff;
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s ease 0.1s both;
  }

  .hero-headline .accent {
    color: var(--amber);
    display: block;
    text-shadow: 0 0 60px rgba(255,160,40,0.3);
  }

  .hero-sub {
    margin-top: 28px;
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 44px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s ease 0.3s both;
    flex-wrap: wrap;
  }

  .hero-phone-cta {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--amber);
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
  }

  .hero-phone-cta:hover { opacity: 0.75; }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.4s both;
  }

  .hero-trust-item {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,160,40,0.85);
    border: 1px solid rgba(255,160,40,0.35);
    padding: 8px 16px;
  }

  .btn-primary {
    background: var(--amber);
    color: #08090d;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 32px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: opacity 0.2s;
  }

  .btn-primary:hover { opacity: 0.85; }

  .btn-secondary {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover { color: var(--amber); border-color: var(--amber); }

  .btn-call {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,160,40,0.4);
    padding-bottom: 2px;
    transition: opacity 0.2s;
  }

  .btn-call:hover { opacity: 0.75; }


  /* SECTION BASE */
  section {
    padding: 100px 48px;
    position: relative;
  }

  .section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--amber);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
  }

  .section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,160,40,0.2), transparent);
    margin-bottom: 64px;
  }

  /* SERVICES */
  .services-section { background: var(--bg2); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    margin-top: 48px;
  }

  .service-card {
    background: var(--bg);
    padding: 36px 32px;
    border: 1px solid rgba(255,160,40,0.06);
    transition: border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--amber), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover { border-color: rgba(255,160,40,0.15); background: rgba(255,160,40,0.02); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    opacity: 0.7;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }

  .service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }



  /* PRICING */
  .pricing-section { background: var(--bg2); }

  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin-top: 48px;
  }

  .pricing-card {
    background: var(--bg);
    border: 1px solid rgba(255,160,40,0.08);
    padding: 44px 36px;
    position: relative;
    transition: border-color 0.3s;
  }


  .pricing-type {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
  }

  .pricing-price sup { font-size: 24px; color: var(--muted); vertical-align: super; }
  .pricing-price sub { font-size: 18px; color: var(--muted); }

  .pricing-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.65;
  }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .pricing-features li::before {
    content: '>';
    color: var(--amber);
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    flex-shrink: 0;
  }

  /* CONTACT */
  .contact-inner {
    max-width: 600px;
  }


  .contact-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  .contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
  }

  .contact-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,160,40,0.6);
    border: 1px solid rgba(255,160,40,0.15);
    padding: 6px 12px;
  }

  /* FOOTER */
  footer {
    padding: 32px 48px;
    border-top: 1px solid rgba(255,160,40,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.15em;
  }

  .footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
  }

  .footer-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.08em;
  }

  .footer-details a {
    color: var(--muted);
    text-decoration: none;
  }

  .footer-details a:hover { color: var(--amber); }

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

  /* RESPONSIVE */
  .faq-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

  .faq-q {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .faq-a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }


  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    max-width: 720px;
  }

  /* CONTACT FORM */
  .contact-intro {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }

  .contact-helper {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    margin-top: 8px;
    line-height: 1.65;
  }

  .contact-form {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

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

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .form-input {
    background: var(--bg2);
    border: 1px solid rgba(255,160,40,0.12);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-input:focus { border-color: rgba(255,160,40,0.4); }

  textarea.form-input { resize: vertical; }

  .form-submit {
    background: var(--amber);
    color: #08090d;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 32px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
  }

  .form-submit:hover { opacity: 0.85; }

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

  .honeypot { display: none; }

  /* TRUST BLOCK */
  .trust-section { background: var(--bg2); }

  .trust-inner { max-width: 680px; }

  .homepage-trust .trust-inner {
    max-width: 1120px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
  }

  .homepage-trust .trust-content { max-width: 680px; }

  .homepage-trust .trust-photo {
    border: 1px solid rgba(255,160,40,0.16);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
  }

  .homepage-trust .trust-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .trust-statement {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
  }

  .trust-statement p { margin-bottom: 16px; }
  .trust-statement p:last-child { margin-bottom: 0; }

  .trust-cta {
    margin-top: 32px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--amber);
    letter-spacing: 0.1em;
  }

  .trust-cta a {
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,160,40,0.3);
    transition: border-color 0.2s;
  }

  .trust-cta a:hover { border-color: var(--amber); }

  /* HOW IT WORKS */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 48px;
  }

  .step-card {
    background: var(--bg2);
    padding: 36px 32px;
    border: 1px solid rgba(255,160,40,0.06);
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--amber-dim);
    line-height: 1;
    margin-bottom: 12px;
  }

  .step-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--bg2); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin-top: 48px;
  }

  .testimonial-card {
    background: var(--bg);
    border: 1px solid rgba(255,160,40,0.08);
    padding: 36px 32px;
  }

  .review-stars {
    color: var(--amber);
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .testimonial-meta {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .testimonial-quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
  }

  .testimonial-author {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .testimonial-location {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  .review-trust {
    font-size: 15px;
    color: var(--muted);
    margin: 12px 0 20px;
    max-width: 560px;
    line-height: 1.65;
  }

  .review-context {
    color: var(--muted);
    font-size: 14px;
    margin-top: -36px;
    margin-bottom: 40px;
  }

  .why-section { background: var(--bg2); }

  /* PRICING */
  .pricing-price--start { font-size: 40px; }
  .pricing-price--text { font-size: 36px; padding-top: 10px; }

  @media (min-width: 769px) and (max-width: 1100px) {
    .why-section .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 769px) and (max-width: 1240px) {
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-right .nav-contact:last-child,
    .nav-right .nav-divider { display: none; }
    .hero { padding: 100px 24px 80px; }
    section { padding: 72px 24px; }
    .homepage-trust .trust-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 24px; }
  }

  @media (max-width: 480px) {
    .testimonial-meta {
      flex-direction: column;
      gap: 8px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
    }
  }

  /* HERO (Spec Overrides) */
  .hero .brand {
    font-family: "Share Tech Mono", monospace;
    letter-spacing: 0.12em;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.95;
    margin: 0;
  }

  .subheadline {
    font-size: 18px;
    color: var(--muted);
    max-width: 720px;
    margin: 18px 0 0;
  }

  .trust-line {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    margin: 18px 0 0;
  }

  .hero-reassurance {
    color: var(--muted);
    font-size: 15px;
    margin: 10px 0 0;
  }
  .cta.primary {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 20px 0 0 0;

    background: #ffa028;
    color: #000;
    font-weight: bold;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
  }

  .cta.primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
  }

  .cta-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 10px 0 0;
  }

  .secondary-cta {
    margin-top: 18px;
  }

  .secondary-cta a {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0 10px;
    color: var(--text);
    text-decoration: none;
  }

  .secondary-cta a:hover {
    opacity: 1;
  }

  /* PRIVACY PAGE */
  .privacy-section {
    padding-top: 140px;
  }

  /* THANK YOU PAGE */
  .thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at top right, rgba(255,160,40,0.10), transparent 35%),
      var(--bg);
    padding: 32px;
  }

  .thank-you-card {
    width: 100%;
    max-width: 680px;
    background: var(--bg2);
    border: 1px solid rgba(255,160,40,0.16);
    padding: 48px;
  }

  .thank-you-label {
    font-family: 'Share Tech Mono', monospace;
    color: var(--amber);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .thank-you-card h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 8vw, 76px);
    line-height: 0.95;
    margin-bottom: 20px;
  }

  .thank-you-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .thank-you-actions a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border: 1px solid rgba(255,160,40,0.55);
    padding: 14px 18px;
  }

  .thank-you-actions a.thank-you-primary {
    background: var(--amber);
    color: var(--bg);
    font-weight: 700;
  }

  @media (max-width: 640px) {
    .thank-you-card { padding: 32px 24px; }
    .thank-you-actions { flex-direction: column; }
    .thank-you-actions a { text-align: center; }
  }

  /* SKIP LINK */
  .skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 1000;
    background: var(--amber);
    color: #08090d;
    padding: 10px 14px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: top 0.2s;
  }

  .skip-link:focus { top: 16px; }

  /* FOOTER LINKS */
  .footer-copy a { color: inherit; text-decoration: none; }
  .footer-copy a:hover { color: var(--amber); }

  /* HELP PAGE */
  .help-nav-min { justify-content: flex-start; }
  .help-nav-min .nav-right { display: none; }

  .cta-buttons { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 520px; }
  .cta-buttons a { width: 100%; text-align: center; }

  .badges { display: flex; flex-wrap: wrap; gap: 10px; }

  .help-hero-sub { max-width: 720px; }
  .help-trustline { max-width: 720px; margin-top: 10px; color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.6; }
  .help-final-note { margin: 0 auto 26px; max-width: 820px; color: rgba(255,255,255,0.75); font-size: 18px; line-height: 1.7; }
  .help-availability { margin: 12px 0 0; max-width: 720px; color: rgba(255,255,255,0.62); font-size: 15px; line-height: 1.6; }
  .help-price-note { margin: 14px 0 0; max-width: 720px; color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.6; }
  .help-final .help-price-note { margin: -10px auto 26px; }
  .help-proof { margin: 0 auto 26px; max-width: 720px; color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.6; }
  .help-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; position: relative; z-index: 2; }
  .help-cred { margin-top: 18px; font-family: 'Share Tech Mono', monospace; font-size: 12px; font-weight: bold; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,160,40,0.85); }
  .help-panel { background: var(--bg2); border-top: 1px solid rgba(255,160,40,0.08); border-bottom: 1px solid rgba(255,160,40,0.08); }
  .help-copy { max-width: 820px; color: rgba(255,255,255,0.75); font-size: 18px; line-height: 1.7; margin-bottom: 14px; }
  .help-copy:last-child { margin-bottom: 0; }
  .help-list { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; padding-left: 0; list-style: none; }
  .help-list li { background: rgba(255,160,40,0.04); border: 1px solid rgba(255,160,40,0.10); padding: 14px 16px; color: rgba(255,255,255,0.78); }
  .help-list li span { color: rgba(255,160,40,0.9); font-family: 'Share Tech Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
  .help-final { text-align: center; }
  .help-final .help-actions { justify-content: center; }
  .help-final .section-title { font-size: clamp(30px, 4vw, 46px); }
  .help-home-wrap { margin-top: 26px; }
  .help-home { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
  .help-home:hover { color: var(--amber); border-color: var(--amber); }

  .help-actions .btn-primary {
    padding: 22px 38px;
    font-weight: 800;
    box-shadow: 0 0 0 1px rgba(255,160,40,0.12), 0 12px 32px rgba(255,160,40,0.10);
  }

  .help-actions .btn-call,
  .help-actions .btn-secondary {
    background: transparent;
    color: var(--amber);
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 18px 34px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid rgba(255,160,40,0.75);
    transition: opacity 0.2s, border-color 0.2s, background 0.2s;
  }

  .help-actions .btn-call:hover,
  .help-actions .btn-secondary:hover {
    opacity: 0.92;
    border-color: rgba(255,160,40,1);
    background: rgba(255,160,40,0.06);
  }

  .help-actions .btn-secondary {
    opacity: 0.78;
    border-width: 1px;
  }

  @media (min-width: 769px) {
    .help-final .cta-buttons { margin: 0 auto; }
  }

  @media (max-width: 768px) {
    .badges { flex-direction: column; }
    .help-actions { flex-direction: column; align-items: stretch; margin-top: 16px; }
    .help-actions a { width: 100%; text-align: center; }
    .help-actions .btn-primary { padding: 22px 18px; }
    .help-actions .btn-call,
    .help-actions .btn-secondary { padding: 18px 18px; }
    .help-list { grid-template-columns: 1fr; }
  }
