

:root {
      --navy: #0c1a2b;
      --navy-2: #12233a;
      --red: #e2231a;
      --red-dark: #b81811;
      --gold: #f7a600;
      --gray-bg: #f5f6f9;
      --text-dark: #1c1f26;
      --text-mute: #5b6270;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-dark);
      background: #fff;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    .brand-font {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .text-red {
      color: var(--red);
    }

    .bg-navy {
      background: var(--navy);
    }

    .bg-gray {
      background: var(--gray-bg);
    }

    .btn-red {
      background: var(--red);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: .7rem 1.6rem;
      border-radius: 2px;
      letter-spacing: .5px;
      transition: .25s;
    }

    .btn-red:hover {
      background: var(--red-dark);
      color: #fff;
    }

    .btn-wa {
      background: #25D366;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: .7rem 1.6rem;
      border-radius: 2px;
      transition: .25s;
    }

    .btn-wa:hover {
      background: #1ea952;
      color: #fff;
    }

    .eyebrow {
      color: var(--red);
      font-weight: 700;
      letter-spacing: 2px;
      font-size: .8rem;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: .6rem;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 2px;
      background: var(--red);
      display: inline-block;
    }

    .section-pad {
      padding: 70px 0;
    }

    /* HERO */
    .hero {
      background: linear-gradient(120deg, var(--navy) 55%, var(--navy-2) 100%);
      color: #fff;
      padding: 140px 0 70px;
      position: relative;
    }

    .hero .tag {
      display: inline-block;
      background: rgba(226, 35, 26, .15);
      border: 1px solid var(--red);
      color: #ff8a83;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.15;
    }

    .hero h1 span {
      color: var(--red);
    }

    .hero .sub {
      color: #a9b3c4;
      font-size: .95rem;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .hero p.desc {
      color: #c3cadb;
      font-size: .98rem;
      line-height: 1.7;
      max-width: 560px;
    }

    .hero-img-wrap {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    }

    .hero-img-wrap img {
      width: 100%;
      display: block;
    }

    /* STATS */
    .stats-bar {
      background: #fff;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
      margin-top: -45px;
      position: relative;
      z-index: 5;
      border-radius: 6px;
    }

    .stat-item {
      text-align: center;
      padding: 28px 10px;
      border-right: 1px solid #ececec;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-item h3 {
      color: var(--red);
      font-weight: 700;
      font-size: 2.1rem;
      margin-bottom: 0;
    }

    .stat-item p {
      font-size: .8rem;
      color: var(--text-mute);
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 0;
    }

    /* FEATURES */
    .feature-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 12px;
      font-size: .95rem;
    }

    .feature-list li i {
      color: var(--red);
      margin-top: 3px;
    }

    .call-strip {
      background: var(--gray-bg);
      border-left: 4px solid var(--red);
      padding: 16px 22px;
      font-weight: 600;
      border-radius: 4px;
    }

    .call-strip a {
      color: var(--red);
      text-decoration: none;
    }

    /* PROCESS CARDS */
    .process-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
      transition: .3s;
      height: 100%;
    }

    .process-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
    }

    .process-icon {
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
      color: #fff;
      font-size: 2.3rem;
      position: relative;
    }

    .process-icon .num {
      position: absolute;
      top: 10px;
      left: 12px;
      font-family: 'Oswald', sans-serif;
      font-size: .75rem;
      background: var(--red);
      padding: 3px 9px;
      border-radius: 20px;
      font-weight: 700;
    }

    .process-card .cap {
      padding: 16px;
      text-align: center;
      font-weight: 600;
      font-size: .85rem;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: var(--text-dark);
    }

    /* SPEC TABLE */
    .spec-table {
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    }

    .spec-table table {
      margin-bottom: 0;
    }

    .spec-table thead th {
      background: var(--navy);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 1px;
      font-weight: 600;
      border: none;
      padding: 14px 20px;
    }

    .spec-table td {
      padding: 14px 20px;
      font-size: .92rem;
      vertical-align: middle;
    }

    .spec-table td.param {
      font-weight: 700;
      color: var(--red);
      width: 26%;
      background: #fbfbfc;
    }

    /* COUNTRIES / MARKETS SECTION (redesigned per reference) */
    .markets-panel {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 10px;
      padding: 40px 30px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    }

    .market-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 6px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-dark);
      border-bottom: 1px solid #f2f2f2;
    }

    .market-item .flag {
      font-size: 1.25rem;
      line-height: 1;
      width: 26px;
      text-align: center;
    }

    /* EXPORT PROCESS */
    .step-item {
      text-align: center;
      padding: 0 8px;
    }

    .step-circle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      margin: 0 auto 14px;
      position: relative;
    }

    .step-item h6 {
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .step-item p {
      font-size: .82rem;
      color: var(--text-mute);
    }

    /* TESTIMONIAL */
    .testi-box {
      background: var(--gray-bg);
      border-radius: 8px;
      padding: 34px;
      position: relative;
    }

    .testi-box i.quote {
      font-size: 2rem;
      color: var(--red);
      opacity: .25;
    }

    /* CTA BANNER */
    .cta-banner {
      background: linear-gradient(120deg, var(--navy), var(--navy-2));
      color: #fff;
      padding: 44px 0;
    }

    /* CLIENTELE */
    .logo-box {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 6px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: .5px;
      font-size: .9rem;
      text-align: center;
      padding: 8px;
      transition: .25s;
    }

    .logo-box:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
      transform: translateY(-3px);
    }

    /* CONTACT FORM */
    .contact-wrap {
      background: var(--gray-bg);
    }

    .form-control {
      border-radius: 3px;
      border: 1px solid #ddd;
      padding: .7rem .9rem;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: var(--red);
    }

    @media (max-width:767px) {
      .hero h1 {
        font-size: 1.9rem;
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid #ececec;
      }

      .stats-bar {
        margin-top: 20px;
      }
    }