    :root {
      --mcf-white: #FFFFFF;
      --mcf-dark: #191919;
      --mcf-red: #E00000;
      --mcf-red-dark: #7A0000;
      --mcf-silver: #9CA3AF;
      --mcf-silver-light: #E8E8E8;
      --mcf-text-secondary: #5C6370;
      --mcf-yellow: #F8AA35;
      --mcf-orange: #FF5804;
      --mcf-error: #DC2626;
      --mcf-success: #16A34A;
      --mcf-success-light: #DCFCE7;
      --mcf-error-light: #FEE2E2;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: var(--mcf-white);
      color: var(--mcf-dark);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    /* Focus visible for keyboard navigation */
    :focus-visible {
      outline: 2px solid var(--mcf-red);
      outline-offset: 2px;
    }

    :focus:not(:focus-visible) {
      outline: none;
    }

    /* Header */
    .header {
      background: var(--mcf-dark);
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-link {
      display: inline-flex;
      align-items: center;
    }

    .logo {
      height: 40px;
      width: auto;
    }

    .header-cta {
      color: var(--mcf-white);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border: 1px solid var(--mcf-silver);
      transition: all 0.2s ease;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    .header-cta:hover {
      background: var(--mcf-white);
      color: var(--mcf-dark);
    }

    /* Hero Section */
    .hero {
      background: var(--mcf-dark);
      color: var(--mcf-white);
      padding: 5rem 2rem 6rem;
      position: relative;
      overflow: hidden;
    }

    /* Animated gradient background */
    .hero::before {
      content: '';
      position: absolute;
      width: 100vw;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(224, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(224, 0, 0, 0.1) 0%, transparent 50%);
    }

    @keyframes gradientMove {
      0% { transform: translateX(-5%) translateY(-5%); }
      100% { transform: translateX(5%) translateY(5%); }
    }

    /* Chevron pattern background */
    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10 L50 30 L30 50' stroke='%23333' stroke-width='1' fill='none' opacity='0.3'/%3E%3C/svg%3E");
      background-size: 60px 60px;
      opacity: 0.4;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(224, 0, 0, 0.2);
      border: 1px solid var(--mcf-red);
      color: var(--mcf-white);
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
      border-radius: 2px;
    }

    .hero-badge::before {
      content: '';
      width: 10px;
      height: 10px;
      background: var(--mcf-red);
      border-radius: 50%;
      animation: pulse 2s infinite;
      box-shadow: 0 0 8px var(--mcf-red);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.1); }
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .hero h1 strong {
      font-weight: 600;
      color: var(--mcf-red);
    }

    .hero-description {
      font-size: 1.125rem;
      color: var(--mcf-silver);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      font-style: italic;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-value {
      font-size: 2rem;
      font-weight: 700;
      color: var(--mcf-white);
    }

    .hero-stat-label {
      font-size: 0.75rem;
      color: var(--mcf-silver);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Chevron divider with enhanced animation */
    .chevron-divider {
      display: flex;
      justify-content: center;
      gap: 0.25rem;
      margin-top: 3rem;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .chevron-divider:hover {
      transform: translateY(4px);
    }

    .chevron-divider span {
      width: 14px;
      height: 14px;
      border-right: 2px solid var(--mcf-red);
      border-bottom: 2px solid var(--mcf-red);
      transform: rotate(45deg);
      animation: chevronBounce 1.5s infinite;
    }

    .chevron-divider span:nth-child(2) { animation-delay: 0.15s; }
    .chevron-divider span:nth-child(3) { animation-delay: 0.3s; }

    @keyframes chevronBounce {
      0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
      50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
    }

    /* Mobile CTA in hero */
    .hero-mobile-cta {
      display: none;
      margin-top: 2rem;
    }

    .hero-mobile-cta button {
      background: var(--mcf-red);
      color: var(--mcf-white);
      border: none;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      min-height: 56px;
    }

    @media (max-width: 768px) {
      .hero-mobile-cta {
        display: block;
      }
      .chevron-divider {
        display: none;
      }
      .hero-stats {
        gap: 1.5rem;
      }
      .hero-stat-value {
        font-size: 1.5rem;
      }
    }

    /* Main Content */
    .main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    @media (max-width: 900px) {
      .main {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    /* Benefits Section */
    .benefits {
      padding-top: 1rem;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--mcf-red);
      margin-bottom: 1rem;
    }

    .benefits h2 {
      font-size: 1.75rem;
      font-weight: 300;
      margin-bottom: 2rem;
      color: var(--mcf-dark);
      line-height: 1.3;
    }

    .benefits h2 strong {
      font-weight: 600;
    }

    .benefit-list {
      list-style: none;
    }

    .benefit-item {
      display: flex;
      gap: 1.25rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--mcf-silver-light);
      transition: all 0.2s ease;
      cursor: default;
    }

    .benefit-item:hover {
      padding-left: 0.5rem;
      background: linear-gradient(90deg, rgba(224, 0, 0, 0.03) 0%, transparent 100%);
    }

    .benefit-item:last-child {
      border-bottom: none;
    }

    .benefit-icon {
      width: 40px;
      height: 40px;
      background: var(--mcf-dark);
      color: var(--mcf-white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.125rem;
    }

    .benefit-content h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--mcf-dark);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .benefit-number {
      font-size: 0.625rem;
      background: var(--mcf-silver-light);
      color: var(--mcf-text-secondary);
      padding: 0.125rem 0.375rem;
      border-radius: 2px;
    }

    .benefit-content p {
      font-size: 0.875rem;
      color: var(--mcf-text-secondary);
      line-height: 1.5;
    }

    /* Mobile accordion for benefits */
    @media (max-width: 768px) {
      .benefit-item {
        flex-direction: column;
        gap: 0.75rem;
      }

      .benefit-icon {
        width: 36px;
        height: 36px;
      }
    }

    /* Form Card */
    .form-card {
      background: var(--mcf-white);
      border: 1px solid var(--mcf-silver-light);
      padding: 2.5rem;
      position: relative;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--mcf-red) 0%, var(--mcf-red-dark) 100%);
    }

    .form-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.5rem;
    }

    .form-card h2 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--mcf-dark);
    }

    .sample-report-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 0.75rem 1rem;
      margin-bottom: 1.5rem;
      background: rgba(220, 38, 38, 0.06);
      border: 1px solid rgba(220, 38, 38, 0.25);
      border-radius: 8px;
      color: var(--mcf-red);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
      box-sizing: border-box;
    }

    .sample-report-cta:hover {
      background: rgba(220, 38, 38, 0.11);
      border-color: rgba(220, 38, 38, 0.45);
      text-decoration: none;
    }

    .sample-teaser {
      margin: 1rem 0 1.5rem;
      padding: 1.25rem;
      border: 1px solid var(--mcf-border, #e2e2e2);
      border-radius: 12px;
      background: var(--mcf-surface, #fafafa);
    }
    .sample-teaser-intro { margin: 0 0 1rem; font-size: 0.95rem; }
    .sample-teaser-finding {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #ececec;
      text-align: left;
    }
    .sample-teaser-finding h4 { margin: 0.5rem 0; font-size: 1rem; }
    .sample-teaser-finding p { margin: 0.5rem 0 0; font-size: 0.875rem; }
    .finding-header-row { display: flex; gap: 0.5rem; align-items: center; }
    .sample-sev { color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }
    .sample-cat { font-size: 0.8rem; color: var(--mcf-text-secondary, #666); }
    .sample-bizimpact { color: #6b5900; }

    .form-subtitle {
      font-size: 0.875rem;
      color: var(--mcf-text-secondary);
      margin-bottom: 0.75rem;
    }

    /* Process Steps */
    .process-steps {
      display: flex;
      align-items: center;
      justify-content: space-between;
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
      gap: 0;
    }

    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
      gap: 0.5rem;
    }

    .process-step-icon {
      font-size: 1.5rem;
      line-height: 1;
    }

    .process-step-content {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .process-step-label {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--mcf-red);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .process-step-title {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--mcf-dark);
      line-height: 1.3;
    }

    .process-step-divider {
      flex: 0 0 24px;
      height: 1px;
      background: var(--mcf-silver-light);
      margin-bottom: 1.5rem;
    }

    /* Form Progress */
    .form-progress {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }

    .form-progress-step {
      flex: 1;
      height: 4px;
      background: var(--mcf-silver-light);
      border-radius: 2px;
      transition: background 0.3s ease;
    }

    .form-progress-step.complete {
      background: var(--mcf-success);
    }

    .form-progress-step.current {
      background: var(--mcf-red);
    }

    .form-progress-text {
      font-size: 0.75rem;
      color: var(--mcf-text-secondary);
      margin-bottom: 1rem;
      display: flex;
      justify-content: space-between;
    }

    .form-group {
      margin-bottom: 1.5rem;
      position: relative;
    }

    .form-group label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8125rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: var(--mcf-dark);
    }

    .form-group label .required {
      color: var(--mcf-red);
      margin-left: 5px;
      margin-right: auto;
    }

    .form-group .helper-text {
      font-size: 0.6875rem;
      color: var(--mcf-text-secondary);
      font-weight: 400;
    }

    .input-wrapper {
      position: relative;
    }

    .form-group input {
      width: 100%;
      padding: 0.875rem 2.5rem 0.875rem 1rem;
      border: 1px solid var(--mcf-silver-light);
      background: var(--mcf-white);
      font-size: 1rem;
      color: var(--mcf-dark);
      transition: all 0.2s ease;
    }

    @media (max-width: 768px) {
      .form-group input {
        padding: 1rem 2.5rem 1rem 1rem;
        font-size: 16px; /* Prevents iOS zoom */
      }
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--mcf-dark);
      box-shadow: 0 0 0 3px rgba(25, 25, 25, 0.1);
    }

    .form-group input.valid {
      border-color: var(--mcf-success);
      background: var(--mcf-success-light);
    }

    .form-group input.error {
      border-color: var(--mcf-error);
      background: var(--mcf-error-light);
    }

    .form-group input::placeholder {
      color: var(--mcf-silver);
    }

    /* Validation icon */
    .validation-icon {
      position: absolute;
      right: 0.875rem;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      display: none;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .validation-icon.valid {
      display: flex;
      background: var(--mcf-success);
      color: white;
    }

    .validation-icon.error {
      display: flex;
      background: var(--mcf-error);
      color: white;
    }

    .validation-icon.validating {
      display: flex;
      background: none;
      border: 2px solid var(--mcf-silver-light);
      border-top-color: var(--mcf-red);
      animation: validation-spin 0.8s linear infinite;
    }

    @keyframes validation-spin {
      from { transform: translateY(-50%) rotate(0deg); }
      to { transform: translateY(-50%) rotate(360deg); }
    }

    /* Character counter */
    .char-counter {
      position: absolute;
      right: 0;
      top: 100%;
      font-size: 0.6875rem;
      color: var(--mcf-text-secondary);
      margin-top: 0.25rem;
    }

    .error-message {
      color: var(--mcf-error);
      font-size: 0.75rem;
      margin-top: 0.5rem;
      display: none;
      align-items: center;
      gap: 0.375rem;
    }

    .error-message.visible {
      display: flex;
    }

    .error-message::before {
      content: '!';
      width: 14px;
      height: 14px;
      background: var(--mcf-error);
      color: var(--mcf-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.625rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* Shake animation for errors */
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
      20%, 40%, 60%, 80% { transform: translateX(4px); }
    }

    .form-group.shake input {
      animation: shake 0.5s ease-in-out;
    }

    .turnstile-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 1.5rem 0;
      min-height: 65px;
    }

    .global-error {
      background: var(--mcf-error-light);
      border: 1px solid var(--mcf-error);
      color: var(--mcf-error);
      padding: 1rem;
      margin-bottom: 1.5rem;
      font-size: 0.875rem;
      display: none;
      align-items: center;
      gap: 0.5rem;
    }

    .global-error.visible {
      display: flex;
    }

    .global-error::before {
      content: '⚠';
      font-size: 1rem;
    }

    .retry-btn {
      margin-left: auto;
      background: var(--mcf-error);
      color: white;
      border: none;
      padding: 0.375rem 0.75rem;
      font-size: 0.75rem;
      cursor: pointer;
      flex-shrink: 0;
    }

    .retry-btn:hover {
      background: #B91C1C;
    }

    .non-ecommerce-cta {
      margin-left: auto;
      background: var(--mcf-error);
      color: white;
      text-decoration: none;
      padding: 0.375rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 600;
      flex-shrink: 0;
    }

    .non-ecommerce-cta:hover {
      background: #B91C1C;
    }

    .global-error #global-error-text {
      flex: 1;
    }

    .submit-btn {
      width: 100%;
      padding: 1rem 1.5rem;
      background: var(--mcf-red);
      color: var(--mcf-white);
      border: none;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      min-height: 56px;
    }

    .submit-btn:hover:not(:disabled) {
      background: var(--mcf-red-dark);
    }

    .submit-btn:disabled {
      background: var(--mcf-silver);
      cursor: not-allowed;
    }

    .submit-btn::after {
      content: '→';
      font-size: 1.25rem;
      transition: transform 0.2s ease;
    }

    .submit-btn:hover:not(:disabled)::after {
      transform: translateX(4px);
    }

    .submit-btn.loading::after {
      display: none;
    }

    .submit-reason {
      text-align: center;
      font-size: 0.75rem;
      color: var(--mcf-text-secondary);
      margin-top: 0.75rem;
      min-height: 1rem;
    }

    .form-footer {
      text-align: center;
      margin-top: 1.25rem;
      font-size: 0.75rem;
      color: var(--mcf-text-secondary);
    }

    /* Trust Indicators - Enhanced */
    .trust-section {
      background: var(--mcf-dark);
      padding: 3.5rem 2rem;
      border-top: 4px solid var(--mcf-red);
    }

    .trust-content {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 2rem;
      color: var(--mcf-white);
      position: relative;
    }

    .trust-item + .trust-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10%;
      height: 80%;
      width: 1px;
      background: rgba(255,255,255,0.15);
    }

    .trust-icon {
      display: block;
      margin-bottom: 0.75rem;
      color: rgba(255,255,255,0.6);
      line-height: 0;
    }

    .trust-item strong {
      display: block;
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--mcf-white);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 0.4rem;
    }

    .trust-item span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      font-weight: 400;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    /* Client Logos Section */
    .client-logos-section {
      background: var(--mcf-white);
      padding: 4rem 2rem;
      border-top: 1px solid var(--mcf-silver-light);
    }

    .client-logos-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .client-logos-header {
      margin-bottom: 2.5rem;
    }

    .client-logos-header h2 {
      font-size: 1.75rem;
      font-weight: 300;
      color: var(--mcf-dark);
      margin-bottom: 0;
    }

    .client-logos-header h2 strong {
      font-weight: 600;
    }

    .client-logos-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2.5rem 3.5rem;
    }

    .client-logo-item img {
      height: 120px;
      max-width: 170px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.65;
      transition: filter 0.2s, opacity 0.2s;
    }

    .client-logo-item img:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .client-logos-more {
      margin-top: 2rem;
      font-size: 0.9rem;
    }

    .client-logos-more a {
      color: var(--mcf-red);
      text-decoration: none;
      font-weight: 500;
    }

    .client-logos-more a:hover {
      text-decoration: underline;
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .client-logos-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 2rem;
        padding-bottom: 0.5rem;
      }

      .client-logo-item img {
        height: 90px;
      }
    }

    @media (max-width: 480px) {
      .client-logos-strip {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
      }
    }

    /* FAQ Section */
    .faq-section {
      background: var(--mcf-dark);
      color: var(--mcf-white);
      padding: 4rem 2rem;
    }

    .faq-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq-header h2 {
      font-size: 1.75rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }

    .faq-header h2 strong {
      font-weight: 600;
    }

    .faq-header p {
      color: var(--mcf-silver);
      font-size: 0.9375rem;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1.25rem 0;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--mcf-white);
      font-size: 1rem;
      font-weight: 500;
      font-family: inherit;
      min-height: 44px;
    }

    .faq-question:hover {
      color: var(--mcf-red);
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      font-weight: 300;
      transition: transform 0.2s ease;
    }

    .faq-item.open .faq-question::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--mcf-silver);
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    .faq-item.open .faq-answer {
      max-height: 500px;
      padding-bottom: 1.25rem;
    }

    /* Footer - Enhanced */
    .footer {
      background: var(--mcf-dark);
      color: var(--mcf-white);
      padding: 3rem 2rem 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-main {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 2rem;
    }

    .footer-brand p {
      color: var(--mcf-silver);
      font-size: 0.875rem;
      margin-top: 1rem;
      max-width: 300px;
    }

    .footer-contact h3 {
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .footer-contact a {
      color: var(--mcf-silver);
      text-decoration: none;
      font-size: 0.875rem;
      display: block;
      margin-bottom: 0.5rem;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    .footer-contact a:hover {
      color: var(--mcf-white);
    }

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

    .footer-bottom p {
      font-size: 0.8125rem;
      color: var(--mcf-silver);
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      color: var(--mcf-silver);
      text-decoration: none;
      font-size: 0.8125rem;
      transition: color 0.2s ease;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    .footer-links a:hover {
      color: var(--mcf-white);
    }

    /* Sample score badges — reused by the SW-243 landing teaser (6 pillars). */
    .sample-scores {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .sample-score {
      text-align: center;
      padding: 1rem 0.5rem;
      background: var(--mcf-silver-light);
    }

    .sample-score-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--mcf-dark);
    }

    .sample-score-label {
      font-size: 0.625rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--mcf-text-secondary);
    }

    /* Animations */
    @media (prefers-reduced-motion: no-preference) {
      .hero-content {
        animation: fadeUp 0.6s ease-out;
      }

      .benefit-item {
        animation: fadeUp 0.5s ease-out both;
      }

      .benefit-item:nth-child(1) { animation-delay: 0.1s; }
      .benefit-item:nth-child(2) { animation-delay: 0.2s; }
      .benefit-item:nth-child(3) { animation-delay: 0.3s; }
      .benefit-item:nth-child(4) { animation-delay: 0.4s; }
      .benefit-item:nth-child(5) { animation-delay: 0.5s; }

      .form-card {
        animation: fadeUp 0.6s ease-out 0.2s both;
      }

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

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Loading spinner */
    .spinner {
      width: 20px;
      height: 20px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: white;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Loading dots animation */
    .loading-dots {
      display: inline-block;
      margin-left: 0.25rem;
    }

    .loading-dots::after {
      content: '';
      animation: dots 1.5s steps(4, end) infinite;
    }

    @keyframes dots {
      0%, 20% { content: ''; }
      40% { content: '.'; }
      60% { content: '..'; }
      80%, 100% { content: '...'; }
    }

    /* Responsive refinements */
    @media (max-width: 768px) {
      .sample-scores {
        grid-template-columns: repeat(3, 1fr);
      }

      .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
      }

      .trust-item {
        padding: 1.5rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .trust-item + .trust-item::before {
        top: 15%;
        height: 70%;
      }

      .trust-item:nth-child(odd)::before {
        display: none;
      }

      .trust-item:nth-child(3),
      .trust-item:nth-child(4) {
        border-bottom: none;
      }

      .trust-item strong {
        font-size: 1.75rem;
      }

      .footer-main {
        flex-direction: column;
      }

      .hero {
        padding: 3rem 1.5rem 4rem;
      }

      .main {
        padding: 2rem 1.5rem;
      }

      .form-card {
        padding: 1.5rem;
      }
    }
