:root {
  --purple: #7546ea;
  --purple-dark: #34206f;
  --pink: #f04ce6;
  --ink: #171422;
  --text: #363242;
  --muted: #6e687d;
  --line: #e9e4f2;
  --soft: #f7f8fb;
  --white: #ffffff;
  --gold: #d7a134;
  --green: #4f8f67;
  --shadow: 0 18px 48px rgba(32, 24, 64, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--white);
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(233, 228, 242, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: clamp(176px, 19vw, 252px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: #5b5669;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 27px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--purple); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 12px 28px rgba(117, 70, 234, 0.22);
}

.btn.secondary {
  color: var(--purple);
  border: 1px solid rgba(117, 70, 234, 0.24);
  background: var(--white);
}

.btn.light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(117, 70, 234, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-tight { padding: 58px 0; }

.section-soft {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  background: var(--soft);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4.7vw, 4.7rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background: #150f2b;
}

.hero-media,
.hero-media img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.page-hero > img { object-fit: cover; }

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 12, 31, 0.9) 0%, rgba(33, 23, 73, 0.78) 44%, rgba(35, 20, 55, 0.34) 100%),
    radial-gradient(circle at 74% 18%, rgba(240, 76, 230, 0.22), transparent 32%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(330px, 0.42fr);
  gap: 50px;
  align-items: center;
  padding: 86px 0;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.cta-panel .eyebrow { color: #ffd676; }

.hero-copy h1,
.page-hero h1,
.cta-panel h2 { color: var(--white); }

.hero-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.hero-card {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.hero-card h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.25rem;
}

.hero-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-card div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
}

.hero-card dt {
  color: #ffd676;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.trust-strip span {
  padding: 22px 18px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 40px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.two-col,
.product-showcase,
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.image-frame {
  position: relative;
  margin: 0;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -16px 18px 18px -16px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(117, 70, 234, 0.16), rgba(240, 76, 230, 0.16));
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--purple);
  font-size: 1.42rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-grid,
.feature-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-grid article,
.feature-grid article,
.process-grid article,
.testimonial-grid article,
.values-panel article,
.faq-list details,
.inquiry-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(35, 25, 70, 0.05);
}

.service-grid article,
.feature-grid article,
.process-grid article,
.testimonial-grid article {
  padding: 26px;
}

.service-grid article {
  min-height: 230px;
}

.service-grid span,
.process-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--pink);
  font-weight: 800;
}

.service-grid p,
.feature-grid p,
.process-grid p,
.testimonial-grid p {
  font-size: 0.94rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  position: relative;
  padding-left: 29px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--purple);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #150f2b;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.page-hero h1 {
  max-width: 830px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.values-panel {
  display: grid;
  gap: 14px;
}

.values-panel article {
  padding: 24px;
}

.values-panel strong {
  display: block;
  color: var(--purple);
  font-size: 1.05rem;
}

.values-panel span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.testimonial-grid article p {
  color: var(--text);
  font-weight: 600;
}

.testimonial-grid span {
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-panel {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 84px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(52, 32, 111, 0.96), rgba(117, 70, 234, 0.92)),
    url("../images/hero-edible-oil-trading.png") center/cover;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card,
.inquiry-panel {
  padding: 34px;
}

.contact-card address {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
}

.contact-card address strong {
  margin-top: 8px;
  color: var(--ink);
}

.contact-card address a {
  color: var(--purple);
  font-weight: 800;
}

.map-wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 84px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer img { width: 210px; }
.site-footer p { margin: 6px 0 0; font-size: 0.9rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links span a { color: var(--purple); }

@media (max-width: 980px) {
  .nav-shell { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links a::after { bottom: 7px; }
  .hero,
  .hero-inner { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 74px 0;
  }
  .hero-card { max-width: 520px; }
  .two-col,
  .product-showcase,
  .contact-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .trust-strip,
  .service-grid,
  .feature-grid,
  .feature-grid.four,
  .process-grid,
  .testimonial-grid,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand img { width: 176px; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.85rem; }
  .hero-inner { padding: 58px 0; }
  .hero-card div { grid-template-columns: 1fr; gap: 5px; }
  .page-hero { min-height: 390px; }
  .page-hero-content { padding: 68px 0; }
  .section { padding: 62px 0; }
  .section-soft { padding-left: 16px; padding-right: 16px; }
  .trust-strip,
  .service-grid,
  .feature-grid,
  .feature-grid.four,
  .process-grid,
  .testimonial-grid,
  .metric-row,
  .check-list.two {
    grid-template-columns: 1fr;
  }
  .cta-panel { padding: 32px 24px; margin-bottom: 60px; }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links { justify-content: flex-start; }
}
/* @vn-deploy:1777833395701 */
