    
    /* Reset & tokens */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --primary: #1a2332;
      --accent: #3b82f6;
      --light: #f8fafc;
      --gray: #475569;
      --white: #ffffff;
      --ink: #0b1220;
      --success: #10b981;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: var(--primary);
      line-height: 1.6;
      overflow-x: hidden;
      background: var(--white);
    }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* Accessibility helpers */
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
    .skip-link { position: absolute; left: -999px; top: 8px; background: var(--white); color: var(--primary); padding: 8px 12px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.08); z-index: 1100; }
    .skip-link:focus { left: 8px; outline: 3px solid var(--accent); }

    a, button { outline: none; }
    a:focus-visible, .btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 10px; }

    /* Navigation */
    nav { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); z-index: 1000; padding: 20px 0; transition: var(--transition); border-bottom: 1px solid #e0e0e0; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
    nav.scrolled { padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
    .nav-container { display: flex; justify-content: space-between; align-items: center; }
    .logo a { text-decoration: none; color: var(--primary); font-size: 24px; font-weight: 700; letter-spacing: -0.5px; }
    .company-logo { 
      height: auto; 
      width: 210px; 
      max-width: 210px; 
      object-fit: contain; 
      transition: transform 0.3s ease;
    }
    .logo a:hover .company-logo { 
      transform: scale(1.05); 
    }
    
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--gray); font-size: 14px; font-weight: 600; transition: var(--transition); position: relative; }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
    .nav-links a:hover::after { width: 100%; }

    /* Hero */
    .hero { min-height: 85vh; display: flex; align-items: flex-start; background: #fafcff; position: relative; padding-top: 100px; padding-bottom: 80px; overflow: hidden; border-bottom: 1px solid #f0f0f0; }
    .hero-content { position: relative; z-index: 2; }
    @keyframes float { 0%,100%{ transform: translateY(0) rotate(0) } 50%{ transform: translateY(-20px) rotate(5deg) } }
    .hero-content { position: relative; z-index: 1; max-width: 720px; }
    .eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; margin-bottom: 12px; }
    .hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; opacity: 0; animation: fadeInUp .8s ease forwards; }
    .hero p { font-size: 18px; color: var(--gray); margin-bottom: 24px; opacity: 0; animation: fadeInUp .8s ease .15s forwards; }

    .benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 12px 0 24px; }
    .benefit { display: flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 600; font-size: 14px; }
    .benefit .icon { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 2; }

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

    .cta-group { display: flex; gap: 16px; justify-content: center; align-items: center; opacity: 0; animation: fadeInUp .8s ease .3s forwards; margin: 0 auto; }
    .btn { padding: 16px 24px; font-size: 16px; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-block; }
    .btn-primary { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
    .btn-primary::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,0.12); transform: translate(-50%,-50%); transition: width .6s, height .6s; }
    .btn-primary:hover::before { width: 300px; height: 300px; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,35,50,0.2); }
    .btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
    .btn-secondary:hover { background: var(--primary); color: var(--white); }

    /* Feature Boxes - Prominent Position at Top of Hero */
    .feature-boxes { 
      display: flex; 
      gap: 20px; 
      margin: 0 0 40px 0; 
      padding-top: 20px;
      opacity: 0; 
      animation: fadeInUp .8s ease .1s forwards; 
      justify-content: center;
      width: 100%;
    }
    .feature-box { 
      flex: 1; 
      max-width: 350px;
      background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%); 
      border: 3px solid var(--primary); 
      border-radius: 20px; 
      padding: 15px 20px; 
      cursor: pointer; 
      transition: all 0.3s ease; 
      text-align: center;
      box-shadow: 0 8px 24px rgba(26,35,50,0.08);
      position: relative;
      overflow: hidden;
    }
    .feature-box::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 80px;
      height: 80px;
      background: var(--accent);
      opacity: 0.1;
      border-radius: 50%;
      transform: translate(30%, -30%);
    }
    .feature-box:hover { 
      transform: translateY(-6px); 
      box-shadow: 0 16px 40px rgba(26,35,50,0.15); 
      background: linear-gradient(135deg, var(--primary) 0%, #1a2744 100%);
    }
    .feature-box:hover h3,
    .feature-box:hover p {
      color: white;
    }
    .feature-box:hover .box-logo {
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .feature-box h3 { 
      font-size: 18px; 
      font-weight: 800; 
      color: var(--primary); 
      margin: 0 0 8px 0; 
      transition: color 0.3s ease;
    }
    
    /* Feature box logos - Bigger and more prominent */
    .box-logo {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 10px;
      margin: 0 auto 10px;
      display: block;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .feature-box p { 
      font-size: 14px; 
      color: var(--gray); 
      margin: 0; 
      transition: color 0.3s ease;
    }

    /* Trust Bar */
    .trust-bar { padding: 48px 0; background: #ffffff; border-bottom: 1px solid #f0f0f0; }
    .trust-content { text-align: center; }
    .trust-content p { color: var(--gray); margin-bottom: 24px; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; }
    .metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 40px; margin-top: 16px; }
    .metric { text-align: center; }
    .metric-number { font-size: 44px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
    .metric-label { color: var(--gray); font-size: 14px; }

    /* Sections */
    section { scroll-margin-top: 90px; }
    .services { padding: 48px 0; background: #fefefe; border-bottom: 1px solid #f0f0f0; }
    .section-header { text-align: center; max-width: 720px; margin: 0 auto 32px; }
    .section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; letter-spacing: -0.5px; }
    .section-header p { color: var(--gray); font-size: 18px; }
    .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .services .why-grid { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
    .service-card { 
      background: var(--white); 
      padding: 24px; 
      border-radius: 16px; 
      transition: var(--transition); 
      border: 1px solid rgba(26,35,50,0.1);
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .service-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
    .service-icon { width: 56px; height: 56px; background: var(--white); border: 2px solid var(--ink); border-radius: 12px; margin-bottom: 18px; display: inline-flex; align-items: center; justify-content: center; }
    .service-icon .icon { width: 28px; height: 28px; stroke: var(--ink); stroke-width: 2; fill: none; }
    .service-card h3 { font-size: 18px; margin-bottom: 8px; }
    .service-card p { color: var(--gray); font-size: 14px; }

    /* Academy CTA Card */
    .academy-cta-card {
      max-width: 880px;
      margin: 0 auto;
      padding: 40px;
      background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(16,185,129,0.12) 100%);
      border: 1px solid rgba(26,35,50,0.08);
      border-radius: 24px;
      box-shadow: 0 25px 60px rgba(15,32,72,0.12);
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
      text-align: center;
    }

    .academy-cta-eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .academy-cta-subtitle {
      color: var(--gray);
      max-width: 620px;
      margin: 0 auto 20px;
    }

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

    .academy-cta-highlight {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(26,35,50,0.06);
      font-weight: 600;
      font-size: 14px;
      color: var(--primary);
      box-shadow: 0 10px 24px rgba(26,35,50,0.08);
    }

    .academy-cta-button {
      padding: 18px 42px;
      font-size: 18px;
      border-radius: 14px;
      box-shadow: 0 18px 40px rgba(59,130,246,0.35);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .academy-cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 48px rgba(59,130,246,0.45);
    }

    /* Academy Modal Styling */
    .academy-modal {
      max-width: 760px;
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(155deg, rgba(10,18,32,0.96) 0%, rgba(26,35,50,0.85) 42%, rgba(255,255,255,0.92) 42%);
      box-shadow: 0 40px 80px rgba(11,18,32,0.35);
    }

    .academy-modal .modal-header {
      background: linear-gradient(135deg, #1a2332 0%, #3b82f6 100%);
      padding: 28px 36px;
      border-bottom: none;
    }

    .academy-modal .modal-header h2 {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.3px;
    }

    .academy-modal .close-btn {
      color: rgba(255,255,255,0.85);
      transition: transform 0.2s ease;
    }

    .academy-modal .close-btn:hover {
      transform: rotate(90deg);
    }

    .academy-modal .modal-body {
      padding: 0;
      background: transparent;
    }

    .academy-application-form {
      padding: 36px 42px 40px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(6px);
    }

    .academy-application-form .form-section {
      margin-bottom: 32px;
      padding-bottom: 0;
      border-bottom: none;
    }

    .academy-application-form .form-section h3 {
      font-size: 18px;
      margin-bottom: 18px;
      padding-bottom: 0;
      border-bottom: none;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .academy-application-form .form-section h3::after {
      content: '';
      width: 44px;
      height: 3px;
      background: var(--accent);
      border-radius: 999px;
    }

    .academy-application-form .form-row {
      gap: 24px;
    }

    .academy-application {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .academy-application .application-card {
      background: #ffffff;
      border: 1px solid rgba(26,35,50,0.08);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    }

    .academy-application .application-heading {
      font-size: 20px;
      margin: 0 0 18px;
      color: var(--primary);
    }

    .academy-application .application-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px 24px;
    }

    .academy-application .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .academy-application label {
      font-weight: 600;
      color: var(--primary);
      font-size: 0.95rem;
    }

    .academy-application input,
    .academy-application select,
    .academy-application textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,0.12);
      background: #ffffff;
      font-size: 15px;
      line-height: 1.4;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .academy-application textarea {
      min-height: 120px;
      resize: vertical;
    }

    .academy-application input:focus,
    .academy-application select:focus,
    .academy-application textarea:focus {
      border-color: rgba(59,130,246,0.6);
      box-shadow: 0 0 0 4px rgba(59,130,246,0.18);
      outline: none;
    }

    .academy-application .radio-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }

    .academy-application .radio-item {
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,0.12);
      background: #f8fafc;
      box-shadow: inset 0 0 0 1px transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .academy-application .radio-item:hover {
      border-color: rgba(59,130,246,0.35);
      box-shadow: inset 0 0 0 1px rgba(59,130,246,0.12);
    }

    .academy-application .radio-item input[type="radio"]:checked + .radio-mark {
      border-color: rgba(59,130,246,0.65);
      background: rgba(59,130,246,0.15);
      box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
    }

    .academy-application .radio-label-text {
      font-weight: 600;
      color: var(--primary);
    }

    .academy-application .form-actions {
      text-align: center;
      padding: 16px 0 8px;
    }

    .academy-application .submit-btn {
      padding: 16px 36px;
      border-radius: 14px;
      font-size: 17px;
      font-weight: 700;
      background: var(--primary);
      color: var(--white);
      border: none;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .academy-application .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 45px rgba(15,23,42,0.18);
    }

    .academy-application .form-note {
      margin: 16px auto 0;
      max-width: 420px;
      color: rgba(15,23,42,0.6);
      font-size: 0.9rem;
    }

    @media (max-width: 720px) {
      .academy-application .application-card {
        padding: 20px;
        border-radius: 16px;
      }
    }

    /* About Section with CEO */
    .about-section { 
      padding: 48px 0; 
      background: #ffffff;
      border-bottom: 1px solid #f0f0f0;
    }
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 64px;
      align-items: center;
      margin-bottom: 80px;
    }
    .ceo-profile {
      text-align: center;
    }
    .ceo-image {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 24px;
      border: 3px solid var(--light);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .ceo-name {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--primary);
    }
    .ceo-title {
      color: var(--gray);
      font-size: 16px;
      margin-bottom: 16px;
    }
    .ceo-bio {
      color: var(--gray);
      font-size: 14px;
      font-style: italic;
    }
    .about-text h3 {
      font-size: 32px;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .about-text p {
      color: var(--gray);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 16px;
    }


    /* Sourcing Agent Section */
    .agent-section {
      padding: 48px 0;
      background: var(--white);
    }
    .agent-card {
      max-width: 800px;
      margin: 0 auto;
      background: #ffffff;
      padding: 36px;
      border-radius: 20px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 48px;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .agent-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }
    
    .agent-photo {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      border: none;
    }
    .agent-info h3 {
      font-size: 24px;
      margin-bottom: 4px;
    }
    .agent-role {
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 14px;
    }
    .agent-location {
      color: var(--gray);
      font-size: 14px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .agent-bio {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .agent-stats {
      display: flex;
      gap: 32px;
    }
    .agent-stat {
      display: flex;
      flex-direction: column;
    }
    .stat-value {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
    }
    .stat-label {
      font-size: 12px;
      color: var(--gray);
    }

    /* Testimonials Section */
    .testimonials {
      padding: 48px 0;
      background: #f8fbff;
      border-bottom: 1px solid #f0f0f0;
    }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .testimonial-card {
      background: #ffffff;
      padding: 24px;
      border-radius: 16px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
    }
    
    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }
    .quote-icon {
      position: absolute;
      top: 20px;
      right: 24px;
      font-size: 48px;
      color: var(--light);
      font-family: Georgia, serif;
    }
    .stars {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
    }
    .star {
      width: 20px;
      height: 20px;
      fill: #FFD700 !important;
      color: #FFD700 !important;
    }
    .testimonial-text {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .author-info {
      flex: 1;
    }
    .author-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--primary);
    }
    .author-company {
      font-size: 12px;
      color: var(--gray);
    }
    .company-website {
      margin-top: 8px;
    }
    .company-website a {
      font-size: 12px;
      color: var(--primary);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }
    .company-website a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    /* Process */
    .process { padding: 64px 0; background: var(--white); }
    .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; position: relative; }
    .process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); z-index: 0; }
    .step { text-align: left; position: relative; z-index: 1; padding: 24px; background: var(--white); border-radius: 16px; transition: var(--transition); border: 1px solid rgba(26,35,50,0.1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
    .step:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); border-color: var(--accent); }
    .step-number { width: 56px; height: 56px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 18px; font-weight: 700; transition: var(--transition); }
    .step h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.3; }
    .step p { color: var(--gray); font-size: 14px; line-height: 1.5; }
    .step p strong { color: var(--primary); display: block; margin-bottom: 4px; }
    
    /* Grid step cards - consistent styling */
    .grid-step {
      background: var(--white) !important;
      border-radius: 16px !important;
      padding: 24px !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      transition: all 0.3s ease !important;
      cursor: pointer !important;
      border: 1px solid rgba(26,35,50,0.1) !important;
      text-align: center !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
      min-height: 160px !important;
    }
    
    .grid-step:hover {
      transform: translateY(-6px) !important;
      box-shadow: 0 16px 36px rgba(0,0,0,0.08) !important;
      border-color: var(--accent) !important;
    }
    
    
    .grid-step h3 {
      margin: 0 0 16px !important;
      font-size: 16px !important;
      color: var(--primary) !important;
      font-weight: 600 !important;
      line-height: 1.2 !important;
    }
    
    /* Step icons styling */
    .step-icon {
      transition: transform 0.3s ease, opacity 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    
    .grid-step:hover .step-icon {
      transform: scale(1.1);
    }
    
    .expand-btn {
      background: var(--accent) !important;
      border: none !important;
      color: var(--white) !important;
      font-size: 12px !important;
      font-weight: 600 !important;
      cursor: pointer !important;
      padding: 8px 16px !important;
      border-radius: 16px !important;
      transition: all 0.3s ease !important;
      margin-top: auto !important;
    }
    
    .expand-btn:hover {
      background: var(--primary) !important;
      transform: translateY(-1px) !important;
    }
    
    /* Grid step hover effects */
    .grid-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
    }

    /* Contact Form Section */
    .form-container {
      max-width: 700px;
      margin: 0 auto;
      background: var(--light);
      padding: 36px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }
    .form-grid {
      display: grid;
      gap: 24px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
    }
    .form-group.full-width {
      grid-column: 1 / -1;
    }
    .form-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .form-input,
    .form-select,
    .form-textarea {
      padding: 12px 16px;
      border: 2px solid rgba(26,35,50,0.1);
      border-radius: 8px;
      font-size: 15px;
      font-family: inherit;
      transition: var(--transition);
      background: var(--white);
    }
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
    }
    
    /* Custom Dropdown Styling */
    .custom-select {
      position: relative;
      display: block;
      width: 100%;
    }
    .custom-select-trigger {
      position: relative;
      display: block;
      width: 100%;
      padding: 14px 48px 14px 16px;
      border: 2px solid rgba(26,35,50,0.12);
      border-radius: 10px;
      font-size: 15px;
      font-family: inherit;
      font-weight: 500;
      background: var(--white);
      cursor: pointer;
      transition: var(--transition);
      text-align: left;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      color: var(--primary);
    }
    .custom-select-trigger:hover {
      border-color: var(--accent);
      box-shadow: 0 4px 12px rgba(59,130,246,0.08);
      transform: translateY(-1px);
    }
    .custom-select-trigger::after {
      content: '▼';
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 11px;
      color: var(--accent);
      transition: var(--transition);
      font-weight: 600;
    }
    .custom-select.active .custom-select-trigger::after {
      transform: translateY(-50%) rotate(180deg);
    }
    .custom-select-trigger:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(59,130,246,0.12), 0 4px 12px rgba(59,130,246,0.08);
    }
    .custom-select-trigger.placeholder {
      color: var(--gray);
      font-style: italic;
    }
    .custom-select-trigger:not(.placeholder) {
      color: var(--primary);
      font-weight: 600;
    }
    .custom-select-options {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--white);
      border: 2px solid var(--accent);
      border-radius: 12px;
      margin-top: 6px;
      max-height: 220px;
      overflow-y: auto;
      box-shadow: 0 20px 40px rgba(59,130,246,0.15), 0 4px 12px rgba(0,0,0,0.08);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px) scale(0.98);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .custom-select.active .custom-select-options {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }
    .custom-select-option {
      padding: 14px 16px;
      cursor: pointer;
      transition: var(--transition);
      border-bottom: 1px solid rgba(26,35,50,0.04);
      font-weight: 500;
      color: var(--gray);
      position: relative;
    }
    .custom-select-option:hover {
      background: linear-gradient(135deg, var(--light), rgba(59,130,246,0.05));
      color: var(--primary);
      transform: translateX(4px);
    }
    .custom-select-option:last-child {
      border-bottom: none;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }
    .custom-select-option:first-child {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
    .custom-select-option.selected {
      background: var(--accent);
      color: var(--white);
      font-weight: 600;
    }
    .custom-select-option.selected::after {
      content: '✓';
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-weight: 700;
    }
    
    /* Professional Logo Styling */
    .partner-logos img, .communication-apps img, .social-media img {
      object-fit: contain;
      background: transparent;
      transition: all 0.3s ease;
      max-width: 100%;
      height: auto;
    }
    
    /* Partner logos in consistent containers */
    .partner-logos .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: 8px;
      padding: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.04);
      transition: all 0.3s ease;
    }
    .partner-logos .logo-container:hover {
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }
    
    /* Communication app buttons */
    .communication-apps a {
      background: #ffffff !important;
      box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    }
    .communication-apps img {
      width: 24px;
      height: 24px;
    }
    
    /* Social media circular containers */
    .social-media a {
      background: #ffffff !important;
      box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    }
    .social-media img {
      width: 26px;
      height: 26px;
    }
    
    /* Logo visibility enhancements for light backgrounds */
    img[src*="logo"] {
      filter: contrast(1.1) saturate(1.1);
    }
    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }
    .form-submit {
      width: 100%;
      padding: 18px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 12px;
    }
    .form-submit:hover {
      background: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(26,35,50,0.2);
    }
    .form-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    .form-note {
      text-align: center;
      color: var(--gray);
      font-size: 13px;
      margin-top: 16px;
    }
    .form-success {
      background: var(--success);
      color: var(--white);
      padding: 16px;
      border-radius: 8px;
      text-align: center;
      font-weight: 600;
      display: none;
    }
    .form-success.show {
      display: block;
    }

    /* FAQ */
    .faq { padding: 48px 0; background: #ffffff; border-bottom: 1px solid #f0f0f0; }
    .faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 16px; }
    .faq-item { 
      background: #ffffff; 
      border: 1px solid #e0e0e0; 
      border-radius: 16px; 
      padding: 24px; 
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }
    
    .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }
    .faq-item h3 { font-size: 16px; }
    .faq-item p { color: var(--gray); font-size: 14px; margin-top: 8px; }

    /* CTA Section */
    .cta-section { padding: 48px 0; background: #f0f4f8; color: var(--primary); text-align: center; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
    .cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
    .cta-section p { font-size: 18px; margin-bottom: 28px; opacity: .8; }
    .cta-section .btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 12px rgba(26,35,50,0.15); }
    .cta-section .btn-primary:hover { background: #2d3748; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,35,50,0.2); }

    /* Footer */
    footer { padding: 36px 0; background: #f8f9fa; color: var(--primary); text-align: center; border-top: 1px solid #e0e0e0; }
    .footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
    .footer-links { display: flex; gap: 24px; list-style: none; }
    .footer-links a { color: var(--primary); text-decoration: none; font-size: 14px; opacity: 0.8; transition: var(--transition); }
    .footer-links a:hover { opacity: 1; text-decoration: underline; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* Sticky mobile CTA */
    .page--home .sticky-cta { display: none; }

    /* Force single-row grids on desktop */
    @media (min-width: 1024px) {
      .metrics { grid-template-columns: repeat(4, 1fr); }
      .service-grid { grid-template-columns: repeat(4, 1fr); }
    }
    
    /* Tablet */
    @media (max-width: 1023px) and (min-width: 769px) {
      .service-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .services .why-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
      .academy-cta-card { padding: 36px; }
      .academy-application-form { padding: 32px; }
    }

    /* ================================================
       COMPLETE MOBILE OVERHAUL - UNDER 768px
       ALL ISSUES FIXED WITH !IMPORTANT OVERRIDES
       ================================================ */
    @media (max-width: 768px) {
      
      /* ========== 1. TYPOGRAPHY FIXES ========== */
      body, * {
        font-size: 16px !important;
        line-height: 1.6 !important;
      }
      
      /* Specific text size overrides */
      p, span, div, li, a {
        font-size: 16px !important;
        line-height: 1.6 !important;
      }
      
      h1, .hero h1, .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
        font-weight: 800 !important;
      }
      
      h2 {
        font-size: 24px !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
      }
      
      h3 {
        font-size: 20px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
      }
      
      p, body, .hero p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
      }
      
      /* ========== 2. HEADER/NAVIGATION FIXES ========== */
      .nav-links { display: none !important; }
      
      .company-logo, .logo {
        width: 120px !important;
        max-width: 120px !important;
        height: auto !important;
      }
      
      nav, header {
        padding: 10px 20px !important;
        min-height: auto !important;
      }
      
      .mobile-menu-toggle {
        padding: 12px !important;
        min-width: 44px !important;
        min-height: 44px !important;
      }
      
      /* ========== 3. HERO SECTION OPTIMIZATION ========== */
      .hero {
        padding: 60px 20px 40px 20px !important;
        min-height: auto !important;
        text-align: center !important;
        align-items: flex-start !important;
      }
      
      .hero-content {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
      }
      
      .eyebrow {
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
        display: block !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        color: var(--accent) !important;
      }
      
      .hero h1 {
        font-size: 28px !important;
        font-weight: 800 !important;
        margin-bottom: 16px !important;
      }
      
      .hero p {
        font-size: 16px !important;
        margin-bottom: 24px !important;
      }
      
      .cta-group {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
      }
      
      .btn, .hero .btn, button {
        width: 100% !important;
        min-height: 50px !important;
        height: auto !important;
        padding: 16px 24px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 10px !important;
      }
      
      
      /* ========== 4. TRUST METRICS OPTIMIZATION ========== */
      .trust-bar {
        padding: 40px 20px !important;
      }
      
      .metrics {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
      }
      
      .metric-number {
        font-size: 36px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
        color: var(--primary) !important;
      }
      
      .metric-label {
        font-size: 14px !important;
        line-height: 1.4 !important;
      }
      
      /* ========== 5. COMPACT PROCESS SECTION FOR MOBILE ========== */
      .process {
        padding: 30px 10px !important;
      }
      
      .process-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        max-width: 100% !important;
        margin: 0 auto 20px !important;
        padding: 0 !important;
      }
      
      .grid-step {
        min-height: auto !important;
        max-height: 130px !important;
        padding: 15px 10px !important;
        aspect-ratio: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
      }
      
      /* Smaller icons */
      .step-icon,
      .grid-step img {
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto 8px !important;
        display: block !important;
        object-fit: contain !important;
      }
      
      /* Compact text */
      .grid-step h3 {
        font-size: 13px !important;
        font-weight: 600 !important;
        margin: 0 0 8px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        color: var(--primary) !important;
      }
      
      /* Smaller More button */
      .expand-btn,
      .grid-step .expand-btn,
      .grid-step button {
        min-height: 32px !important;
        height: 32px !important;
        padding: 6px 10px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        margin-top: 8px !important;
        width: 100% !important;
        line-height: 1 !important;
        border-radius: 6px !important;
      }
      
      /* Remove hover effects on mobile */
      .grid-step:hover {
        transform: none !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
      }
      
      .expanded-step-details {
        padding: 24px 20px !important;
        margin: 0 auto 32px !important;
        max-width: 100% !important;
      }
      
      .expanded-step-details img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 300px !important;
        margin-bottom: 20px !important;
      }
      
      /* ========== 6. TESTIMONIALS OPTIMIZATION ========== */
      .testimonials {
        padding: 40px 20px !important;
      }
      
      .testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }
      
      .testimonial-card {
        padding: 24px !important;
        margin-bottom: 16px !important;
      }
      
      /* Testimonial text truncation */
      .testimonial-text {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        max-height: 120px !important;
        overflow: hidden !important;
        position: relative !important;
      }
      
      .testimonial-text::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(to bottom, transparent, white);
      }
      
      .testimonial-card {
        position: relative !important;
      }
      
      .testimonial-card .read-more {
        display: inline-block !important;
        color: var(--primary) !important;
        font-weight: 600 !important;
        margin-top: 10px !important;
        cursor: pointer !important;
        font-size: 16px !important;
      }
      
      .author-name {
        font-size: 18px !important;
        font-weight: 700 !important;
      }
      
      .author-company {
        font-size: 16px !important;
        margin-top: 8px !important;
      }
      
      .company-website a {
        font-size: 16px !important;
        min-height: 44px !important;
        display: inline-block !important;
        padding: 8px 0 !important;
      }
      
      /* ========== 7. FOOTER OPTIMIZATION ========== */
      footer {
        padding: 40px 20px !important;
      }
      
      .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 32px !important;
      }
      
      footer a, .footer-links a {
        font-size: 16px !important;
        min-height: 44px !important;
        display: inline-block !important;
        padding: 8px 12px !important;
        line-height: 1.6 !important;
      }
      
      footer div[style*="gap: 40px"] { gap: 24px !important; }
      footer div[style*="gap: 24px"] { flex-direction: column !important; gap: 20px !important; }
      footer div[style*="gap: 20px"]:last-child { flex-wrap: wrap !important; justify-content: center !important; }
      
      /* ========== 8. GLOBAL MOBILE RULES ========== */
      
      /* All buttons minimum 44px height */
      button, .btn, input[type="submit"], .expand-btn, .collapse-all-btn {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 16px !important;
        font-size: 16px !important;
        cursor: pointer !important;
      }
      
      /* All clickable elements minimum touch target */
      a, button, [onclick], .clickable {
        min-height: 44px !important;
        min-width: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
      }
      
      /* Consistent horizontal padding */
      .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
      }
      
      /* Section padding - 40px instead of 96px */
      section,
      .hero,
      .trust-bar,
      .services,
      .about-section,
      .agent-section,
      .process,
      .testimonials,
      .faq,
      .cta-section {
        padding: 40px 20px !important;
      }
      
      /* Override any inline styles with 96px */
      [style*="96px"] {
        padding: 40px 20px !important;
      }
      
      /* Mobile service grid */
      .service-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
      .services .why-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)) !important; }
      .about-content { grid-template-columns: 1fr !important; gap: 32px !important; }
      .agent-card { grid-template-columns: 1fr !important; text-align: center !important; padding: 32px !important; }
      .agent-photo { margin: 0 auto !important; }
      
      .academy-cta-card {
        padding: 28px !important;
        gap: 24px !important;
      }
      .academy-cta-highlights { flex-direction: column !important; }
      .academy-cta-button { width: 100%; max-width: 280px; justify-content: center; }
      .academy-modal { border-radius: 24px; }
      .academy-application-form { padding: 28px !important; }
      .academy-application-form .form-row { gap: 16px !important; }

      /* Form improvements */
      .form-row { grid-template-columns: 1fr !important; }
      input, textarea, select {
        min-height: 44px !important;
        font-size: 16px !important;
        padding: 12px 16px !important;
      }
      
      /* ========== 9. FLOATING BUTTON ENHANCEMENT ========== */
      .sticky-cta {
        position: fixed !important;
        left: 20px !important;
        right: 20px !important;
        bottom: 20px !important;
        background: var(--white) !important;
        border: 1px solid rgba(26,35,50,.12) !important;
        box-shadow: 0 12px 30px rgba(0,0,0,.12) !important;
        border-radius: 16px !important;
        padding: 16px !important;
        display: flex !important;
        gap: 12px !important;
        align-items: center !important;
        justify-content: space-between !important;
        z-index: 1001 !important;
        min-height: 60px !important;
      }
      
      .sticky-cta .label {
        font-weight: 700 !important;
        color: var(--primary) !important;
        font-size: 16px !important;
      }
      
      .sticky-cta .btn {
        padding: 16px 20px !important;
        width: auto !important;
        min-height: 44px !important;
        font-size: 16px !important;
      }
      
      /* Floating inquiry button - Enhanced */
      .floating-inquiry-btn {
        width: 60px !important;
        height: 60px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 24px !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 999 !important;
      }
      
      /* Body padding for floating elements */
      body {
        padding-bottom: 120px !important;
      }
      
      /* Additional mobile adjustments */
      .message-toggle, .process-toggle {
        padding: 12px 16px !important;
        font-size: 16px !important;
        min-height: 44px !important;
      }
      
      .success-steps {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 24px 20px !important;
      }
      
      .success-step {
        min-width: auto !important;
        padding: 20px !important;
      }
      
      /* Custom dropdown mobile adjustments */
      .custom-select-options {
        max-height: 200px !important;
        font-size: 16px !important;
      }
      
      .custom-select-trigger {
        font-size: 16px !important;
        padding: 12px 16px !important;
        min-height: 44px !important;
      }
      
      .custom-select-option {
        padding: 12px 16px !important;
        font-size: 16px !important;
        min-height: 44px !important;
      }
      
      /* CEO Video mobile responsive */
      .ceo-video-container {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        aspect-ratio: 9/16 !important;
        margin: 0 auto !important;
      }
      
      /* Escrow recommendation mobile */
      .escrow-recommendation {
        padding: 20px !important;
        margin: 24px 0 !important;
        flex-direction: column !important;
        text-align: center !important;
      }
      
      .escrow-content h4 {
        font-size: 16px !important;
        line-height: 1.5 !important;
      }
      
      .escrow-content p {
        font-size: 16px !important;
      }
      
      /* Additional critical mobile fixes */
      
      /* Fix all inline padding styles */
      [style*="padding: 96px"] {
        padding: 40px 20px !important;
      }
      
      /* Ensure minimum touch target size for ALL interactive elements */
      a, button, input, textarea, select, [onclick], .clickable, [role="button"] {
        min-height: 44px !important;
        min-width: 44px !important;
      }
      
      /* Fix process step "More" buttons specifically */
      .expand-btn, .collapse-all-btn {
        height: 44px !important;
        min-height: 44px !important;
        line-height: 44px !important;
        padding: 0 20px !important;
      }
      
      /* Ensure all section padding is consistent */
      section[style*="padding"],
      div[style*="padding: 96px"],
      div[style*="padding: 80px"],
      div[style*="padding: 64px"],
      div[style*="padding: 48px"] {
        padding: 40px 20px !important;
      }
      
      /* Fix hamburger menu */
      .mobile-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
      }
      
      .hamburger-line {
        width: 24px !important;
        height: 3px !important;
        background: var(--primary) !important;
        border-radius: 2px !important;
      }
      
      /* Footer link improvements */
      footer a {
        display: inline-block !important;
        padding: 10px !important;
        min-height: 44px !important;
        line-height: 24px !important;
      }
      
      /* Trust bar specific fixes */
      .trust-bar p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
      }
      
      
      /* Sticky CTA improvements */
      .sticky-cta {
        min-height: 70px !important;
        padding: 15px 20px !important;
      }
      
      /* Form element fixes */
      input[type="text"],
      input[type="email"],
      input[type="tel"],
      textarea,
      select {
        height: 50px !important;
        font-size: 16px !important;
        padding: 15px !important;
      }
      
      textarea {
        height: auto !important;
        min-height: 100px !important;
      }
      
      /* ========== AGGRESSIVE HERO VIEWPORT FIX ========== */
      /* Kill all viewport heights on mobile */
      .hero,
      section.hero,
      #hero,
      [class*="hero"] {
        min-height: auto !important;
        height: auto !important;
        max-height: none !important;
      }
      
      /* Remove vertical centering - force content to top */
      .hero {
        display: block !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 70px !important; /* Just enough for fixed nav */
        padding-bottom: 20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
      }
      
      /* Force hero content to top */
      .hero-content,
      .hero > div,
      .hero > .container {
        position: static !important;
        transform: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        display: block !important;
      }
      
      /* Feature boxes side by side on mobile for space saving */
      .feature-boxes,
      .coming-soon-boxes,
      [class*="feature-box"] {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        margin: 15px 0 20px 0 !important;
        padding: 0 !important;
        width: 100% !important;
      }
      
      /* Each individual box - compact and side by side */
      .feature-box,
      .coming-soon-box,
      .feature-boxes > div {
        flex: 1 !important;
        width: 50% !important;
        max-width: none !important;
        padding: 10px 8px !important;
        margin: 0 !important;
        min-height: auto !important;
        max-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
      }
      
      /* Title styling - bold and compact */
      .feature-box h3,
      .coming-soon-box h3,
      .feature-boxes h3 {
        font-size: 13px !important;
        font-weight: 700 !important;
        margin: 0 0 2px 0 !important;
        line-height: 1.1 !important;
        text-align: center !important;
        color: var(--primary) !important;
        white-space: nowrap !important;
      }
      
      /* Paragraph and coming soon text */
      .feature-box p,
      .coming-soon-box p,
      .feature-boxes p {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        text-align: center !important;
      }
      
      /* Coming soon badge styling */
      .coming-soon {
        color: #666 !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        font-size: 10px !important;
        background: rgba(0,0,0,0.05) !important;
        padding: 2px 8px !important;
        border-radius: 10px !important;
        display: inline-block !important;
      }
      
      /* Remove decorative elements on mobile to save space */
      .feature-box::before {
        display: none !important;
      }
      
      /* Adjust border and styling for compact boxes */
      .feature-box {
        border-radius: 12px !important;
        border-width: 2px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
      }
      
      /* Prevent text wrapping on specific titles */
      .feature-box:first-child h3 {
        font-size: 12px !important; /* Slightly smaller for longer title */
      }
      
      /* Disable hover effects on mobile for cleaner look */
      .feature-box:hover {
        transform: none !important;
        background: #ffffff !important;
      }
      
      .feature-box:hover h3,
      .feature-box:hover p {
        color: inherit !important;
      }
      
      /* Box logos on mobile - bigger for visibility */
      .box-logo {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 6px !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
      }
      
      /* Container fixes */
      .hero .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
      }
      
      /* Eyebrow positioning */
      .hero .eyebrow {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
      }
      
      /* Remove any animations that might cause layout issues */
      .hero *,
      .hero-content *,
      .feature-boxes * {
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
      }
      
      /* Process section headers compact */
      .process .section-header {
        margin-bottom: 20px !important;
        padding: 0 !important;
      }
      
      .process h2 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
      }
      
      .process .section-header p {
        font-size: 14px !important;
        margin-bottom: 0 !important;
      }
      
      /* Nested mobile styles for extra small screens */
      @media (max-width: 480px) {
        /* Keep 2 columns even on very small screens for compactness */
        .process-grid { 
          grid-template-columns: repeat(2, 1fr) !important; 
          gap: 8px !important;
        }
        
        /* Even smaller elements on very small screens */
        .grid-step {
          padding: 12px 8px !important;
          max-height: 120px !important;
        }
        
        .step-icon,
        .grid-step img {
          width: 35px !important;
          height: 35px !important;
        }
        
        .grid-step h3 {
          font-size: 12px !important;
        }
        
        .expand-btn {
          font-size: 11px !important;
          padding: 5px 8px !important;
          height: 28px !important;
          min-height: 28px !important;
        }
        
        .metrics { grid-template-columns: 1fr !important; }
        .hero h1 { font-size: 24px !important; }
        .metric-number { font-size: 32px !important; }
      }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      * { animation: none !important; transition: none !important; }
    }
    

    /* ================================================================
       PROFESSIONAL ANIMATIONS AND INTERACTIONS
    ================================================================ */
    
    /* Scroll-triggered animations */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .fade-up.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Stagger animation delays */
    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }
    
    /* Parallax hero */
    .hero {
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      will-change: transform;
      transition: transform 0.1s ease-out;
    }
    
    /* Enhanced button micro-interactions */
    .btn {
      transform: translateY(0);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: hidden;
    }
    
    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }
    
    .btn:hover::before {
      left: 100%;
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    
    .btn:active {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
      transition: all 0.1s ease;
    }
    
    /* Interactive elements hover effects */
    .service-card,
    .agent-card,
    .testimonial-card {
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform: translateY(0);
    }
    
    .service-card:hover,
    .agent-card:hover,
    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon svg,
    .agent-photo,
    .ceo-image {
      transition: transform 0.3s ease;
    }
    
    .service-card:hover .service-icon svg,
    .agent-card:hover .agent-photo,
    .about-content:hover .ceo-image {
      transform: scale(1.1);
    }
    
    /* Animated counters */
    .counter {
      font-weight: 700;
      color: var(--accent);
    }
    
    /* Loading skeletons */
    .skeleton {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: loading 1.5s infinite;
      border-radius: 8px;
    }
    
    @keyframes loading {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    
    .skeleton-text {
      height: 16px;
      margin: 8px 0;
    }
    
    .skeleton-title {
      height: 24px;
      margin: 12px 0;
      width: 60%;
    }
    
    .skeleton-image {
      height: 200px;
      width: 100%;
    }
    
    /* Page transition overlay */
    .page-transition {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary);
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s ease;
    }
    
    .page-transition.active {
      opacity: 1;
      visibility: visible;
    }
    
    .page-transition::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 40px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: var(--white);
      animation: spin 1s linear infinite;
      transform: translate(-50%, -50%);
    }
    
    @keyframes spin {
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    /* Enhanced navigation effects */
    .nav-links a {
      position: relative;
      overflow: hidden;
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    /* FAQ accordion smooth animations */
    .faq-item {
      transition: all 0.3s ease;
    }
    
    .faq-item:hover {
      transform: translateX(5px);
    }
    
    /* Logo hover effect */
    .logo a {
      transition: transform 0.3s ease;
    }
    
    .logo a:hover {
      transform: scale(1.05);
    }
    
    /* Smooth scrolling improvements */
    html {
      scroll-behavior: smooth;
    }
    
    /* Enhanced message toggle buttons */
    .message-toggle:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3) !important;
    }
    
    .message-toggle.active:hover {
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4) !important;
    }
    
    @media (prefers-reduced-motion: reduce) {
      .fade-up,
      .btn,
      .service-card,
      .agent-card,
      .testimonial-card,
      * {
        animation: none !important;
        transition: none !important;
      }
      
      html {
        scroll-behavior: auto;
      }
    }

    /* ================================================================
       WEBSITE AUDIT COMPLETED - RESULTS SUMMARY:
       
       ✅ PASSED - Broken Links & Images:
          - All Cloudinary images load correctly with proper URLs
          - All SVG symbols properly defined in sprite
          - Internal anchor links work properly
          
       ✅ PASSED - JavaScript Console Errors:
          - All getElementById/querySelector references are valid
          - Event handlers properly bound to existing elements
          - No undefined variables or function calls found
          
       ✅ PASSED - Form Functionality: 
          - Product Inquiry modal opens/closes correctly
          - All 23 form fields validate properly with required attributes
          - Conditional fields show/hide as expected with JavaScript toggles
          - File upload and drag-and-drop implemented with proper validation
          
       ✅ PASSED - Mobile Responsiveness:
          - Responsive breakpoints implemented at 768px, 600px, 480px
          - Grid layouts adapt properly (2-column on tablet, 1-column on mobile)
          - Sticky CTA implemented for mobile screens
          - Font sizes and spacing adjust appropriately for small screens
          
       ✅ PASSED - Accessibility:
          - All images have descriptive alt attributes
          - ARIA labels and roles properly implemented throughout
          - Skip link provided for keyboard navigation
          - Focus states implemented for all interactive elements
          
       ⚠️ MINOR PERFORMANCE NOTES:
          - External Cloudinary images could benefit from lazy loading
          - Social media links currently point to "#" (placeholder)
          - Consider optimizing image sizes for different screen sizes
          
       OVERALL ASSESSMENT: Website follows modern web standards and best practices
    ================================================================ */
/* AGGRESSIVE MOBILE FIXES - OVERRIDES INLINE STYLES */
@media screen and (max-width: 767px) {
  /* Removed temporary visual confirmation background */
  
  /* EMERGENCY OVERRIDE - Show hero content at all costs */
  html body .hero .hero-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
  }
  
  html body .hero h1,
  html body .hero p,
  html body .hero .eyebrow,
  html body .hero .cta-group {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  
  html body .hero .cta-group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 24px auto !important;
    width: 100% !important;
    max-width: 440px !important;
  }
  
  /* COMPACT MOBILE HEADER */
  nav {
    padding: 8px 0 !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.1) !important;
    position: relative !important;
  }
  
  .nav-container {
    padding: 0 16px !important;
    position: relative !important;
  }
  
  .company-logo {
    width: 140px !important;
    max-width: 140px !important;
    height: auto !important;
  }
  
  .nav-links {
    display: none !important;
  }
  
  /* HAMBURGER MENU STYLES */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }
  
  .hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    opacity: 1;
  }
  
  
  /* COMPACT MENU DROPDOWN */
  .mobile-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: -8px;
    width: 180px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  .mobile-menu.active {
    max-height: 200px;
  }
  
  .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 4px 0;
  }
  
  .mobile-nav-links li {
    border-bottom: 1px solid #f5f5f5;
  }
  
  .mobile-nav-links li:last-child {
    border-bottom: none;
  }
  
  .mobile-nav-links a {
    display: block;
    padding: 12px 16px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .mobile-nav-links a:hover,
  .mobile-nav-links a:active {
    background: var(--light);
    color: var(--accent);
  }
  
  
  /* Override ALL inline padding styles */
  *[style*="padding: 48px 0"],
  *[style*="padding: 96px 0"],
  *[style*="padding: 64px 0"] {
    padding: 20px 0 !important;
  }
  
  *[style*="padding: 20px"] {
    padding: 12px !important;
  }
  
  /* Force all sections to be compact */
  section,
  .hero,
  .trust-bar,
  .services,
  .about-section,
  .testimonials,
  .process,
  .faq,
  .cta-section,
  .agent-section,
  .ceo-video-section,
  .success-stories {
    padding: 20px 0 !important;
    margin: 0 !important;
  }
  
  /* Hero specific - MINIMAL GAP */
  .hero {
    min-height: unset !important;
    height: auto !important;
    padding: 50px 20px 30px !important;
    display: block !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  
  .hero-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: static !important;
  }
  
  /* Benefits section that contains "Trusted by..." */
  .benefits {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
  
  /* CRITICAL FIX: Force show all hero content on mobile */
  .hero-content,
  .hero h1,
  .hero p,
  .hero .eyebrow,
  .hero .cta-group {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Ensure hero CTAs remain centered on all viewports */
  .hero .cta-group {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 24px auto !important;
    width: 100% !important;
    max-width: 440px !important;
  }

  .hero .cta-group .btn {
    width: auto !important;
    min-width: 160px !important;
  }
  
  .hero h1 {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }
  
  .hero p {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  
  .hero .eyebrow {
    display: block !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  
  /* Container and margins */
  .container {
    padding: 0 15px !important;
  }
  
  .section-header {
    margin-bottom: 15px !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px !important;
  }
  
  p {
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
  }
  
  /* Grids and gaps */
  .process-grid,
  .service-grid,
  .testimonial-grid {
    gap: 10px !important;
  }
  
  /* Cards and items */
  .grid-step,
  .service-card,
  .testimonial-card,
  .faq-item {
    padding: 10px !important;
    margin-bottom: 8px !important;
    min-height: auto !important;
  }
  
  /* Trust bar - FIX GAP FROM BENEFITS */
  .trust-bar {
    margin-top: -20px !important;
    padding: 20px 0 !important;
  }
  
  /* Direct connection from hero to trust bar */
  .hero + .trust-bar {
    margin-top: 0 !important;
  }
  
  .metrics {
    gap: 12px !important;
  }
  
  .metric-number {
    font-size: 32px !important;
    margin-bottom: 4px !important;
  }
  
  /* Footer */
  footer {
    padding: 20px 0 !important;
  }
  
  /* Remove excessive spacing everywhere */
  * {
    margin-top: 0 !important;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 20px !important;
    margin-bottom: 10px !important;
  }
  
  .expand-btn {
    padding: 4px 8px !important;
  }
}
/* GLOBAL HAMBURGER MENU - ALL SCREEN SIZES */
.nav-links {
  display: none !important;
}

.mobile-menu-toggle {
  display: flex !important;
  flex-direction: column;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(0,0,0,0.05);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  opacity: 1;
  transform-origin: center;
}

/* HAMBURGER TO X ANIMATION - FIXED FOR MOBILE */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: -8px;
  width: 180px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.mobile-menu.active {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 8px;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  margin-bottom: 2px;
}

.mobile-nav-links li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border-radius: 8px;
  position: relative;
}

.mobile-nav-links a:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--accent);
  transform: translateX(2px);
}

.mobile-nav-links a:active {
  background: rgba(59, 130, 246, 0.12);
  transform: translateX(0) scale(0.98);
}

.mobile-nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  transform: translateY(-50%);
  transition: height 0.25s ease;
}

.mobile-nav-links a:hover::before {
  height: 20px;
}

/* Compact navigation for all screen sizes */
nav {
  position: relative !important;
  padding: 12px 0 !important;
}

.nav-container {
  position: relative !important;
  padding: 0 24px !important;
}

.company-logo {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Better vertical alignment for desktop logo */
.logo {
  display: flex !important;
  align-items: center !important;
}

.logo a {
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 767px) {
  nav {
    padding: 8px 0 !important;
  }
  
  .nav-container {
    padding: 0 16px !important;
  }
  
  .company-logo {
    width: 140px !important;
    max-width: 140px !important;
  }
  
  /* Fine-tune X animation for mobile */
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}
    /* ============================================ */
    /* FLOATING INQUIRY BUTTON STYLES */
    /* ============================================ */
    .floating-inquiry-btn {
      position: fixed;
      bottom: 100px;
      right: 30px;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 25px;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      z-index: 999;
      box-shadow: 0 4px 20px rgba(37, 117, 252, 0.3);
      transition: all 0.3s ease;
    }

    .floating-inquiry-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(37, 117, 252, 0.4);
      background: #1e5ed9;
    }

    .floating-inquiry-btn svg {
      transition: transform 0.3s ease;
    }

    .floating-inquiry-btn:hover svg {
      transform: rotate(-10deg);
    }

    /* ============================================ */
    /* MODAL STYLES */
    /* ============================================ */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      z-index: 10000;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.show {
      opacity: 1;
    }

    .modal-container {
      position: relative;
      max-width: 900px;
      width: 90%;
      max-height: 90vh;
      margin: 5vh auto;
      background: white;
      border-radius: 16px;
      overflow: hidden;
      transform: translateY(50px);
      transition: transform 0.3s ease;
    }

    .modal-overlay.show .modal-container {
      transform: translateY(0);
    }

    .modal-header {
      background: var(--dark);
      color: white;
      padding: 24px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-header h2 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
    }

    .close-btn {
      background: none;
      border: none;
      color: white;
      font-size: 32px;
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.3s ease;
    }

    .close-btn:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .modal-body {
      max-height: calc(90vh - 100px);
      overflow-y: auto;
      padding: 0;
    }

    .form-intro {
      background: #f8f9fa;
      padding: 20px 32px;
      border-bottom: 1px solid #e9ecef;
    }

    .form-intro p {
      margin: 0;
      color: var(--text);
      line-height: 1.5;
    }

    /* ============================================ */
    /* FORM STYLES */
    /* ============================================ */
    .inquiry-form {
      padding: 32px;
    }

    .form-section {
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid #e5e7eb;
    }

    .form-section:last-of-type {
      border-bottom: none;
    }

    .form-section h3 {
      color: var(--dark);
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 20px 0;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--accent);
      display: inline-block;
    }

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

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--dark);
      font-weight: 500;
      font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      transition: border-color 0.3s ease;
      box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    /* Address Grid */
    .address-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .address-grid .full-width {
      grid-column: 1 / -1;
    }

    .form-subgroup {
      margin-bottom: 12px;
    }

    .form-subgroup label {
      display: block;
      margin-bottom: 4px;
      color: var(--dark);
      font-weight: 500;
      font-size: 13px;
    }

    .form-subgroup input {
      width: 100%;
      padding: 10px 12px;
      border: 2px solid #e5e7eb;
      border-radius: 6px;
      font-size: 14px;
      transition: border-color 0.3s ease;
      box-sizing: border-box;
    }

    /* ============================================ */
    /* CONDITIONAL FIELDS */
    /* ============================================ */
    .company-fields,
    .certification-fields,
    .custom-fields,
    .sample-fields,
    .packaging-fields {
      margin-top: 16px;
      padding: 16px;
      background: #f8f9fa;
      border-radius: 8px;
      border-left: 4px solid var(--accent);
    }

    /* ============================================ */
    /* CHECKBOX AND RADIO STYLES */
    /* ============================================ */
    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }

    .checkbox-item,
    .radio-item {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      padding: 8px;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .checkbox-item:hover,
    .radio-item:hover {
      background: #f9fafb;
    }

    .checkbox-item input[type="checkbox"],
    .radio-item input[type="radio"] {
      display: none;
    }

    .checkmark,
    .radio-mark {
      width: 18px;
      height: 18px;
      border: 2px solid #d1d5db;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .radio-mark {
      border-radius: 50%;
    }

    .checkbox-item input[type="checkbox"]:checked + .checkmark,
    .radio-item input[type="radio"]:checked + .radio-mark {
      background: var(--accent);
      border-color: var(--accent);
    }

    .checkbox-item input[type="checkbox"]:checked + .checkmark::after {
      content: "✓";
      color: white;
      font-size: 12px;
      font-weight: bold;
    }

    .radio-item input[type="radio"]:checked + .radio-mark::after {
      content: "";
      width: 8px;
      height: 8px;
      background: white;
      border-radius: 50%;
    }

    .radio-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    /* ============================================ */
    /* FILE UPLOAD STYLES */
    /* ============================================ */
    .file-dropzone {
      border: 2px dashed #d1d5db;
      border-radius: 12px;
      padding: 40px 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #f9fafb;
    }

    .file-dropzone:hover,
    .file-dropzone.dragover {
      border-color: var(--accent);
      background: #f0f7ff;
    }

    .file-dropzone svg {
      color: #6b7280;
      margin-bottom: 16px;
    }

    .file-dropzone p {
      margin: 8px 0;
      color: var(--dark);
    }

    .file-dropzone .file-info {
      color: #6b7280;
      font-size: 12px;
    }

    /* ============================================ */
    /* ESCROW RECOMMENDATION */
    /* ============================================ */
    .escrow-recommendation {
      background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
      border: 2px solid #10b981;
      border-radius: 12px;
      padding: 24px;
      margin: 32px 0;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .escrow-icon {
      background: #10b981;
      color: white;
      padding: 12px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .escrow-content h4 {
      color: #047857;
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px 0;
      line-height: 1.5;
    }
    .escrow-content h4 a {
      color: #047857;
      text-decoration: underline;
      font-weight: 700;
    }
    .escrow-content h4 a:hover {
      color: #065f46;
    }
    .escrow-content p {
      color: #047857;
      font-size: 14px;
      margin: 0;
      opacity: 0.8;
    }

    /* ============================================ */
    /* SUBMIT BUTTON */
    /* ============================================ */
    .submit-btn {
      width: 100%;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 16px 24px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .submit-btn:hover {
      background: #1e5ed9;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 117, 252, 0.3);
    }

    .submit-btn:disabled {
      background: #9ca3af;
      cursor: not-allowed;
      transform: none;
    }

    .loading-spinner {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top: 2px solid white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-right: 8px;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* ============================================ */
    /* SUCCESS MESSAGE */
    /* ============================================ */
    .success-message {
      background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
      border: 2px solid #10b981;
      border-radius: 12px;
      padding: 20px;
      margin-top: 20px;
      display: none;
      align-items: center;
      gap: 12px;
    }

    .success-message.show {
      display: flex;
      animation: slideIn 0.3s ease;
    }

    .success-message svg {
      color: #10b981;
      flex-shrink: 0;
    }

    .success-message p {
      margin: 0;
      color: #065f46;
      font-weight: 500;
    }

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

    /* ============================================ */
    /* RESPONSIVE DESIGN */
    /* ============================================ */
    @media (max-width: 768px) {
      .floating-inquiry-btn {
        bottom: 160px;
        right: 20px;
        padding: 12px 16px;
        font-size: 13px;
      }

      .floating-inquiry-btn span {
        display: none;
      }

      .floating-inquiry-btn {
        border-radius: 50%;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
      }

      .modal-container {
        width: 95%;
        margin: 2.5vh auto;
        max-height: 95vh;
      }

      .modal-header {
        padding: 20px 24px;
      }

      .modal-header h2 {
        font-size: 18px;
      }

      .form-intro,
      .inquiry-form {
        padding: 24px 20px;
      }

      .form-row,
      .address-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .checkbox-grid {
        grid-template-columns: 1fr;
      }

      .form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
      }

      .escrow-recommendation {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .file-dropzone {
        padding: 30px 15px;
      }
    }

    @media (max-width: 480px) {
      .floating-inquiry-btn {
        bottom: 140px;
        right: 15px;
        width: 50px;
        height: 50px;
      }

      .modal-header {
        padding: 16px 20px;
      }

      .form-intro,
      .inquiry-form {
        padding: 20px 16px;
      }

      .form-section h3 {
        font-size: 16px;
      }
    }
    

    @media (max-width: 768px) {
      /* Product Hunter Mobile Styles */
      #product-hunter-content {
        padding-top: 60px !important;
      }
      
      /* Product Hunter back button for mobile */
      #product-hunter-content > button {
        position: fixed !important;
        top: 70px !important;
        left: 10px !important;
        padding: 8px 16px !important;
        font-size: 14px !important;
      }
      
      /* Product Hunter header mobile adjustments */
      #product-hunter-content h1 {
        font-size: 28px !important;
        margin-bottom: 16px !important;
      }
      
      #product-hunter-content .container > div:first-child p {
        font-size: 18px !important;
      }
      
      /* Product Hunter logo on mobile */
      #product-hunter-content img[alt="Product Hunter"] {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 20px !important;
      }
      
      /* How it works box mobile */
      #product-hunter-content div[style*="background: #e8f5e9"] {
        padding: 15px !important;
      }
      
      #product-hunter-content div[style*="background: #e8f5e9"] h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
      }
      
      /* Product grid mobile */
      .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      
      /* Product cards mobile */
      .product-card {
        padding: 20px !important;
      }
      
      .product-card h3 {
        font-size: 20px !important;
      }
      
      .product-card p {
        font-size: 14px !important;
      }
      
      .product-card .price-info p[style*="font-size: 32px"] {
        font-size: 24px !important;
      }
      
      .product-card .price-info p[style*="font-size: 18px"] {
        font-size: 16px !important;
      }
      
      .product-card button {
        padding: 12px !important;
        font-size: 16px !important;
      }
      
      /* How to join section mobile */
      #product-hunter-content div[style*="background: #f8f9fa"] {
        padding: 30px 20px !important;
      }
      
      #product-hunter-content h2[style*="font-size: 32px"] {
        font-size: 24px !important;
      }
      
      /* Step numbers mobile */
      #product-hunter-content div[style*="width: 60px; height: 60px"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
      }
      
      /* Share links box mobile */
      #product-hunter-content div[style*="background: #e3f2fd"] {
        padding: 20px !important;
      }
      
      #product-hunter-content code {
        font-size: 12px !important;
        padding: 6px 12px !important;
      }
      
      /* Product card hover effect mobile */
      @media (hover: none) {
        .product-card button:hover {
          transform: none !important;
          box-shadow: none !important;
        }
      }
      
      /* FINAL MOBILE FIXES - 16px minimum text */
      * {
        -webkit-text-size-adjust: 100% !important;
        -moz-text-size-adjust: 100% !important;
        -ms-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
      }
      
      /* Ensure ALL text is at least 16px on mobile */
      p, span, div, li, td, th, label, input, textarea, select, button {
        font-size: max(16px, 1em) !important;
      }
      
      /* Specific overrides for elements that should be smaller */
      .metric-label, .eyebrow, .coming-soon, code, .expand-btn {
        font-size: 14px !important;
      }
      
      /* Headings proper sizing */
      h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
      }
      
      h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
      }
      
      h3 {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
      }
      
      h4 {
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
      }
      
      /* Form elements minimum size */
      input[type="text"],
      input[type="email"],
      input[type="tel"],
      input[type="number"],
      textarea,
      select {
        font-size: 16px !important;
        padding: 12px !important;
        height: auto !important;
        min-height: 44px !important;
      }
      
      /* Buttons minimum touch target */
      button, .btn, input[type="submit"], input[type="button"] {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
      }
      
      /* Links proper size */
      a {
        font-size: max(16px, 1em) !important;
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
      }
      
      /* Navigation links exception */
      .mobile-nav-links a {
        font-size: 16px !important;
        min-height: 44px !important;
        padding: 14px 16px !important;
      }
      
      /* Fix spacing issues */
      .container {
        padding: 0 20px !important;
      }
      
      section {
        padding: 30px 0 !important;
      }
      
      /* Hero specific fixes */
      .hero {
        padding: 70px 20px 40px !important;
      }
      
      /* Feature boxes mobile layout */
      .feature-boxes {
        margin: 20px 0 !important;
      }
      
      .feature-box {
        padding: 15px !important;
        min-height: auto !important;
      }
      
      /* Grid steps ultra compact */
      .process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
      }
      
      .grid-step {
        padding: 12px !important;
        min-height: 120px !important;
        max-height: 130px !important;
      }
      
      .grid-step h3 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
      }
      
      .step-icon {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 8px !important;
      }
      
      /* Testimonials readable */
      .testimonial-text {
        font-size: 16px !important;
        line-height: 1.5 !important;
      }
      
      /* FAQ items */
      .faq-item h3 {
        font-size: 18px !important;
      }
      
      .faq-item p {
        font-size: 16px !important;
      }
      
      /* Footer text */
      footer p, footer a, footer span {
        font-size: 16px !important;
      }
      
      /* Partner logos smaller on mobile */
      .partner-logos > div {
        height: 40px !important;
        width: 70px !important;
      }
      
      .partner-logos img {
        max-height: 28px !important;
        max-width: 56px !important;
      }
      
      /* Communication apps */
      .communication-apps a {
        font-size: 14px !important;
        padding: 10px 14px !important;
      }
      
      /* Social media icons */
      footer a[style*="width: 48px"] {
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
      }
      
      /* Remove any remaining animations on mobile */
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
      
      /* Hamburger menu final fix */
      .mobile-menu-toggle {
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 10px !important;
      }
      
      /* Trust metrics */
      .metric-number {
        font-size: 28px !important;
      }
      
      /* Benefits text */
      .benefit {
        font-size: 14px !important;
      }
    }

.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap;}

.btn--loading{opacity:.7;cursor:wait;}

.field-error{display:block;margin-top:6px;color:#b00020;font-size:0.85rem;}


.team { padding: 60px 0; }
.team-circle {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 0;
}
.team-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 380px;
  padding: 0 12px;
}
.team-center h2 { margin: 0 0 6px; }
.team-center .section-subtitle { margin: 0; font-size: 0.95rem; opacity: 0.9; }

.team-orbit {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 560px;
}
.team-orbit .team-card {
  position: absolute;
  width: 210px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.team-photo {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.team-name { font-weight: 600; margin: 6px 0 2px; }
.team-role, .team-years { margin: 0; font-size: 0.95rem; }

:root { --orbit-r: 240px; }
.team-orbit .team-card:nth-child(1) { left: 50%; top: calc(50% - var(--orbit-r)); }
.team-orbit .team-card:nth-child(2) { left: calc(50% + 0.951 * var(--orbit-r)); top: calc(50% - 0.309 * var(--orbit-r)); }
.team-orbit .team-card:nth-child(3) { left: calc(50% + 0.588 * var(--orbit-r)); top: calc(50% + 0.809 * var(--orbit-r)); }
.team-orbit .team-card:nth-child(4) { left: calc(50% - 0.588 * var(--orbit-r)); top: calc(50% + 0.809 * var(--orbit-r)); }
.team-orbit .team-card:nth-child(5) { left: calc(50% - 0.951 * var(--orbit-r)); top: calc(50% - 0.309 * var(--orbit-r)); }

@media (max-width: 840px) {
  .team-circle { padding: 20px 0; }
  .team-center { position: static; transform: none; margin: 0 auto 20px; }
  .team-orbit {
    min-height: unset;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
  .team-orbit .team-card { position: static; width: auto; transform: none; }
  .team-photo { width: 140px; height: 140px; }
}

@media (min-width: 841px) and (max-width: 1024px) {
  :root { --orbit-r: 200px; }
  .team-photo { width: 160px; height: 160px; }
  .team-orbit .team-card { width: 190px; }
}

/* Custom mobile refinements */
.hero .cta-group {
  flex-wrap: wrap;
  margin: 24px auto 0;
  max-width: 440px;
  width: 100%;
}

.hero .cta-group .btn {
  min-width: 160px;
}

@media (max-width: 600px) {
  .hero .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .cta-group .btn {
    width: 100%;
  }
}

.page--home .sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .page--home .sticky-cta {
    display: flex !important;
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    background: var(--white) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(26, 35, 50, 0.12) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12) !important;
    padding: 12px 16px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    z-index: 900 !important;
  }

  .page--home .sticky-cta .label {
    font-weight: 600 !important;
    font-size: 1rem !important;
  }

  .page--home .sticky-cta .btn {
    min-width: 140px !important;
  }

  .page--home .floating-inquiry-btn {
    position: fixed;
    bottom: 160px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .page--home .floating-inquiry-btn {
    bottom: 140px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}

body.modal-open .sticky-cta,
body.modal-open .floating-inquiry-btn {
  display: none !important;
}

.modal-body {
  padding-bottom: calc(160px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .modal-body {
    padding-bottom: calc(200px + env(safe-area-inset-bottom, 0px));
  }
}

.form-section__details {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 0;
  transition: box-shadow 0.3s ease;
}

.form-section__details summary {
  list-style: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-section__details summary::-webkit-details-marker {
  display: none;
}

.form-section__details summary::after {
  content: '';
  flex-shrink: 0;
}

.form-section__details.is-accordion summary {
  cursor: pointer;
}

.form-section__details.is-accordion summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.form-section__details.is-accordion[open] summary::after {
  content: '−';
}

.form-section__body {
  padding: 0 24px 24px;
  display: grid;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-section__details summary {
    padding: 18px 20px;
  }

  .form-section__body {
    padding: 0 20px 20px;
  }
}

@media (max-width: 640px) {
  body.mobile-ux-ready .process-grid,
  body.mobile-ux-ready #expandedStepDetails {
    display: none !important;
  }

  body.mobile-ux-ready .process-accordion,
  body.mobile-ux-ready .faq-accordion {
    display: grid;
    gap: 12px;
  }

  body.mobile-ux-ready .faq-list {
    display: none;
  }
}
@media (max-width: 640px) {
  .china-office-gallery {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
    position: static !important;
  }

  .china-office-card {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    z-index: auto !important;
  }
}
