*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      /* ── Brand Colors from Logo ── */
      --navy: #1C2B5E;        /* deep navy from logo text */
      --navy-dark: #111D42;
      --navy-mid: #243372;
      --orange: #F5A623;      /* vibrant amber-orange from logo */
      --orange-dark: #E09418;
      --orange-light: #FFF8E7;
      --orange-glow: rgba(245,166,35,0.18);
      --blue-accent: #2C3FA0; /* secondary blue from logo icon */
      --blue-light: #EEF1FF;
      /* ── Neutrals ── */
      --green: #16A34A;
      --green-light: #DCFCE7;
      --red: #DC2626;
      --red-light: #FEE2E2;
      --amber: #D97706;
      --amber-light: #FEF3C7;
      --gray-50: #F8FAFC;
      --gray-100: #F1F5F9;
      --gray-200: #E2E8F0;
      --gray-400: #94A3B8;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-900: #0F172A;
      --white: #FFFFFF;
      --font-h: 'Sora', sans-serif;
      --font-b: 'DM Sans', sans-serif;
      --r: 12px;
      --r-lg: 20px;
      --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
      --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);
      --shadow-orange: 0 6px 24px rgba(245,166,35,0.35);
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-b); color: var(--gray-900); background: #fff; line-height: 1.6; overflow-x: hidden; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(255,255,255,0.98); backdrop-filter: blur(14px);
      border-bottom: 2px solid var(--orange);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto; padding: 0 28px;
      display: flex; align-items: center; justify-content: space-between; height: 72px;
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo img { height: 42px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 30px; }
    .nav-links a { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; transition: color .2s; }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta { display: flex; gap: 10px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: 9px;
      font-family: var(--font-h); font-weight: 700; font-size: 14px;
      cursor: pointer; text-decoration: none; border: none; transition: all .2s;
    }
    .btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
    .btn-outline:hover { background: var(--navy); color: #fff; }
    .btn-primary { background: var(--navy); color: #fff; box-shadow: 0 2px 10px rgba(28,43,94,.3); }
    .btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(28,43,94,.4); }
    .btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 2px 8px rgba(245,166,35,.35); font-weight: 800; }
    .btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
    .btn-lg { padding: 13px 26px; font-size: 15px; border-radius: 10px; }
    .btn-xl { padding: 15px 30px; font-size: 16px; border-radius: 11px; }
    .btn-whatsapp {background: #25d366; color: #fff;}
    /* ─── HERO ─── */
    .hero {
      padding: 120px 28px 0;
      background: url('./img/lms-hero-bg.webp');
      position: relative; overflow: hidden; min-height: 680px;background-size:cover;
    }
    .hero-grid-overlay {
      position: absolute; inset: 0; opacity: .04;
      background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    /* Orange accent glow matching logo */
    .hero-glow {
      position: absolute; top: -80px; right: -80px; width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(245,166,35,0.20) 0%, transparent 65%);
      border-radius: 50%;
    }
    .hero-glow2 {
      position: absolute; bottom: -100px; left: -60px; width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(44,63,160,0.3) 0%, transparent 65%);
      border-radius: 50%;
    }
    /* Orange accent stripe at top of hero */
    .hero::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--orange), var(--orange), transparent);
    }
    .hero-inner {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 520px; gap: 56px;
      align-items: flex-end; position: relative; z-index: 2;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.4);
      color: var(--orange); border-radius: 50px; padding: 6px 16px;
      font-size: 13px; font-weight: 700; margin-bottom: 22px;
    }
    .hero-badge .live-dot {
      width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
      animation: livepulse 2s infinite;
    }
    @keyframes livepulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
    h1 {
      font-family: var(--font-h); font-weight: 800; font-size: 48px;
      line-height: 1.13; color: #fff; margin-bottom: 20px;
    }
    h1 em { font-style: normal; color: var(--orange); }
    .hero-sub { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 34px; max-width: 520px; }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
    .hero-proof { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
    .hproof-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; }

    /* Screenshot panel */
    .hero-screenshot { position: relative; align-self: flex-end; }
    .screenshot-browser {
      background: #1E293B; border-radius: 14px 14px 0 0;
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(255,255,255,.08); border-bottom: none;
      overflow: hidden;
    }
    .browser-bar {
      background: #0F172A; padding: 10px 14px;
      display: flex; align-items: center; gap: 10px;
    }
    .browser-dots { display: flex; gap: 6px; }
    .browser-dots span { width: 11px; height: 11px; border-radius: 50%; }
    .bd-red { background: #FF5F57; }
    .bd-yellow { background: #FFBD2E; }
    .bd-green { background: #28CA41; }
    .browser-url {
      flex: 1; background: #1E293B; border-radius: 6px;
      padding: 4px 12px; font-size: 12px; color: rgba(255,255,255,.5); font-family: monospace;
    }
    .dashboard-ui { padding: 16px; }
    .dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
    .dash-topbar-title { font-family: var(--font-h); font-weight: 700; font-size: 14px; color: #E2E8F0; }
    .dash-branch-tag {
      background: rgba(245,166,35,.2); border: 1px solid rgba(245,166,35,.5);
      color: var(--orange); font-size: 11px; font-weight: 700;
      padding: 3px 10px; border-radius: 20px;
    }
    .kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
    .kpi { border-radius: 10px; padding: 12px 10px; position: relative; overflow: hidden; }
    .kpi.b1 { background: linear-gradient(135deg,#1C2B5E,#2C3FA0); }
    .kpi.b2 { background: linear-gradient(135deg,#0891B2,#22D3EE); }
    .kpi.b3 { background: linear-gradient(135deg,#16A34A,#4ADE80); }
    .kpi.b4 { background: linear-gradient(135deg,#E09418,#F5A623); }
    .kpi.b5 { background: linear-gradient(135deg,#DC2626,#F87171); }
    .kpi.b6 { background: linear-gradient(135deg,#7C3AED,#A78BFA); }
    .kpi-num { font-family: var(--font-h); font-size: 24px; font-weight: 800; color: #fff; }
    .kpi-label { font-size: 10px; color: rgba(255,255,255,.8); margin-top: 2px; }
    .kpi-icon { position: absolute; right: 8px; bottom: 8px; opacity: .2; }
    .dash-chart-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
    .mini-block { background: #1E293B; border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.06); }
    .mini-block-title { font-size: 10px; font-weight: 600; color: #94A3B8; margin-bottom: 8px; }
    .bars { display: flex; align-items: flex-end; gap: 3px; height: 38px; }
    .bar-s { border-radius: 2px 2px 0 0; flex: 1; background: #2C3FA0; opacity: .7; }
    .mini-stat-row { display: flex; flex-direction: column; gap: 6px; }
    .mini-stat { display: flex; justify-content: space-between; align-items: center; }
    .ms-label { font-size: 10px; color: #94A3B8; }
    .ms-bar-wrap { flex: 1; margin: 0 8px; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; }
    .ms-bar-fill { height: 100%; border-radius: 2px; }
    .ms-val { font-size: 10px; font-weight: 700; color: #E2E8F0; }
    .dash-table { background: #1E293B; border-radius: 8px; border: 1px solid rgba(255,255,255,.06); overflow: hidden; }
    .dt-head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4px; padding: 7px 10px; background: rgba(245,166,35,.15); }
    .dt-head span { font-size: 9px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .05em; }
    .dt-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4px; padding: 7px 10px; border-top: 1px solid rgba(255,255,255,.04); align-items: center; }
    .dt-cell { font-size: 10px; color: #CBD5E1; }
    .status-pill { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; display: inline-block; }
    .sp-green { background: rgba(22,163,74,.2); color: #4ADE80; }
    .sp-blue { background: rgba(44,63,160,.3); color: #93C5FD; }
    .sp-amber { background: rgba(245,166,35,.2); color: var(--orange); }
    .float-card {
      position: absolute; background: #fff; border-radius: 12px;
      padding: 10px 14px; box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 10px;
      border: 1px solid var(--gray-200);
    }
    .fc-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .fc-title { font-size: 11px; font-weight: 700; color: var(--gray-700); }
    .fc-sub { font-size: 10px; font-weight: 700; }
    .fc-green { color: var(--green); }
    .fc-navy { color: var(--navy); }
    .fc-orange { color: var(--orange-dark); }

    /* ─── STATS STRIP ─── */
    .stats-strip { background: var(--blue-light); padding: 26px 28px; }
    .stats-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
    .stat-item { text-align: center; }
    .stat-num { font-family: var(--font-h); font-weight: 800; font-size: 30px; color: var(--navy); }
    .stat-label { font-size: 12px; color: rgba(28,43,94,.75); margin-top: 3px; font-weight: 600; }
    .stat-div { width: 1px; height: 44px; background: rgba(28,43,94,.2); }

    /* ─── SECTION SHARED ─── */
    section { padding: 88px 28px; }
    .section-inner { max-width: 1180px; margin: 0 auto;display: flex; flex-direction: column;justify-content: center;align-items: center; }
    .tag-pill {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
      padding: 5px 13px; border-radius: 50px; margin-bottom: 16px;
    }
    .tag-orange { background: var(--orange-light); color: var(--orange-dark); border: 1px solid rgba(245,166,35,.3); }
    .tag-navy { background: var(--blue-light); color: var(--navy); border: 1px solid rgba(28,43,94,.2); }
    .tag-green { background: var(--green-light); color: var(--green); }
    .tag-purple { background: #EDE9FE; color: #7C3AED; }
    .tag-white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2); }
    h2 {
      font-family: var(--font-h); font-weight: 800; font-size: 38px;
      line-height: 1.2; color: var(--navy); margin-bottom: 14px;text-align: center;
    }
    h2 span { color: var(--orange); }
    .section-sub { font-size: 17px; color: var(--gray-600); line-height: 1.75;text-align: center; }

    /* ─── PAIN SECTION ─── */
    .pain-section { background: var(--gray-50); }
    .pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
    .pain-card {
      background: #fff; border-radius: var(--r); border: 1px solid var(--gray-200);
      padding: 30px 26px; transition: all .25s; border-top: 3px solid transparent;
    }
    .pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-top-color: var(--orange); }
    .pain-icon-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
    .pain-icon-wrap.red { background: var(--red-light); }
    .pain-icon-wrap.amber { background: var(--orange-light); }
    .pain-icon-wrap.navy { background: var(--blue-light); }
    .pain-title { font-family: var(--font-h); font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 9px; }
    .pain-desc { font-size: 14px; color: var(--gray-600); line-height: 1.68; }
    .pain-cost {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 14px; background: var(--red-light); color: var(--red);
      font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 20px;
    }
    .pain-cta-band {
      margin-top: 52px;
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      border-radius: var(--r-lg); padding: 40px 48px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
      border-left: 5px solid var(--orange);
      width: 100%;
    }
    .pcta-text h3 { font-family: var(--font-h); font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 7px; }
    .pcta-text h3 span { color: var(--orange); }
    .pcta-text p { color: rgba(255,255,255,.7); font-size: 15px; }

    /* ─── FEATURES ─── */
    .features-section { background: #fff; }
    .feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 52px; }
    .feat-card {
      background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
      padding: 22px 20px; transition: all .22s; cursor: default; position: relative;
      border-bottom: 3px solid transparent;
    }
    .feat-card:hover { border-color: var(--orange); border-bottom-color: var(--orange); box-shadow: 0 4px 22px rgba(245,166,35,.18); transform: translateY(-2px); }
    .feat-card.featured { border-color: rgba(245,166,35,.4); background: linear-gradient(135deg,#FFFBF0,#fff); border-bottom-color: var(--orange); }
    .feat-badge {
      position: absolute; top: 14px; right: 14px;
      background: var(--orange); color: var(--navy); font-size: 9px; font-weight: 800;
      padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em;
    }
    .feat-icon-wrap { width: 54px; height: 54px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: all .22s; }
    .feat-card:hover .feat-icon-wrap { background: var(--navy) !important; }
    .feat-card:hover .feat-icon-wrap svg { color: #fff !important; stroke: #fff !important; }
    .fi-navy { background: var(--blue-light); }
    .fi-orange { background: var(--orange-light); }
    .fi-green { background: var(--green-light); }
    .fi-purple { background: #EDE9FE; }
    .fi-teal { background: #CCFBF1; }
    .fi-amber { background: var(--orange-light); }
    .fi-dark { background: rgba(28,43,94,.08); }
    .feat-name { font-family: var(--font-h); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 7px; line-height: 1.35; }
    .feat-desc { font-size: 12px; color: var(--gray-600); line-height: 1.58; }
    .feat-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 11px; }
    .ftag { font-size: 10px; font-weight: 600; background: var(--gray-100); color: var(--gray-700); padding: 2px 8px; border-radius: 20px; }
    .ftag.orange { background: var(--orange-light); color: var(--orange-dark); }
    .ftag.navy { background: var(--blue-light); color: var(--navy); }

    /* ─── HOW IT WORKS ─── */
    .hiw-section { background: var(--gray-50); }
    .hiw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 52px; }
    .hiw-steps { display: flex; flex-direction: column; gap: 0; }
    .hiw-step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
    .hiw-step:not(:last-child)::before {
      content: ''; position: absolute; left: 22px; top: 48px; bottom: 0;
      width: 2px; background: linear-gradient(180deg, var(--orange) 0%, var(--gray-200) 100%);
    }
    .step-num {
      width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-h); font-weight: 800; font-size: 15px; z-index: 1;
    }
    .sn1 { background: var(--navy); color: #fff; }
    .sn2 { background: var(--orange); color: var(--navy); }
    .sn3 { background: var(--green); color: #fff; }
    .sn4 { background: var(--blue-accent); color: #fff; }
    .step-title { font-family: var(--font-h); font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
    .step-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
    .hiw-visual { position: relative; }
    .workflow-card {
      background: #fff; border-radius: 16px; box-shadow: var(--shadow-xl);
      border: 1px solid var(--gray-200); overflow: hidden;
    }
    .wc-header {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      padding: 14px 18px; display: flex; align-items: center; gap: 12px;
      border-bottom: 2px solid var(--orange);
    }
    .wc-header-title { color: #fff; font-family: var(--font-h); font-weight: 700; font-size: 14px; }
    .wc-header-sub { color: rgba(255,255,255,.65); font-size: 12px; }
    .wc-body { padding: 18px; }
    .shipment-row {
      display: flex; align-items: center; gap: 12px; padding: 10px 12px;
      background: var(--gray-50); border-radius: 9px; margin-bottom: 8px;
      border: 1px solid var(--gray-100); border-left: 3px solid transparent; transition: border-color .2s;
    }
    .shipment-row:hover { border-left-color: var(--orange); }
    .srow-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .sri-navy { background: var(--blue-light); }
    .sri-green { background: var(--green-light); }
    .sri-orange { background: var(--orange-light); }
    .sri-amber { background: var(--amber-light); }
    .srow-id { font-size: 11px; font-weight: 700; color: var(--navy); }
    .srow-route { font-size: 10px; color: var(--gray-400); }
    .srow-right { margin-left: auto; text-align: right; }
    .srow-status { font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 20px; }
    .ss-green { background: var(--green-light); color: var(--green); }
    .ss-navy { background: var(--blue-light); color: var(--navy); }
    .ss-orange { background: var(--orange-light); color: var(--orange-dark); }
    .ss-amber { background: var(--amber-light); color: var(--amber); }
    .srow-amount { font-size: 10px; color: var(--gray-400); margin-top: 2px; }

    /* ─── WHY US TABLE ─── */
    .why-section {background: #f8fafc;}
    .why-table-wrap { margin-top: 52px; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); margin-bottom: 40px; }
    table { width: 100%; border-collapse: collapse; table-layout: fixed; }
    thead th { padding: 16px 22px; font-family: var(--font-h); font-weight: 700; font-size: 14px; text-align: left; }
    th.wt-feat { width: 38%; background: var(--gray-100); color: var(--gray-600); }
    th.wt-us { width: 31%; background: var(--navy); color: #fff; text-align: center; border-bottom: 3px solid var(--orange); }
    th.wt-other { width: 31%; background: var(--gray-100); color: var(--gray-600); text-align: center; }
    tbody tr { border-top: 1px solid var(--gray-100); }
    tbody tr:nth-child(even) { background: rgba(248,250,252,.6); }
    tbody tr:hover { background: var(--orange-light); }
    td { padding: 13px 22px; font-size: 14px; color: var(--gray-700); vertical-align: middle; line-height: 1.45; }
    td.center { text-align: center; }
    .pill { display: inline-flex; align-items: center; gap: 5px; border-radius: 20px; padding: 4px 11px; font-size: 12px; font-weight: 700; }
    .pill-yes { background: var(--green-light); color: var(--green); }
    .pill-no { background: var(--red-light); color: var(--red); }
    .pill-maybe { background: var(--amber-light); color: var(--amber); }
    .why-cta-band {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      border-radius: var(--r-lg); padding: 32px 48px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
      border-left: 5px solid var(--orange);width: 100%;
    }
    .wc-text strong { color: #fff; font-family: var(--font-h); font-size: 18px; display: block; margin-bottom: 6px; }
    .wc-text p { color: rgba(255,255,255,.75); font-size: 15px; max-width: 600px; }

    /* ─── COMPLIANCE ─── */
    .compliance-section { background: var(--navy); padding: 80px 28px; position: relative; overflow: hidden; }
    .compliance-section::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--orange);
    }
    .compliance-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .comp-text h2 { color: #fff; }
    .comp-text .section-sub { color: rgba(255,255,255,.65); }
    .comp-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .cbadge {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.3);
      color: #fff; border-radius: 9px; padding: 10px 16px;
      font-size: 13px; font-weight: 600; transition: all .2s;
    }
    .cbadge:hover { background: rgba(245,166,35,.2); border-color: var(--orange); }
    .cbadge svg { stroke: var(--orange); }
    .comp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .cc {
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 20px; border-top: 3px solid var(--orange); transition: all .2s;
    }
    .cc:hover { background: rgba(255,255,255,.08); }
    .cc-title { color: #fff; font-family: var(--font-h); font-weight: 700; font-size: 15px; margin-bottom: 7px; }
    .cc-desc { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.55; }

    /* ─── CLIENTS ─── */
    .clients-section { background: #fff; padding: 56px 28px; border-top: 3px solid var(--orange);display: flex;flex-direction: column;align-items: center;justify-content: center; }
    .clients-label {       font-family: var(--font-h);
    font-weight: 800;
    font-size: 29px;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 14px;
    text-align: center;
    max-width: 800px; }
    .clients-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; max-width: 1000px; margin: 0 auto; }
    /* Marquee Layout Container */
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Optional: Adds a soft fade effect on the left and right edges */
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.client-group {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between each logo */
  padding-right: 40px; /* Must match the gap size for smooth loop */
}

/* Individual Logo Chips */
.client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px; /* Adjust based on your preferred logo size */
  min-width: 120px; /* Prevents logos from squishing */
}

.client-chip img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Hover effects */
.client-chip img:hover {
  filter: grayscale(0%); /* Brings back original colors on hover */
  opacity: 1;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused; /* Pauses animation when user hovers */
}

/* Infinite Scroll Animation Logic */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Moves exactly half the total track width */
  }
}

    /* ─── ONBOARDING TIMELINE ─── */
    .onboarding-section { background: var(--gray-50); }
    .onboarding-inner { max-width: 860px; margin: 0 auto; text-align: center; }
    .ot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 56px; position: relative; }
    .ot-grid::before {
      content: ''; position: absolute; top: 36px; left: calc(16%); right: calc(16%);
      height: 3px; background: linear-gradient(90deg, var(--navy), var(--orange), var(--green)); opacity: .5;
    }
    .ot-item { position: relative; z-index: 1; padding: 0 20px; }
    .ot-circle { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
    .otc-navy { background: var(--blue-light); border: 3px solid var(--navy); }
    .otc-orange { background: var(--orange-light); border: 3px solid var(--orange); }
    .otc-green { background: var(--green-light); border: 3px solid var(--green); }
    .ot-day { font-family: var(--font-h); font-weight: 800; font-size: 15px; margin-bottom: 8px; }
    .ot-day.navy { color: var(--navy); }
    .ot-day.orange { color: var(--orange-dark); }
    .ot-day.green { color: var(--green); }
    .ot-title { font-family: var(--font-h); font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
    .ot-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
    .go-live-chip {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--navy); border: 2px solid var(--orange); color: #fff;
      border-radius: 50px; padding: 13px 26px;
      font-family: var(--font-h); font-weight: 800; font-size: 16px; margin-top: 48px;
    }
    .go-live-chip svg { stroke: var(--orange); }

    /* ─── LEAD FORM ─── */
    .form-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); position: relative; overflow: hidden; }
    .form-section::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--orange);
    }
    .form-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 490px; gap: 64px; align-items: start; }
    .form-left h2 { color: #fff; font-size: 38px; margin-bottom: 16px;text-align: left; }
    .form-left p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
    .form-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
    .fb-item { display: flex; align-items: flex-start; gap: 12px; }
    .fb-check {
      width: 22px; height: 22px; border-radius: 50%; background: var(--orange);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .fb-check svg { stroke: var(--navy); }
    .fb-txt { color: rgba(255,255,255,.85); font-size: 15px; }
    .form-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 24px 64px rgba(0,0,0,.3); border-top: 4px solid var(--orange); }
    .form-card h3 { font-family: var(--font-h); font-weight: 800; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
    .form-card > p { font-size: 14px; color: var(--gray-600); margin-bottom: 24px; }
    .form-group { margin-bottom: 15px; }
    label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    input, select, textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--gray-200); border-radius: 9px;
      font-size: 14px; font-family: var(--font-b); color: var(--gray-900);
      outline: none; transition: border-color .2s, box-shadow .2s; background: #fff; appearance: none;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,166,35,.15); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    textarea { resize: vertical; min-height: 78px; }
    .submit-btn { width: 100%; margin-top: 4px; }
    .form-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 11px; }
    .wa-link {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 14px; padding: 11px; background: #ECFDF5;
      border: 1.5px solid var(--green); border-radius: 9px;
      color: var(--green); font-weight: 700; font-size: 14px; text-decoration: none; transition: all .2s;
    }
    .wa-link:hover { background: #D1FAE5; }

    /* ─── FINAL CTA ─── */
    .final-cta-section { background: #fff; text-align: center; padding: 88px 28px; }
    .final-cta-section h2 { font-size: 40px; margin-bottom: 16px; }
    .final-cta-section p { font-size: 17px; color: var(--gray-600); max-width: 560px; margin: 0 auto 38px; }
    .final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .trust-row { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
    .trust-row span { font-size: 13px; color: var(--gray-400); font-weight: 600; }

    /* ─── FOOTER ─── */
    footer { background: var(--navy-dark); padding: 44px 28px 24px; border-top: 4px solid var(--orange); }
    .footer-inner { max-width: 1180px; margin: 0 auto; }
    .footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
    .footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
    .footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
    .footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
    .fbadge { background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.3); border-radius: 6px; padding: 5px 13px; font-size: 11px; color: var(--orange); font-weight: 700; }

    /* ─── STICKY ─── */
    .sticky-bar {
      position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
      border-top: 3px solid var(--orange); padding: 12px 28px; z-index: 199;
      display: flex; align-items: center; justify-content: center; gap: 14px;
      box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    }
    .sb-text { font-size: 14px; font-weight: 700; color: var(--navy); }
/* ===== BONUS WEBSITE OFFER SECTION ===== */
.bonus-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0A1628 0%, #0F2447 50%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.bonus-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.bonus-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bonus-header {
  text-align: center;
  margin-bottom: 52px;
}

.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: var(--orange);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bonus-tag .tag-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.bonus-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
}

.bonus-header h2 span {
  color: var(--orange);
}

.bonus-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.bonus-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.countdown-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cdt-unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  min-width: 48px;
}

.cdt-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.cdt-label {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.cdt-sep {
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  margin-bottom: 14px;
}

/* The main bonus card */
.bonus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 52px 52px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.bonus-card::before {
  content: 'FREE';
  position: absolute;
  top: 20px;
  right: -20px;
  background: #F97316;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

.bonus-left h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}

.bonus-left > p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}

.bonus-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.bonus-pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.25s;
}

.bonus-pillar:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

.bp-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.bp-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.bp-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.bp-badge {
  display: inline-block;
  background: rgba(26, 86, 219, 0.25);
  border: 1px solid rgba(26, 86, 219, 0.4);
  color: #93C5FD;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bonus-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bi-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bi-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(22, 163, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.bi-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.bi-text strong {
  color: #FFFFFF;
}

/* The right side "offer card" */
.bonus-right {
  background: linear-gradient(160deg, rgba(26, 86, 219, 0.18) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}

.bonus-value-tag {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  border: 1px dashed rgba(249,115,22,0.5);
  color: var(--orange);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.bonus-price-cross {
  font-size: 15px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 500;
}

.bonus-price-free {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.bonus-features-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.bfl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.bfl-item .bfl-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.bonus-cta {
  display: block;
  background: linear-gradient(135deg, #e99115, #f4a637);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
  transition: all 0.2s;
  margin-bottom: 12px;
}

.bonus-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.5);
}

.bonus-cta-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.bonus-spots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.spots-bar {
  display: flex;
  gap: 4px;
  align-items: center;
}

.spot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.spot-dot.taken {
  background: #F97316;
}

.spots-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.spots-text strong {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
  .bonus-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .bonus-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .bonus-pillars {
    grid-template-columns: 1fr;
  }
}
    /* ─── RESPONSIVE ─── */
    @media(max-width: 960px) {
      .hero-inner, .form-inner, .compliance-inner, .hiw-grid { grid-template-columns: 1fr; }
      .hero-screenshot { display: none; }
      h1 { font-size: 34px; }
      h2 { font-size: 28px; }
      .pain-grid { grid-template-columns: 1fr 1fr; }
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .ot-grid { grid-template-columns: 1fr; gap: 24px; }
      .ot-grid::before { display: none; }
      .nav-links { display: none; }
    }
    @media(max-width: 600px) {
      .pain-grid, .feat-grid, .form-row, .comp-cards { grid-template-columns: 1fr; }
      .hero-ctas, .final-btns { flex-direction: column; }
      .stat-div { display: none; }
      .pain-cta-band, .why-cta-band { flex-direction: column; text-align: center; }
      .sticky-bar { flex-direction: column; gap: 8px; }
      .nav-cta .btn-whatsapp { display: none; }
      .btn { padding: 10px;font-size:12px;}
    }
      .ind-section {
    background: var(--gray-50);
    padding: 72px 24px;
    font-family: var(--font-b);
  }
  .ind-container { max-width: 1100px; margin: 0 auto; }

  .ind-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(245,166,35,0.3);
    margin-bottom: 16px;
  }
  .ind-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
  .ind-header h2 {
    font-family: var(--font-h);
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .ind-header h2 span { color: var(--orange); }
  .ind-header p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
  }

  .ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .ind-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .ind-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .ind-card:hover::before { transform: scaleX(1); }
  .ind-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }

  .ind-icon {
    width: 56px; height: 56px;
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    background: var(--icon-bg, var(--blue-light));
    transition: transform 0.3s ease;
  }
  .ind-card:hover .ind-icon { transform: scale(1.08) rotate(3deg); }
  .ind-icon svg { width: 26px; height: 26px; }

  .ind-card h3 {
    font-family: var(--font-h);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  .ind-card:hover h3 { color: var(--card-accent, var(--navy)); }
  .ind-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
  }

  .ind-cta { text-align: center; }
  .ind-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
  .btn-primary {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: var(--shadow-md);
  }
  .btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .btn-secondary {
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 100px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-secondary:hover { background: var(--blue-light); transform: translateY(-2px); }
  .ind-trust {
    font-size: 13px;
    color: var(--gray-400);
  }
  .ind-trust span { color: var(--orange); font-weight: 600; }
  .phone-field{
    display:flex;
    align-items:center;
    border:1px solid #dcdcdc;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.phone-field span{
    padding:0 14px;
    background:#f5f5f5;
    height:50px;
    display:flex;
    align-items:center;
    font-weight:600;
    color:#333;
    border-right:1px solid #ddd;
}

.phone-field input{
    border:none;
    flex:1;
    height:50px;
    padding:0 14px;
    outline:none;
}

.error{
    display:block;
    color:#e53935;
    font-size:13px;
    margin-top:6px;
}
.iti{
    width:100%;
}

.phone-input{
    width:100%;
    height:40px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    padding-left:90px !important;
    font-size:15px;
}

.iti__country-container{
    padding-left:10px;
}

.error{
    display:block;
    color:#e53935;
    font-size:13px;
    margin-top:6px;
}
.table-responsive{
    width:100%;
    overflow-x:auto;
}

.table-responsive table{
    width:100%;
    border-collapse:collapse;
}