@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --red: #ef3038;
  --red-dark: #d9212a;
  --charcoal: #383d50;
  --ink: #202535;
  --blue: #2e7dff;
  --cream: #f8f7f4;
  --mist: #f2f4f8;
  --white: #fff;
  --muted: #687083;
  --border: #e2e5ec;
  --shadow: 0 20px 55px rgba(32, 37, 53, .10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.soft-bg { background: var(--mist); }
.dark-bg { color: var(--white); background: var(--charcoal); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 3px; content: ''; background: var(--red); border-radius: 2px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.18; }
h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); letter-spacing: -.045em; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.4vw, 3rem); letter-spacing: -.035em; }
h3 { margin-bottom: 12px; font-size: 1.22rem; }
.dark-bg h2, .dark-bg h3, .dark-bg .eyebrow { color: var(--white); }
.lead { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.dark-bg .lead { color: #d6d9e2; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 44px; }
.section-head > div:first-child { max-width: 720px; }
.section-head h2 { margin-bottom: 0; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--red); box-shadow: 0 12px 25px rgba(239,48,56,.22); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { color: var(--ink); border-color: #cdd2dc; background: var(--white); }
.btn-outline:hover { color: var(--red); border-color: var(--red); }
.btn-light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 600; }
.text-link::after { content: '\2192'; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }
.skip-link { position: fixed; z-index: 1000; top: -100px; left: 20px; padding: 10px 15px; color: #fff; background: var(--ink); }
.skip-link:focus { top: 12px; }

/* Header */
.topbar { color: #e7e9ef; background: var(--charcoal); font-size: .8rem; }
.topbar-inner { display: flex; min-height: 37px; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 22px; }
.topbar a:hover { color: #fff; }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(226,229,236,.85); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; min-height: 83px; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 255px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav > a:not(.btn) { position: relative; padding: 27px 0; color: #4d5363; font-size: .92rem; font-weight: 600; }
.main-nav > a:not(.btn)::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: ''; background: var(--red); transform: scaleX(0); transition: transform .2s; }
.main-nav > a:hover, .main-nav > a.active { color: var(--ink); }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 8px; background: var(--mist); cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: .2s; }

/* Hero */
.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: #171b26; }
.hero-media, .page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(20,24,35,.93) 0%, rgba(26,30,43,.78) 42%, rgba(26,30,43,.10) 76%); }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 665px; padding: 76px 0; }
.hero h1 { margin-bottom: 22px; color: var(--white); }
.hero h1 span { color: #ff5259; }
.hero-copy { max-width: 610px; margin-bottom: 31px; color: #e4e6ec; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
.hero .btn-outline:hover { border-color: #fff; }
.hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; color: #f2f3f6; font-size: .83rem; font-weight: 500; }
.hero-points span::before { margin-right: 8px; color: #ff5259; content: '\2713'; font-weight: 700; }
.page-hero { position: relative; min-height: 400px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--charcoal); }
.page-hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(28,32,45,.94), rgba(35,39,53,.62)); }
.page-hero .container { position: relative; z-index: 2; padding-block: 68px; }
.page-hero h1 { max-width: 800px; margin-bottom: 15px; color: #fff; font-size: clamp(2.3rem, 5vw, 3.65rem); }
.page-hero p { max-width: 700px; margin: 0; color: #e3e5ea; font-size: 1.06rem; }
.breadcrumb { margin-bottom: 20px; color: #fff; font-size: .82rem; font-weight: 600; }
.breadcrumb a { color: #ff777d; }

/* Components */
.stats { position: relative; z-index: 5; margin-top: -46px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: #fff; border-radius: 16px; box-shadow: var(--shadow); }
.stat { padding: 25px 28px; border-right: 1px solid var(--border); }
.stat:last-child { border: 0; }
.stat strong { display: block; margin-bottom: 2px; color: var(--red); font-size: 1.35rem; }
.stat span { color: var(--muted); font-size: .84rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.image-frame { position: relative; }
.image-frame img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame::before { position: absolute; z-index: -1; right: -18px; bottom: -18px; width: 54%; height: 54%; content: ''; background: var(--red); border-radius: var(--radius); }
.floating-note { position: absolute; right: -26px; bottom: 30px; max-width: 210px; padding: 18px; color: #fff; background: var(--charcoal); border-radius: 13px; box-shadow: var(--shadow); }
.floating-note strong { display: block; font-size: 1.35rem; }
.floating-note span { font-size: .78rem; }
.check-list { display: grid; gap: 12px; margin: 24px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; color: #414758; }
.check-list li::before { position: absolute; left: 0; display: grid; width: 21px; height: 21px; place-items: center; content: '\2713'; color: var(--white); background: var(--red); border-radius: 50%; font-size: .67rem; font-weight: 700; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 270px; padding: 30px; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 16px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-6px); }
.service-card::after { position: absolute; right: -24px; bottom: -24px; width: 80px; height: 80px; content: ''; background: rgba(239,48,56,.08); border-radius: 50%; }
.icon-box { display: grid; width: 52px; height: 52px; margin-bottom: 26px; place-items: center; color: var(--red); background: #fff0f1; border-radius: 12px; font-size: 1.4rem; font-weight: 700; }
.service-card p { color: var(--muted); font-size: .91rem; }
.service-card .text-link { font-size: .88rem; }
.portfolio-band { display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; overflow: hidden; background: var(--charcoal); border-radius: var(--radius); }
.portfolio-band img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; }
.portfolio-copy { padding: 54px; color: #d8dbe3; }
.portfolio-copy h2 { color: #fff; }
.commodity-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 32px; }
.commodity-tags span { padding: 8px 12px; color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .79rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process-step { position: relative; padding-top: 18px; counter-increment: step; }
.process-step::before { display: grid; width: 48px; height: 48px; margin-bottom: 22px; place-items: center; content: '0' counter(step); color: #fff; background: var(--red); border-radius: 50%; font-weight: 700; box-shadow: 0 0 0 7px #fdeced; }
.process-step:not(:last-child)::after { position: absolute; top: 41px; left: 64px; width: calc(100% - 56px); height: 1px; content: ''; background: #daddE5; }
.process-step p { color: var(--muted); font-size: .9rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { padding: 24px; color: #d8dbe4; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; }
.benefit strong { display: block; margin-bottom: 8px; color: #fff; }
.benefit i { display: block; width: 27px; height: 3px; margin-bottom: 18px; background: var(--red); }
.testimonials { overflow: hidden; }
.testimonial-track { display: grid; grid-auto-columns: calc((100% - 44px)/3); grid-auto-flow: column; gap: 22px; overflow-x: auto; padding: 4px 3px 24px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.testimonial-track::-webkit-scrollbar { display: none; }
.quote-card { padding: 30px; background: #fff; border: 1px solid var(--border); border-radius: 16px; scroll-snap-align: start; }
.quote-mark { color: var(--red); font-size: 2.8rem; line-height: 1; }
.quote-card blockquote { margin: 10px 0 24px; color: #4d5362; font-size: .93rem; }
.quote-card strong { display: block; }
.quote-card span { color: var(--muted); font-size: .8rem; }
.slider-controls { display: flex; gap: 8px; }
.slider-btn { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: #fff; cursor: pointer; }
.slider-btn:hover { color: #fff; background: var(--red); border-color: var(--red); }
.faq-list { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--ink); border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 600; }
.faq-question span:last-child { flex: 0 0 auto; color: var(--red); font-size: 1.4rem; transition: transform .2s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 44px 22px 0; color: var(--muted); }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 46px 52px; color: #fff; background: var(--red); border-radius: var(--radius); box-shadow: 0 22px 50px rgba(239,48,56,.20); }
.cta-panel h2 { max-width: 720px; margin-bottom: 8px; color: #fff; }
.cta-panel p { margin: 0; color: #fff; opacity: .9; }
.cta-panel .btn { flex: 0 0 auto; }

/* Inner pages */
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card { padding: 28px 24px; border-top: 3px solid var(--red); background: #fff; border-radius: 10px; box-shadow: 0 10px 30px rgba(32,37,53,.06); }
.value-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.full-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-row { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 27px; border: 1px solid var(--border); border-radius: 14px; }
.service-row .icon-box { margin: 0; }
.service-row p { margin: 0; color: var(--muted); font-size: .89rem; }
.industry-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.industry-list span { padding: 14px 16px; background: #fff; border: 1px solid var(--border); border-radius: 8px; font-size: .85rem; font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; }
.contact-grid > * { min-width: 0; }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: start; }
.contact-icon { display: grid; width: 46px; height: 46px; place-items: center; color: var(--red); background: #fff0f1; border-radius: 10px; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--muted); font-size: .9rem; }
.contact-item a { overflow-wrap: anywhere; }
.form-card { padding: 38px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .83rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 14px; color: var(--ink); border: 1px solid #d7dbe4; border-radius: 8px; background: #fff; outline: 0; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,125,255,.12); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .76rem; }
.form-status { margin: 12px 0 0; color: #18753b; font-size: .85rem; font-weight: 600; }
.map-frame { height: 430px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { color: #cdd1dc; background: #292e40; }
.footer-main { display: grid; grid-template-columns: 1.5fr .8fr 1fr 1.25fr; gap: 55px; padding: 70px 0 48px; }
.footer-brand img { width: 238px; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 350px; color: #b7bcc8; font-size: .88rem; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: .95rem; }
.footer-links { display: grid; gap: 11px; font-size: .85rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 12px; font-size: .83rem; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #9fa5b4; font-size: .74rem; }
.footer-bottom-links { display: flex; gap: 18px; }

@media (max-width: 960px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 220px; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; z-index: 99; top: 74px; right: 0; left: 0; display: grid; gap: 0; padding: 22px 24px 30px; background: #fff; box-shadow: 0 20px 35px rgba(32,37,53,.15); transform: translateY(-140%); transition: transform .3s; }
  .main-nav.open { transform: translateY(0); }
  .main-nav > a:not(.btn) { padding: 13px 0; }
  .main-nav > a:not(.btn)::after { bottom: 7px; }
  .main-nav .btn { margin-top: 12px; }
  .section { padding: 76px 0; }
  .hero { min-height: 620px; }
  .hero-content { max-width: 620px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .split { gap: 45px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-band { grid-template-columns: 1fr; }
  .portfolio-band img { min-height: 340px; max-height: 440px; }
  .process-grid, .benefit-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .testimonial-track { grid-auto-columns: calc((100% - 22px)/2); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact-col { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: auto; margin-inline: 14px; }
  .section { padding: 62px 0; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.95rem; }
  .brand img { width: 188px; }
  .hero { min-height: 640px; align-items: end; }
  .hero::after { background: linear-gradient(180deg, rgba(18,22,32,.30), rgba(18,22,32,.94) 62%); }
  .hero-media { object-position: 67% center; }
  .hero-content { padding: 170px 0 56px; }
  .hero-copy { font-size: .98rem; }
  .hero-points { gap: 10px 18px; }
  .page-hero { min-height: 350px; }
  .page-hero .container { padding-block: 54px; }
  .stats { margin-top: 0; padding-top: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px; }
  .stat strong { font-size: 1.05rem; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .split .image-frame { order: -1; }
  .floating-note { right: 12px; bottom: 12px; }
  .image-frame::before { display: none; }
  .card-grid, .full-service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .section-head { display: block; }
  .section-head .slider-controls { margin-top: 22px; }
  .portfolio-copy { padding: 34px 26px; }
  .portfolio-band img { min-height: 260px; }
  .process-grid, .benefit-grid, .value-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .testimonial-track { grid-auto-columns: 88%; }
  .cta-panel { display: block; padding: 35px 26px; }
  .cta-panel .btn { margin-top: 22px; }
  .industry-list { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .map-frame { height: 350px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; padding-top: 55px; }
  .footer-brand, .footer-contact-col { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom-links { margin-top: 9px; }
}

@media (max-width: 430px) {
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:nth-child(3) { border-bottom: 1px solid var(--border); }
  .industry-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
/* @vn-deploy:1787106478874 */
