:root {
      --blue-deep: #0a1f44;
      --blue-mid: #1346a0;
      --blue-bright: #1a6fdb;
      --blue-light: #4d9ff5;
      --blue-pale: #e8f1fd;
      --white: #ffffff;
      --gray-soft: #f4f7fc;
      --gray-text: #5a6a85;
      --border: #d0dff5;
    }
    * { box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; color: var(--blue-deep); background: var(--white); margin: 0; }
    h1,h2,h3,h4,nav,button { font-family: 'Sora', sans-serif; }

    /* NAVBAR */
    .navbar {
      position: sticky; top: 0; z-index: 100;
      background: var(--blue-deep);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px; height: 60px;
      box-shadow: 0 2px 16px rgba(10,31,68,0.25);
    }
    .navbar .logo { color: #fff; font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 800; letter-spacing: 0.03em; }
    .navbar .logo span { color: var(--blue-light); }
    .nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
    .nav-links li a { color: rgba(255,255,255,0.82); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color .2s; }
    .nav-links li a:hover { color: var(--blue-light); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-icon { color: rgba(255,255,255,0.75); font-size: 1rem; cursor: pointer; transition: color .2s; }
    .nav-icon:hover { color: var(--blue-light); }
    .btn-contact { background: transparent; border: 1.5px solid var(--blue-light); color: var(--blue-light); padding: 7px 18px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: 'Sora', sans-serif; transition: all .2s; }
    .btn-contact:hover { background: var(--blue-light); color: #fff; }
    .btn-hub { background: var(--blue-bright); border: none; color: #fff; padding: 8px 18px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; cursor: pointer; font-family: 'Sora', sans-serif; transition: all .2s; }
    .btn-hub:hover { background: var(--blue-light); }

    /* HERO SLIDER */
    .hero-section {
      background: linear-gradient(135deg, var(--blue-deep) 0%, #0d2d6b 60%, #0f3580 100%);
      position: relative; overflow: hidden; min-height: 340px;
      display: flex; align-items: center;
    }
    .hero-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(26,111,219,0.18) 0%, transparent 70%);
    }
    .hero-dots-pattern {
      position: absolute; inset: 0; opacity: 0.07;
      background-image: radial-gradient(circle, #4d9ff5 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .hero-content { position: relative; z-index: 2; padding: 60px 60px; max-width: 55%; }
    .hero-badge { display: inline-block; background: var(--blue-bright); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 18px; }
    .hero-content h1 { color: #fff; font-size: 2.1rem; font-weight: 800; line-height: 1.2; margin: 0 0 16px; }
    .hero-content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin: 0 0 28px; max-width: 420px; }
    .btn-primary { background: var(--blue-bright); color: #fff; padding: 12px 28px; border-radius: 4px; font-size: 0.875rem; font-weight: 700; text-decoration: none; display: inline-block; font-family: 'Sora', sans-serif; transition: all .2s; border: none; cursor: pointer; }
    .btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,111,219,0.4); }
    .hero-image-block {
      position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-image-block img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
    .hero-image-block .overlay-card {
      position: absolute; bottom: 24px; right: 24px;
      background: rgba(10,31,68,0.85); backdrop-filter: blur(8px);
      border: 1px solid rgba(77,159,245,0.3); border-radius: 8px;
      padding: 14px 20px; color: #fff;
    }
    .hero-image-block .overlay-card .brand { font-size: 1.1rem; font-weight: 800; color: var(--blue-light); }
    .hero-image-block .overlay-card .sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
    .slider-nav { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
    .slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; }
    .slider-dot.active { background: var(--blue-light); }
    .slide-arrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
      width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3);
      background: rgba(10,31,68,0.5); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .2s; font-size: 0.85rem;
    }
    .slide-arrow:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: #fff; }
    .slide-arrow.left { left: 16px; }
    .slide-arrow.right { right: 16px; }

    /* ERP SECTION */
    .erp-section { background: var(--white); padding: 64px 60px; text-align: center; }
    .section-eyebrow { color: var(--blue-bright); font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
    .section-title { font-size: 1.75rem; font-weight: 800; color: var(--blue-deep); margin: 0 0 12px; }
    .section-subtitle { color: var(--gray-text); font-size: 0.9rem; line-height: 1.7; max-width: 560px; margin: 0 auto 48px; }
    .cards-row { display: flex; gap: 20px; overflow: hidden; position: relative; }
    .card-wrap { display: flex; gap: 20px; flex: 1; }
    .solution-card {
      background: var(--white); border: 1.5px solid var(--border); border-radius: 10px;
      padding: 28px 24px; flex: 1; text-align: left; transition: all .25s; cursor: pointer;
      position: relative; overflow: hidden;
    }
    .solution-card:hover { border-color: var(--blue-bright); box-shadow: 0 8px 32px rgba(26,111,219,0.12); transform: translateY(-3px); }
    .solution-card:hover .card-icon-wrap { background: var(--blue-bright); }
    .solution-card:hover .card-icon-wrap i { color: #fff; }
    .card-icon-wrap { width: 52px; height: 52px; border-radius: 8px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: all .25s; }
    .card-icon-wrap i { font-size: 1.3rem; color: var(--blue-bright); transition: color .25s; }
    .solution-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue-deep); margin: 0 0 8px; }
    .solution-card p { font-size: 0.83rem; color: var(--gray-text); line-height: 1.65; margin: 0; }
    .card-arrow { position: absolute; bottom: 18px; right: 18px; color: var(--blue-bright); opacity: 0; transition: opacity .2s; font-size: 0.9rem; }
    .solution-card:hover .card-arrow { opacity: 1; }
    .cards-prev, .cards-next {
      background: var(--blue-pale); border: 1.5px solid var(--border); color: var(--blue-mid);
      width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      cursor: pointer; flex-shrink: 0; align-self: center; transition: all .2s; font-size: 0.85rem;
    }
    .cards-prev:hover, .cards-next:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: #fff; }

    /* STATS SECTION */
    .stats-section {
      background: linear-gradient(135deg, var(--blue-deep) 0%, #0f3580 100%);
      padding: 64px 60px; text-align: center; position: relative; overflow: hidden;
    }
    .stats-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(26,111,219,0.2) 0%, transparent 60%);
    }
    .stats-section .section-title { color: #fff; position: relative; z-index: 1; }
    .stats-row { display: flex; justify-content: center; gap: 80px; margin-top: 40px; position: relative; z-index: 1; }
    .stat-item { text-align: center; }
    .stat-label { color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; }
    .stat-number { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
    .stat-plus { color: var(--blue-light); }
    .btn-secondary { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; padding: 12px 32px; border-radius: 4px; font-size: 0.875rem; font-weight: 600; margin-top: 40px; display: inline-block; cursor: pointer; font-family: 'Sora', sans-serif; transition: all .2s; text-decoration: none; position: relative; z-index: 1; }
    .btn-secondary:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
    .stats-divider { width: 1px; height: 64px; background: rgba(255,255,255,0.15); align-self: center; }

    /* SUPPLY CHAIN SECTION */
    .supply-section { background: var(--gray-soft); padding: 64px 60px; }
    .supply-inner { max-width: 1100px; margin: 0 auto; }
    .supply-section .section-eyebrow { text-align: center; }
    .supply-section .section-title { text-align: center; }
    .supply-section .section-subtitle { text-align: center; }
    .supply-image {
      width: 100%; height: 280px; border-radius: 12px; overflow: hidden; margin: 36px 0;
      position: relative; background: linear-gradient(135deg, #0d2248 0%, #1a4a9e 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .supply-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
    .supply-image .img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,31,68,0.7) 0%, transparent 60%); }
    .supply-image .img-text { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); color: #fff; }
    .supply-image .img-text h3 { font-size: 1.6rem; font-weight: 800; margin: 0 0 8px; }
    .supply-image .img-text p { font-size: 0.85rem; color: rgba(255,255,255,0.75); max-width: 320px; }
    .supply-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
    .supply-card { background: var(--white); border-radius: 10px; border: 1.5px solid var(--border); padding: 24px; transition: all .25s; }
    .supply-card:hover { box-shadow: 0 8px 28px rgba(26,111,219,0.1); transform: translateY(-2px); border-color: var(--blue-light); }
    .supply-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 14px; }
    .tag-make { background: #e8f1fd; color: var(--blue-bright); }
    .tag-move { background: #e6f4ea; color: #1e8a40; }
    .tag-sell { background: #fff3e3; color: #d17a00; }
    .supply-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--blue-deep); margin: 0 0 8px; }
    .supply-card p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.65; margin: 0; }

    /* FOOTER */
    footer {
      background: var(--blue-deep);
      padding: 56px 60px 32px;
      color: rgba(255,255,255,0.7);
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand .logo { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff; }
    .footer-brand .logo span { color: var(--blue-light); }
    .footer-brand p { font-size: 0.83rem; line-height: 1.7; margin: 14px 0 20px; max-width: 280px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-socials a { width: 34px; height: 34px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: all .2s; text-decoration: none; }
    .footer-socials a:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: #fff; }
    .footer-col h5 { color: #fff; font-size: 0.875rem; font-weight: 700; margin: 0 0 18px; letter-spacing: .03em; }
    .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.83rem; text-decoration: none; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--blue-light); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; }
    .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 20px; transition: color .2s; }
    .footer-bottom a:hover { color: var(--blue-light); }
    .footer-bottom-links { display: flex; }

    /* RESOURCES SECTION */

.resources-section{
background: var(--white);
padding:64px 60px;
}

.resources-inner{
max-width:1100px;
margin:auto;
text-align:center;
}

.resources-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;
}

.resource-card{
background:var(--white);
border:1.5px solid var(--border);
border-radius:10px;
padding:26px 22px;
text-align:left;
transition:all .25s;
}

.resource-card:hover{
transform:translateY(-3px);
box-shadow:0 8px 28px rgba(26,111,219,0.12);
border-color:var(--blue-light);
}

.resource-icon{
width:48px;
height:48px;
border-radius:8px;
background:var(--blue-pale);
display:flex;
align-items:center;
justify-content:center;
margin-bottom:14px;
}

.resource-icon i{
color:var(--blue-bright);
font-size:1.2rem;
}

.resource-card h4{
font-size:0.95rem;
font-weight:700;
color:var(--blue-deep);
margin:0 0 8px;
}

.resource-card p{
font-size:0.82rem;
color:var(--gray-text);
line-height:1.6;
margin-bottom:14px;
}

.resource-card a{
font-size:0.8rem;
font-weight:600;
color:var(--blue-bright);
text-decoration:none;
}

.resource-card a i{
margin-left:6px;
font-size:0.7rem;
}

/* responsive */

@media(max-width:768px){

.resources-grid{
grid-template-columns:1fr;
}

}

    /* ANIMATION */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    .fade-up { animation: fadeUp 0.7s ease both; }
    .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }

    /* RESPONSIVE HELPERS */
    @media (max-width: 768px) {
      .navbar { padding: 0 20px; }
      .nav-links { display: none; }
      .hero-content { padding: 40px 24px; max-width: 100%; }
      .hero-image-block { display: none; }
      .erp-section, .stats-section, .supply-section, footer { padding: 40px 24px; }
      .stats-row { flex-wrap: wrap; gap: 32px; }
      .stats-divider { display: none; }
      .supply-cards { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .card-wrap { flex-wrap: wrap; }
    }