*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #1A2DA6;
    --blue-dark: #0D1B6E;
    --blue-light: #EEF1FB;
    --orange: #F47920;
    --orange-light: #FEF0E6;
    --orange-dark: #D4660A;
    --white: #FFFFFF;
    --gray-50: #F8F9FC;
    --gray-100: #F1F3F9;
    --gray-200: #E2E6F0;
    --gray-400: #9AA3BC;
    --gray-600: #4B5578;
    --gray-800: #1E2547;
    --text: #1E2547;
    --text-muted: #6B748E;
    --shadow-sm: 0 1px 3px rgba(26,45,166,0.08), 0 1px 2px rgba(26,45,166,0.04);
    --shadow-md: 0 4px 16px rgba(26,45,166,0.10), 0 2px 6px rgba(26,45,166,0.06);
    --shadow-lg: 0 8px 32px rgba(26,45,166,0.12), 0 4px 12px rgba(26,45,166,0.08);
}

    html { scroll-behavior: smooth; }
    body { font-family: Arial, sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

    /* ── HERO ── */
    .hero {
      padding: 12px 6%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: linear-gradient(160deg, var(--white) 55%, var(--blue-light) 100%);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244,121,32,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -80px; left: 20%;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,45,166,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--orange-light);
      border: 1px solid rgba(244,121,32,0.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem; font-weight: 600;
      color: var(--orange-dark);
      margin-bottom: 24px;
      animation: fadeUp 0.5s ease both;
    }

    .hero-badge::before {
        display: none;
    }

    .badge-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

    .hero h1 {
      font-family: Arial, sans-serif;
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--blue-dark);
      animation: fadeUp 0.6s 0.05s ease both;
    }
    .hero h1 .orange { color: var(--orange); }

    .hero p {
      margin-top: 20px;
      font-size: 1rem;
      line-height: 1.75;
      color: var(--text-muted);
      max-width: 500px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      margin-top: 36px;
      animation: fadeUp 0.6s 0.15s ease both;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 0.92rem; font-weight: 600;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(244,121,32,0.35);
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,121,32,0.4); }
    .btn-outline {
      background: transparent;
      color: var(--blue);
      padding: 13px 24px;
      border-radius: 8px;
      font-size: 0.92rem; font-weight: 600;
      text-decoration: none;
      border: 2px solid var(--blue);
      transition: background 0.2s, color 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { background: var(--blue); color: var(--white); }

    .hero-trust {
      display: flex; align-items: center; gap: 10px;
      margin-top: 28px;
      font-size: 0.82rem; color: var(--text-muted);
      animation: fadeUp 0.6s 0.2s ease both;
    }

    /* ── HERO VISUAL ── */
    .hero-visual {
      animation: fadeLeft 0.8s 0.1s ease both;
      position: relative; z-index: 2;
    }
    .dashboard-wrap {
      background: var(--white);
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-200);
      overflow: hidden;
    }
    .dash-header {
      background: var(--blue-dark);
      padding: 16px 24px;
      display: flex; align-items: center; gap: 12px;
    }
    .dash-header-dots { display: flex; gap: 6px; }
    .dash-header-dots span { width: 10px; height: 10px; border-radius: 50%; }
    .dash-header-dots span:nth-child(1) { background: #FF5F57; }
    .dash-header-dots span:nth-child(2) { background: #FEBC2E; }
    .dash-header-dots span:nth-child(3) { background: #28C840; }
    .dash-header-title { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); }
    .dash-body { padding: 24px; }
    .dash-title { font-family: Arial,sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 18px; }

    .compliance-meter {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex; align-items: center; gap: 20px;
      margin-bottom: 16px;
    }
    .meter-circle {
      width: 64px; height: 64px; flex-shrink: 0;
      border-radius: 50%;
      background: conic-gradient(var(--orange) 0% 88%, var(--gray-200) 88% 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .meter-inner {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--gray-50);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 800; color: var(--orange);
    }
    .meter-label { font-family: Arial,sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--text); }
    .meter-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

    .prog-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
    .prog-label-row { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray-600); margin-bottom: 5px; }
    .prog-pct { font-weight: 700; }
    .prog-bar { height: 6px; border-radius: 100px; background: var(--gray-200); overflow: hidden; }
    .prog-fill { height: 100%; border-radius: 100px; animation: grow 1.4s ease both; }
    .prog-fill.blue { background: linear-gradient(90deg, var(--blue), #4A6CF7); }
    .prog-fill.orange { background: linear-gradient(90deg, var(--orange), #FFB347); }
    .prog-fill.green { background: linear-gradient(90deg, #27AE60, #2ECC71); }
    @keyframes grow { from { width: 0 !important; } }

    .dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .dash-stat {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 10px;
      padding: 12px;
      text-align: center;
    }
    .dash-stat .val { font-family: Arial,sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--blue-dark); }
    .dash-stat .lbl { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }
    .dash-stat.highlight .val { color: var(--orange); }

    /* trust stats below hero */
    .stats-strip {
      background: var(--blue-dark);
      padding: 28px 6%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .stat-item { text-align: center; }
    .stat-item .num { font-family: Arial,sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--orange); }
    .stat-item .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

    /* ── SECTION BASE ── */
    .section { padding: 80px 6%; }
    .section.gray { background: var(--gray-50); }
    .section-label {
      display: inline-block;
      font-size: 0.75rem; font-weight: 700;
      color: var(--orange);
      text-transform: uppercase; letter-spacing: 0.12em;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: Arial, sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800; line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--blue-dark);
    }
    .section-sub {
      margin-top: 12px;
      font-size: 0.97rem; line-height: 1.7;
      color: var(--text-muted);
      /* max-width: 520px; */
    }
    .section-header { margin-bottom: 48px; }

    /* ── COMPLIANCE CHECKLIST CARD ── */
    .compliance-card-wrap {
      background: var(--white);
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-200);
      overflow: hidden;
    }
    .cc-topbar {
      background: var(--blue-dark);
      color: rgba(255,255,255,0.85);
      font-size: 0.82rem; font-weight: 600;
      padding: 14px 22px;
      display: flex; align-items: center; gap: 10px;
      letter-spacing: 0.02em;
    }
    .cc-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s infinite;
    }
    .cc-list {
      padding: 18px 20px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .cc-item {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid var(--gray-200);
      background: var(--gray-50);
      transition: box-shadow 0.2s;
    }
    .cc-item:hover { box-shadow: var(--shadow-sm); }
    .cc-item.pending { background: #FFFBF5; border-color: rgba(244,121,32,0.25); }
    .cc-check {
      width: 28px; height: 28px; flex-shrink: 0;
      border-radius: 50%;
      background: #E8F8EF;
      color: #27AE60;
      font-size: 0.8rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
    }
    .cc-check.pending-icon {
      background: var(--orange-light);
      color: var(--orange);
    }
    .cc-info { flex: 1; min-width: 0; }
    .cc-name { font-size: 0.82rem; font-weight: 600; color: var(--blue-dark); }
    .cc-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
    .cc-badge {
      font-size: 0.68rem; font-weight: 700;
      padding: 3px 10px; border-radius: 100px;
      white-space: nowrap; flex-shrink: 0;
    }
    .cc-badge.green { background: #E8F8EF; color: #1E8449; }
    .cc-badge.orange { background: var(--orange-light); color: var(--orange-dark); }
    .cc-footer {
      display: flex; align-items: center; justify-content: space-around;
      padding: 16px 20px;
      border-top: 1px solid var(--gray-200);
      background: var(--gray-50);
    }
    .cc-footer-stat { text-align: center; }
    .cc-footer-num {
      font-family: Arial,sans-serif;
      font-size: 1.2rem; font-weight: 800;
      color: var(--blue-dark);
      display: block;
    }
    .cc-footer-lbl { font-size: 0.68rem; color: var(--text-muted); }
    .cc-footer-divider { width: 1px; height: 36px; background: var(--gray-200); }

    /* ── PROBLEM SECTION ── */
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .pain-list { display: flex; flex-direction: column; gap: 12px; }
    .pain-item {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 20px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-left: 4px solid #E74C3C;
      border-radius: 8px;
      font-size: 0.9rem; color: var(--gray-800);
      box-shadow: var(--shadow-sm);
    }
    .pain-icon {
      width: 26px; height: 26px; flex-shrink: 0;
      background: #FDECEC;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; font-weight: 800; color: #E74C3C;
    }

    .penalty-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 36px 32px;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    .penalty-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    }
    .penalty-icon { font-size: 2.5rem; margin-bottom: 14px; }
    .penalty-card h3 {
      font-family: Arial,sans-serif;
      font-size: 1rem; font-weight: 700;
      color: var(--blue-dark); margin-bottom: 10px;
    }
    .penalty-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
    .penalty-highlight {
      display: inline-block;
      background: var(--orange-light);
      border: 1px solid rgba(244,121,32,0.3);
      border-radius: 8px;
      padding: 10px 16px;
      font-family: Arial,sans-serif;
      font-size: 1.4rem; font-weight: 800;
      color: var(--orange);
      margin: 16px 0;
    }

    /* ── SERVICES SECTION ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 14px;
      padding: 28px 24px;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      position: relative;
    }
    .service-card:hover {
      border-color: var(--orange);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .service-icon {
      width: 48px; height: 48px;
      background: var(--blue-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
    }
    .service-card h3 {
      font-family: Arial,sans-serif;
      font-size: 0.95rem; font-weight: 700;
      color: var(--blue-dark); margin-bottom: 8px;
    }
    .service-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
    .service-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 0.72rem; font-weight: 600;
      color: var(--orange);
      background: var(--orange-light);
      padding: 3px 10px; border-radius: 100px;
    }

    /* ── BENEFITS ── */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 0;
    }
    .benefit-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: 24px 18px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .benefit-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
    .benefit-card p { font-size: 0.82rem; font-weight: 600; color: var(--blue-dark); line-height: 1.4; }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .faq-q {
      padding: 20px 24px;
      font-family: Arial,sans-serif;
      font-size: 0.92rem; font-weight: 700;
      color: var(--blue-dark);
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer;
      gap: 16px;
    }
    .faq-q::after { content: '+'; font-size: 1.2rem; color: var(--orange); flex-shrink: 0; }
    .faq-a {
      padding: 0 24px 18px;
      font-size: 0.88rem; color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px solid var(--gray-100);
      padding-top: 14px;
    }

    /* ── CTA STRIP ── */
    .cta-section {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
      padding: 80px 6%;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 350px; height: 350px; border-radius: 50%;
      background: rgba(244,121,32,0.12);
    }
    .cta-section::after {
      content: '';
      position: absolute; bottom: -60px; left: -60px;
      width: 280px; height: 280px; border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .cta-section h2 {
      font-family: Arial,sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800; color: var(--white);
      letter-spacing: -0.02em; margin-bottom: 14px;
      position: relative; z-index: 1;
    }
    .cta-section p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; z-index: 1; }
    .btn-orange {
      background: var(--orange);
      color: var(--white);
      padding: 16px 36px;
      border-radius: 8px;
      font-size: 1rem; font-weight: 700;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 10px;
      box-shadow: 0 4px 20px rgba(244,121,32,0.4);
      transition: background 0.2s, transform 0.2s;
      position: relative; z-index: 1;
    }
    .btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
    
    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--white);
      margin-bottom: 8px;
      transition: color .15s;
      text-decoration: none;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeLeft { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }

    /* ── DIVIDER ── */
    .section-divider { border: none; border-top: 1px solid var(--gray-200); margin: 0 6%; }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
        .hero {
            grid-template-columns: 1fr;
        }
    
        .hero-visual {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
        }

        .hero-visual form,
        .hero-visual .form-container,
        .hero-visual .contact-form {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .services-grid {
            grid-template-columns: 1fr 1fr;
        }
    
        .benefits-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    
        .problem-grid {
            grid-template-columns: 1fr;
        }
    
        .stats-strip {
            grid-template-columns: repeat(2,1fr);
        }
    }

    @media(max-width:640px) {
        nav ul {
            display: none;
        }
    
        .services-grid,
        .benefits-grid,
        .stats-strip {
            grid-template-columns: 1fr;
        }
    
        /* Mobile form fixes */
        .hero-visual,
        form {
            width: 100%;
            max-width: 100%;
            overflow: visible;
        }
    }
  
    /* ── NEW POSH CONTACT FORM ── */
    .ct-form-card {
      background: var(--white);
      border-radius: 16px;
      width: 100%;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .ct-form-header {
      background: linear-gradient(135deg, #1A2DA6 0%, #0D1B6E 100%);
      padding: 24px 28px 20px;
      color: var(--white);
    }
    .ct-form-header h2 {
      font-family: Arial, sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 7px;
      line-height: 1.3;
    }
    .ct-form-header p {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
    }
    .ct-form-body { padding: 20px 28px 18px; }
    .ct-field-group { margin-bottom: 14px; }
    .ct-field-label {
      display: block;
      font-size: 0.74rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 5px;
    }
    .ct-req { color: #E03131; margin-left: 2px; }
    .ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .ct-field-input {
      width: 100%;
      height: 40px;
      border: 1.5px solid var(--gray-200);
      border-radius: 7px;
      padding: 0 12px;
      font-size: 0.8rem;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      font-family: 'Inter', sans-serif;
    }
    .ct-field-input::placeholder { color: var(--gray-400); }
    .ct-field-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,45,166,0.09); }
    .ct-field-input.ct-err { border-color: #E03131; }
    .ct-field-err { font-size: 0.68rem; color: #E03131; margin-top: 3px; min-height: 12px; }
    .ct-phone-wrap {
      display: flex;
      border: 1.5px solid var(--gray-200);
      border-radius: 7px;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ct-phone-wrap:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,45,166,0.09); }
    .ct-phone-wrap.ct-err { border-color: #E03131; }
    .ct-phone-prefix {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 9px;
      background: var(--gray-50);
      border-right: 1.5px solid var(--gray-200);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
      user-select: none;
    }
    .ct-phone-input {
      flex: 1;
      border: none;
      outline: none;
      height: 38px;
      padding: 0 10px;
      font-size: 0.8rem;
      color: var(--text);
      font-family: 'Inter', sans-serif;
      background: transparent;
    }
    .ct-phone-input::placeholder { color: var(--gray-400); }
    .ct-field-select {
      width: 100%;
      height: 40px;
      border: 1.5px solid var(--gray-200);
      border-radius: 7px;
      padding: 0 12px;
      font-size: 0.8rem;
      color: var(--text);
      background: var(--white);
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239AA3BC' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ct-field-select.ct-placeholder-shown { color: var(--gray-400); }
    .ct-field-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,45,166,0.09); }
    .ct-field-select.ct-err { border-color: #E03131; }
    .ct-field-textarea {
      width: 100%;
      border: 1.5px solid var(--gray-200);
      border-radius: 7px;
      padding: 10px 12px;
      font-size: 0.8rem;
      color: var(--text);
      background: var(--white);
      outline: none;
      resize: vertical;
      min-height: 72px;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
      line-height: 1.5;
    }
    .ct-field-textarea::placeholder { color: var(--gray-400); }
    .ct-field-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,45,166,0.09); }
    .ct-recaptcha-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1.5px solid var(--gray-200);
      border-radius: 7px;
      padding: 12px 14px;
      margin-bottom: 16px;
      background: var(--gray-50);
    }
    .ct-recaptcha-left { display: flex; align-items: center; gap: 10px; cursor: pointer; }
    .ct-recaptcha-checkbox {
      width: 18px; height: 18px;
      border: 2px solid var(--gray-400);
      border-radius: 3px;
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, background 0.2s;
      flex-shrink: 0;
    }
    .ct-recaptcha-checkbox.ct-checked { border-color: var(--blue); background: var(--blue); }
    .ct-recaptcha-checkbox svg { display: none; }
    .ct-recaptcha-checkbox.ct-checked svg { display: block; }
    .ct-recaptcha-text { font-size: 0.8rem; color: var(--text); font-weight: 500; }
    .ct-recaptcha-right { display: flex; flex-direction: column; align-items: center; gap: 1px; }
    .ct-recaptcha-logo { font-size: 1.2rem; }
    .ct-recaptcha-brand { font-size: 0.58rem; color: var(--gray-400); font-weight: 600; letter-spacing: 0.03em; }
    .ct-recaptcha-links { font-size: 0.56rem; color: var(--gray-400); }
    .ct-recaptcha-links a { color: var(--gray-400); text-decoration: none; }
    .ct-recaptcha-links a:hover { text-decoration: underline; }
    .ct-submit-btn {
      width: 100%;
      height: 48px;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 7px;
      font-family: Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(244,121,32,0.35);
    }
    .ct-submit-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(244,121,32,0.40); }
    .ct-submit-btn:active { transform: translateY(0); }
    .ct-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
    .ct-trust-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 12px;
      flex-wrap: wrap;
    }
    .ct-trust-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.68rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .ct-success-state {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      padding: 24px 0 16px;
    }
    .ct-success-icon {
      width: 56px; height: 56px;
      background: #EBFBEE;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 4px;
    }
    .ct-success-state h3 { font-family: Arial,sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
    .ct-success-state p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
    @keyframes ctSpin { to { transform: rotate(360deg); } }
    @keyframes ctPopIn { from{opacity:0;transform:scale(0.92)} to{opacity:1;transform:scale(1)} }
    .social-links{display: flex; gap: 12px;}
    .social-links a{width: 40px;height: 40px;border-radius: 50%;display: flex;align-items: center;justify-content: center;color: white;font-size: 16px;text-decoration: none;transition: transform 0.2s, opacity 0.2s;}
    .social-links a:hover{transform: scale(1.1); opacity: 0.9;}
    .social-links a.facebook{background: #1877F2;}
    .social-links a.instagram{background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);}
    .social-links a.linkedin{background: #0A66C2;}
    .footer-logo img {height: 60px;width: auto;}