/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
   :root {
    --background: 210 25% 8%;
    --foreground: 0 0% 100%;
    --card: 220 48% 20%;
    --card-foreground: 0 0% 100%;
    --popover: 220 48% 20%;
    --popover-foreground: 0 0% 100%;
    --primary: 152 100% 50%;
    --primary-foreground: 220 48% 20%;
    --secondary: 220 48% 20%;
    --secondary-foreground: 0 0% 100%;
    --muted: 220 24% 38%;
    --muted-foreground: 215 20.2% 85.1%;
    --accent: 152 100% 50%;
    --accent-foreground: 220 48% 20%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 36% 26%;
    --input: 220 36% 26%;
    --ring: 152 100% 50%;
    --radius: 0.75rem;
  }
  
  /* ============================================
     BASE STYLES
     ============================================ */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #0f1419;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 400;
    letter-spacing: 0.025em;
  }
  
  nav a, button, .font-aclonica {
    font-family: 'Aclonica', sans-serif !important;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ============================================
     ANIMATIONS — Gradient Background
     ============================================ */
  @keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .animate-gradient-shift {
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
  }
  
  /* ============================================
     ANIMATIONS — Particles
     ============================================ */
  @keyframes float-up {
    0%   { transform: translateY(0); opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-100vh); opacity: 0; }
  }
  
  .particle {
    position: absolute;
    background: #00FF88;
    border-radius: 50%;
    pointer-events: none;
    animation: float-up linear infinite;
  }
  
  /* ============================================
     ANIMATIONS — Progress Bar
     ============================================ */
  @keyframes fill-progress {
    from { width: 0; }
    to   { width: 68%; }
  }
  
  .progress-bar-fill {
    height: 100%;
    border-radius: 9999px;
    background: #00FF88;
    box-shadow: 0 0 10px #00FF88;
    width: 0;
    animation: fill-progress 1.5s ease forwards 0.8s;
  }
  
  /* ============================================
     ANIMATIONS — Pulse Glow (dashboard card)
     ============================================ */
  @keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 0.6; }
  }
  
  .animate-pulse-glow {
    animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  /* ============================================
     ANIMATIONS — Scroll Reveals (IntersectionObserver)
     ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal.revealed,
  .reveal-left.revealed,
  .reveal-right.revealed {
    opacity: 1;
    transform: none;
  }
  
  /* ============================================
     SMOOTH TRANSITION UTILITY
     ============================================ */
  .smooth-transition {
    transition: all 0.3s ease-in-out;
  }
  
  /* ============================================
     HEADER / NAVIGATION
     ============================================ */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
  }
  
  .site-header.scrolled {
    background: rgba(15, 23, 42, 0.70);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.30), 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0;
  }
  
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5px 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  @media (min-width: 640px)  { .nav-inner {padding: 10px 1.5rem;} }
  @media (min-width: 1024px) { .nav-inner {padding: 20px 2rem;} }
  
  .nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
  }
  
  .nav-logo:hover img {
    transform: scale(1.05);
  }
  
  /* Desktop nav links */
  .nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem;
  }
  
  @media (min-width: 1024px) {
    .nav-links { display: flex; }
  }
  
  .nav-links a {
    color: white;
    font-weight: 600;
    font-family: 'Aclonica', sans-serif !important;
    transition: color 0.2s;
    font-size: 1rem;
  }
  
  .nav-links a:hover { color: #00FF88; }
  
  /* Services dropdown */
  .nav-dropdown-wrapper {
    position: relative;
  }
  
  .nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: white;
    font-weight: 600;
    font-family: 'Aclonica', sans-serif !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 1rem;
    transition: color 0.2s;
  }
  
  .nav-dropdown-btn:hover { color: #00FF88; }
  
  .nav-dropdown-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
  }
  
  .nav-dropdown-wrapper:hover .nav-dropdown-btn svg {
    transform: rotate(180deg);
  }
  
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 18rem;
    padding-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    pointer-events: none;
  }
  
  .nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .nav-dropdown-inner {
    background: #1E293B;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(16px);
  }
  
  .nav-dropdown-inner a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #CBD5E1;
    font-family: 'Aclonica', sans-serif !important;
    transition: color 0.2s, background 0.2s;
  }
  
  .nav-dropdown-inner a:hover {
    color: #00FF88;
    background: rgba(255, 255, 255, 0.05);
  }
  
  /* Header CTA button */
  .nav-cta {
    display: none;
    background: #00FF88;
    color: #0F172A;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }
  
  @media (min-width: 1024px) { .nav-cta { display: inline-block; } }
  
  .nav-cta:hover {
    background: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
  }
  
  /* Mobile hamburger */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .mobile-menu-btn:hover { background: rgba(255, 255, 255, 0.1); }
  
  @media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
  
  /* Mobile menu panel */
  .mobile-menu {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 100%;
    margin-top: 1rem;
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 60;
  }
  
  .mobile-menu.open { display: block; }
  
  .mobile-menu nav { display: flex; flex-direction: column; }
  
  .mobile-menu nav > a {
    color: white;
    font-weight: 600;
    font-family: 'Aclonica', sans-serif !important;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.2s;
  }
  
  .mobile-menu nav > a:hover { color: #00FF88; }
  
  .mobile-services {
    padding: 0.5rem 1rem;
  }
  
  .mobile-services-label {
    color: white;
    font-weight: 600;
    font-family: 'Aclonica', sans-serif !important;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .mobile-services-sub {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0.25rem;
  }
  
  .mobile-services-sub a {
    color: #94A3B8;
    font-size: 0.875rem;
    font-family: 'Aclonica', sans-serif !important;
    padding: 0.25rem 0;
    transition: color 0.2s;
  }
  
  .mobile-services-sub a:hover { color: #00FF88; }
  
  .mobile-menu-cta {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }
  
  .mobile-menu-cta a {
    display: block;
    width: 100%;
    text-align: center;
    background: #00FF88;
    color: #0F172A;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    transition: background 0.2s;
  }
  
  .mobile-menu-cta a:hover { background: rgba(0, 255, 136, 0.8); }
  
  /* ============================================
     HERO SECTION
     ============================================ */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
  }
  
  .hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1a2a4a, #0f1419, #0f1419);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
  }
  
  .hero-bg-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(#2a3a5a 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
  }
  
  .hero-bg-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.20) 0%, transparent 70%);
    opacity: 0.3;
  }
  
  .hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  /* Dashboard card */
  .dashboard-card {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
    width: 100%;
  }
  
  .dashboard-card-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, #2563EB, #00FF88);
    border-radius: 1rem;
    filter: blur(8px);
    opacity: 0.3;
    animation: pulse-glow 2s ease infinite;
  }
  
  .dashboard-card-inner {
    position: relative;
    background: rgba(26, 42, 74, 0.80);
    backdrop-filter: blur(16px);
    border: 1px solid #2a3a5a;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  }
  
  .dashboard-metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(52, 211, 153, 0.1);
    color: #34D399;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
  }
  
  .dashboard-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .dashboard-sub-card {
    background: rgba(15, 20, 25, 0.60);
    border: 1px solid #2a3a5a;
    border-radius: 0.75rem;
    padding: 1rem;
    backdrop-filter: blur(4px);
  }
  
  .progress-track {
    width: 100%;
    background: #2a3a5a;
    border-radius: 9999px;
    height: 0.5rem;
    overflow: hidden;
    margin-top: 0.5rem;
  }
  
  /* ============================================
     SERVICES SECTION
     ============================================ */
  .service-card {
    background: rgba(30, 41, 59, 0.40);
    backdrop-filter: blur(12px);
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
  }
  
  .service-card:hover { border-color: rgba(0, 255, 136, 0.5); }
  
  .service-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #0F172A;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    color: #00FF88;
    flex-shrink: 0;
  }
  
  .service-card:hover .service-card-icon { transform: scale(1.1); }
  
  .service-card h3 { font-size: 1.5rem; color: white; margin-bottom: 1rem; }
  .service-card > p  { color: #CBD5E1; margin-bottom: 1.5rem; flex-grow: 1; }
  
  .service-benefits {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94A3B8;
  }
  
  .service-benefits li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00FF88;
    flex-shrink: 0;
  }
  
  .btn-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 1px solid #00FF88;
    color: #00FF88;
    border-radius: 0.5rem;
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.9375rem;
  }
  
  .btn-service:hover {
    background: #00FF88;
    color: #0F172A;
  }
  
  /* ============================================
     PARTNERS OVERVIEW SECTION
     ============================================ */
  .partner-img-card {
    height: 12rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #2a3a5a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  
  @media (min-width: 768px) { .partner-img-card { height: 16rem; } }
  
  .partner-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .partner-img-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  
  .partner-type-card {
    background: rgba(26, 42, 74, 0.80);
    backdrop-filter: blur(12px);
    border: 1px solid #2a3a5a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .partner-type-card:hover {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.15);
  }
  
  .partner-type-icon {
    width: 3rem;
    height: 3rem;
    background: #0f1419;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    color: #00FF88;
  }
  
  .partner-type-card:hover .partner-type-icon {
    transform: scale(1.1);
    background: rgba(0, 255, 136, 0.1);
  }
  
  .partner-type-card h3 { font-size: 0.875rem; color: white; margin-bottom: 0.5rem; line-height: 1.3; }
  .partner-type-card p  { font-size: 0.75rem; color: #94A3B8; }
  
  /* ============================================
     WHY US SECTION
     ============================================ */
  .why-us-card {
    background: #0f1419;
    border: 1px solid #2a3a5a;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
  }
  
  .why-us-card:hover { border-color: rgba(0, 255, 136, 0.5); }
  
  .why-us-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #1a2a4a;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00FF88;
  }
  
  .why-us-card h3 { font-size: 1.25rem; color: white; margin-bottom: 0.75rem; }
  .why-us-card p  { color: #94A3B8; line-height: 1.6; }
  
  /* ============================================
     FACEBOOK PROMO SECTION
     ============================================ */
  .facebook-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 32rem;
    height: 100%;
    background: rgba(0, 255, 136, 0.05);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .facebook-card {
    max-width: 56rem;
    margin: 0 auto;
    background: #1E293B;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
  }
  
  @media (min-width: 768px) {
    .facebook-card {
      flex-direction: row;
      justify-content: space-between;
      padding: 3rem;
    }
  }
  
  .facebook-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    color: #00FF88;
  }
  
  .facebook-card-text { flex: 1; text-align: center; }
  @media (min-width: 768px) { .facebook-card-text { text-align: left; } }
  
  .facebook-card-text h2 { font-size: 1.875rem; color: white; margin-bottom: 1rem; }
  @media (min-width: 768px) { .facebook-card-text h2 { font-size: 2.25rem; } }
  .facebook-card-text p  { color: #CBD5E1; font-size: 1.125rem; line-height: 1.6; }
  
  .btn-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #1877F2;
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .btn-facebook:hover { background: rgba(24, 119, 242, 0.9); }
  
  /* ============================================
     BOTTOM STATS BAR
     ============================================ */
  .stats-bar {
    background: #0F172A;
    border-top: 1px solid rgba(30, 41, 59, 0.5);
    position: relative;
    z-index: 20;
  }
  
  .stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  @media (min-width: 640px)  { .stats-grid { padding: 0 1.5rem; } }
  @media (min-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 0 2rem; }
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(30, 41, 59, 0.5);
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  }
  
  .stat-item:nth-child(2n) { border-right: none; }
  
  @media (min-width: 1024px) {
    .stat-item { border-bottom: none; }
    .stat-item:nth-child(2n) { border-right: 1px solid rgba(30, 41, 59, 0.5); }
    .stat-item:last-child { border-right: none; }
  }
  
  .stat-label {
    color: #94A3B8;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
  }
  
  .stat-item:hover .stat-label { color: #CBD5E1; }
  
  .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FF88;
    font-family: 'Aclonica', sans-serif !important;
  }
  
  @media (min-width: 768px) { .stat-value { font-size: 1.875rem; } }
  
  .stat-suffix { color: #CBD5E1; font-weight: 500; }
  
  /* ============================================
     FOOTER
     ============================================ */
  .site-footer {
    background: #0F172A;
    color: #CBD5E1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
  }
  
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem;
  }
  
  @media (min-width: 640px)  { .footer-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
  @media (min-width: 1024px) { .footer-inner { padding-left: 2rem; padding-right: 2rem; } }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
  
  .footer-brand { grid-column: 1; }
  
  @media (min-width: 768px)  { .footer-brand { grid-column: span 2; } }
  @media (min-width: 1024px) { .footer-brand {grid-column: 1;} }
  
  .footer-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
  }
  
  .footer-tagline {color: #94A3B8;font-size: 0.875rem;line-height: 1.6;margin-bottom: 1rem;max-width: 290px;}
  
  .footer-social { display: flex; gap: 1rem; }
  .footer-social a { color: #94A3B8; transition: color 0.2s; display: flex; align-items: center; }
  .footer-social a:hover { color: #00FF88; }
  
  .footer-section h3 {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: 'Aclonica', sans-serif !important;
  }
  
  .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links a { color: #94A3B8; font-size: 0.875rem; transition: color 0.2s; }
  .footer-links a:hover { color: #00FF88; }
  
  .footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
  .footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
  .footer-contact-list .contact-icon { color: #00FF88; flex-shrink: 0; margin-top: 1px; }
  .footer-contact-list a,
  .footer-contact-list span { color: #94A3B8; font-size: 0.875rem; transition: color 0.2s; }
  .footer-contact-list a:hover { color: #00FF88; }
  
  .footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
  }
  
  .footer-bottom p { color: #94A3B8; font-size: 0.875rem; }
  
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { color: #94A3B8; font-size: 0.875rem; transition: color 0.2s; }
  .footer-legal a:hover { color: #00FF88; }
  
  /* ============================================
     PAGE LAYOUT (inner pages shared styles)
     ============================================ */
  .page-wrapper {
    min-height: 100vh;
    background: #0f1419;
    color: white;
    padding-top: 10rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
  }
  
  .page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1a2a4a, #0f1419, #0f1419);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
  }
  
  .page-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(#334155 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
  }
  
  .page-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 56rem;
    height: 24rem;
    background: rgba(0, 255, 136, 0.05);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
  
  .page-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px)  { .page-content { padding: 0 1.5rem; } }
  @media (min-width: 1024px) { .page-content { padding: 0 2rem; } }
  
  .page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
  }
  
  @media (min-width: 1024px) { .page-hero-grid { grid-template-columns: 1fr 1fr; } }
  
  .page-hero-grid h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) { .page-hero-grid h1 { font-size: 3.75rem; } }
  
  .page-hero-grid p.lead {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
  }
  
  .page-hero-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a3a5a;
    width: 100%;
    object-fit: cover;
  }
  
  /* ============================================
     SECTION SHARED
     ============================================ */
  .section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px)  { .section-container { padding: 0 1.5rem; } }
  @media (min-width: 1024px) { .section-container { padding: 0 2rem; } }
  
  .section-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Aclonica', sans-serif !important;
  }
  
  @media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
  
  .section-sub {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 48rem;
    margin: 0 auto 1rem;
    font-family: 'Inter', sans-serif;
  }
  
  /* ============================================
     FEATURE CARDS (inner pages)
     ============================================ */
  .feature-card {
    background: #1a2a4a;
    border: 1px solid #2a3a5a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
  }
  
  .feature-card:hover { border-color: rgba(0, 255, 136, 0.5); }
  
  .feature-card-icon { color: #00FF88; margin-bottom: 1rem; }
  
  .feature-card h3 { font-size: 1.25rem; color: white; margin-bottom: 0.5rem; }
  .feature-card p  { color: #94A3B8; font-size: 0.875rem; line-height: 1.6; }
  
  .feature-card-h {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .feature-card-h .feature-card-icon { flex-shrink: 0; margin-bottom: 0; }
  
  .feature-card-center { text-align: center; }
  .feature-card-center .feature-card-icon { display: flex; justify-content: center; }
  
  /* ============================================
     PROVEN RESULTS (Signature Collection page)
     ============================================ */
  .metrics-box {
    background: rgba(26, 42, 74, 0.5);
    border: 1px solid #2a3a5a;
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
  }
  
  .metrics-box h2 { font-size: 1.875rem; color: white; margin-bottom: 2rem; }
  
  .metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #00FF88;
    font-family: 'Aclonica', sans-serif !important;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .metric-label {
    font-size: 1.125rem;
    color: #CBD5E1;
    font-family: 'Aclonica', sans-serif !important;
  }
  
  /* ============================================
     PROCESS STEPS
     ============================================ */
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  @media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(5, 1fr); } }
  
  .step-card {
    background: #1a2a4a;
    border: 1px solid #2a3a5a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #0f1419;
    border: 2px solid #00FF88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #00FF88;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    font-family: 'Aclonica', sans-serif !important;
  }
  
  .step-card h3 { font-size: 1.0625rem; color: white; margin-bottom: 0.5rem; }
  .step-card p  { font-size: 0.875rem; color: #94A3B8; }
  
  /* ============================================
     FIELD OPS — Process Strip
     ============================================ */
  .process-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 768px) { .process-strip { flex-direction: row; } }
  
  .process-item {
    flex: 1;
    background: rgba(26, 42, 74, 0.8);
    border-top: 4px solid #00FF88;
    border-radius: 0.5rem;
    padding: 1.5rem;
  }
  
  .process-item h3 { font-size: 1.0625rem; color: white; margin-bottom: 0.5rem; }
  .process-item p  { font-size: 0.75rem; color: #94A3B8; }
  
  /* ============================================
     TRAINING — QA Framework
     ============================================ */
  .qa-framework {
    background: linear-gradient(to right, #1a2a4a, #0f1419);
    border: 1px solid #2a3a5a;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .qa-framework h2 { font-size: 1.5rem; color: white; text-align: center; margin-bottom: 1.5rem; }
  
  .qa-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #2a3a5a;
    border-radius: 0.5rem;
    padding: 1rem;
  }
  
  .qa-item h3 { color: #00FF88; font-size: 1rem; margin-bottom: 0.5rem; font-family: 'Aclonica', sans-serif !important; }
  .qa-item p  { font-size: 0.875rem; color: #CBD5E1; }
  
  /* ============================================
     PARTNERS PAGE
     ============================================ */
  .partner-why-card {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
  }
  
  .partner-why-card:hover { border-color: rgba(0, 255, 136, 0.3); }
  
  .partner-why-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00FF88;
  }
  
  .partner-why-card h3 { font-size: 1.25rem; color: white; margin-bottom: 0.75rem; }
  .partner-why-card p  { color: #94A3B8; line-height: 1.6; }
  
  .who-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid #334155;
    border-radius: 0.75rem;
    padding: 1.5rem;
  }
  
  .who-card svg { color: #00FF88; }
  .who-card h3 { font-size: 1.0625rem; color: white; margin: 1rem 0 0.5rem; }
  .who-card p  { color: #94A3B8; font-size: 0.875rem; }
  
  .partnership-form-box {
    background: linear-gradient(to right, rgba(30, 58, 138, 0.4), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 56rem;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) { .partnership-form-box { padding: 3rem; } }
  
  .partnership-form-box .form-title {
    font-size: 1.875rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) { .partnership-form-box .form-title { font-size: 2.25rem; } }
  
  /* ============================================
     CONTACT PAGE — Tabs
     ============================================ */
  .contact-tabs-wrapper {
    background: rgba(30, 41, 59, 0.80);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
  }
  
  @media (min-width: 768px) { .contact-tabs-wrapper { padding: 2.5rem; } }
  
  .tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  }
  
  @media (min-width: 768px) { .tabs-header { gap: 1rem; } }
  
  .tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: 'Aclonica', sans-serif !important;
    font-size: 0.875rem;
    cursor: pointer;
    border: 1px solid #334155;
    background: #1E293B;
    color: #CBD5E1;
    transition: all 0.3s ease;
  }
  
  @media (min-width: 768px) { .tab-btn { font-size: 1rem; } }
  
  .tab-btn:hover { color: #00FF88; background: #334155; }
  
  .tab-btn.active {
    background: #00FF88;
    color: #0F172A;
    border-color: #00FF88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    transform: scale(1.05);
  }
  
  .tab-panel { display: none; }
  .tab-panel.active { display: block; animation: tab-fade-in 0.3s ease; }
  
  @keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* ============================================
     FORMS
     ============================================ */
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
  
  .form-group { margin-bottom: 1rem; }
  
  .form-label {
    display: block;
    font-size: 0.875rem;
    color: #CBD5E1;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    background: #1E293B;
    border: 1px solid #475569;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    outline: none;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus { border-color: #00FF88; }
  
  .form-select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
  }
  
  .form-select option { background: #1E293B; color: white; }
  
  .form-textarea { resize: vertical; min-height: 5rem; }
  
  .checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }
  
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #CBD5E1;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
  }
  
  .radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  
  .radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #CBD5E1;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
  }
  
  .btn-form-submit {
    width: 100%;
    background: #00FF88;
    color: #0F172A;
    padding: 0.875rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }
  
  .btn-form-submit:hover { background: rgba(0, 255, 136, 0.8); }
  
  .form-inline-box {
    background: #0F172A;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  }
  
  @media (min-width: 768px) { .form-inline-box { padding: 2rem; } }
  
  /* Form success state */
  .form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .form-success.visible { display: flex; animation: tab-fade-in 0.3s ease; }
  
  .form-success svg { color: #00FF88; margin-bottom: 1rem; }
  .form-success h3  { font-size: 1.25rem; color: white; margin-bottom: 0.5rem; }
  .form-success p   { color: #CBD5E1; font-family: 'Inter', sans-serif; }
  
  /* ============================================
     MODAL OVERLAYS
     ============================================ */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
  }
  
  .modal-overlay.open { display: flex; }
  
  .modal-box {
    background: #1E293B;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 1rem;
    width: 100%;
    max-width: 36rem;
    margin: auto;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  }
  
  @media (min-width: 768px) { .modal-box { padding: 2rem; } }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .modal-header h2 { font-size: 1.5rem; color: white; }
  
  .modal-close {
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  
  .modal-close:hover { color: white; }
  
  /* ============================================
     BUTTONS (shared)
     ============================================ */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #00FF88;
    color: #0f1419;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .btn-primary:hover { background: white; color: #0f1419; }
  
  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #00FF88;
    border: 2px solid #00FF88;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .btn-outline:hover { background: rgba(0, 255, 136, 0.1); }
  
  .btn-become-partner {
    display: inline-block;
    background: transparent;
    color: #00FF88;
    border: 2px solid #00FF88;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    font-family: 'Aclonica', sans-serif !important;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border-style: solid;
  }
  
  .btn-become-partner:hover { background: #00FF88; color: #0f1419; }
  
  /* ============================================
     UTILITY CLASSES
     ============================================ */
  .text-primary { color: #00FF88; }
  
  .accent-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00FF88;
  }
  
/* ============================================
   LEGAL PAGES (Privacy Policy / Terms)
   ============================================ */

.legal-body {
  color: #CBD5E1;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: 'Aclonica', sans-serif;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.75rem;
}

.legal-section p {
  margin-bottom: 0.875rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
}

.legal-section ul li {
  margin-bottom: 0.4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   JOTFORM DARK THEME OVERRIDES
   ============================================ */

/* Strip white background — we're inside our own dark card */
.jotform-form .form-all {
  background: transparent !important;
  color: white !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  padding: 0 !important;
}

.jotform-form .form-section,
.jotform-form .page-section {
  background: transparent !important;
}

/* Hide JotForm's form header (we have our own tab titles) */
.jotform-form .form-header-group { display: none !important; }

/* Labels */
.jotform-form .form-label-top,
.jotform-form .form-label-auto,
.jotform-form .form-label {
  color: #CBD5E1 !important;
  font-size: 0.875rem !important;
  margin-bottom: 0.25rem !important;
}

.jotform-form .form-sub-label {
  color: #94A3B8 !important;
  font-size: 0.75rem !important;
}

/* All inputs, textareas, selects — override JotForm's inline width styles */
.jotform-form .form-textbox,
.jotform-form .form-textarea,
.jotform-form .form-dropdown {
  width: 100% !important;
  background: #1E293B !important;
  border: 1px solid #475569 !important;
  color: white !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  font-size: 1rem !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: none !important;
  height: auto !important;
}

.jotform-form .form-textbox:focus,
.jotform-form .form-textarea:focus,
.jotform-form .form-dropdown:focus {
  border-color: #00FF88 !important;
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.15) !important;
  outline: none !important;
}

.jotform-form .form-textbox:hover,
.jotform-form .form-textarea:hover,
.jotform-form .form-dropdown:hover {
  border-color: #6B7280 !important;
  box-shadow: none !important;
}

.jotform-form .form-textbox::placeholder,
.jotform-form .form-textarea::placeholder {
  color: #6B7280 !important;
}

.jotform-form .form-dropdown option {
  background: #1E293B !important;
  color: white !important;
}

/* Active row highlight */
.jotform-form .form-line-active {
  background: rgba(0, 255, 136, 0.04) !important;
  border-radius: 0.5rem !important;
  padding: 4px 8px !important;
}

/* Error state */
.jotform-form .form-line-error {
  background: rgba(214, 69, 69, 0.08) !important;
  border-radius: 0.5rem !important;
}

.jotform-form .form-line-error .form-error-message {
  background-color: #D64545 !important;
  border-radius: 0.375rem !important;
}

/* Required asterisk */
.jotform-form .form-required { color: #F87171 !important; }

/* Line spacing */
.jotform-form .form-line {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

/* Submit button — full green, Aclonica */
.jotform-form .form-submit-button {
  background: #00FF88 !important;
  background-image: none !important;
  color: #0F172A !important;
  border: none !important;
  border-radius: 0.5rem !important;
  font-family: 'Aclonica', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.125rem !important;
  height: auto !important;
  padding: 0.875rem 1.5rem !important;
  width: 100% !important;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3) !important;
  text-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
}

.jotform-form .form-submit-button:hover {
  background: rgba(0, 255, 136, 0.8) !important;
  background-image: none !important;
}

/* Buttons wrapper — remove top border */
.jotform-form .form-buttons-wrapper {
  border-top: none !important;
  padding-top: 0.5rem !important;
  margin-top: 0 !important;
}

/* Two-column layout rows match our design */
.jotform-form .form-input-wide[data-layout="half"] {
  width: 100% !important;
}

/* Supernova wrapper (JotForm page bg) — must be transparent */
.supernova,
.supernova body {
  background: transparent !important;
}
  