/* ============================================================
   South Asia Foods LLC-FZ — Design Tokens
   Concept: two products, one origin. A shipping-manifest route
   line carries the eye from ocean (Taprobane Seafoods) to
   shore (Coco House), the two legs of the group's trade.
   ============================================================ */

:root{
  --navy:      #0B2E4A;
  --navy-deep: #071D30;
  --azure:     #2CA9E1;
  --amber:     #F2A93C;
  --coral:     #E85A34;
  --sand:      #F3ECDD;
  --ink:       #1C1D1F;
  --ink-soft:  #55606B;
  --white:     #FFFFFF;
  --line:      rgba(11,46,74,0.14);

  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, 'Courier New', monospace;

  --container: 1180px;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Eyebrow / mono labels (manifest data style) ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 22px;
  height: 1px;
  background: currentColor;
  display:inline-block;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h2{ font-size: clamp(28px,4vw,42px); }
h3{ font-size: clamp(20px,2.4vw,26px); }
p{ color: var(--ink-soft); }

.btn{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-solid{
  background: linear-gradient(120deg, var(--azure), #4FBCEC 55%, var(--amber));
  border-color: transparent;
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(44,169,225,0.35);
}
.btn-solid:hover{ box-shadow: 0 12px 30px rgba(242,169,60,0.4); }
.btn-ghost{
  color: var(--white);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.1); }
.btn-dark{
  color: var(--navy);
}
.btn-dark:hover{ background: var(--navy); color: var(--white); }

/* ---------- Header ---------- */
header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(7,29,48,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.2);
}
header::after{
  content:"";
  display:block;
  height:3px;
  background: linear-gradient(90deg, var(--azure), var(--amber), var(--coral), var(--azure));
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer{
  0%{ background-position: 0% 0; }
  100%{ background-position: 200% 0; }
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 32px;
  max-width: var(--container);
  margin:0 auto;
}
.nav-logo{ display:flex; align-items:center; gap:12px; }
.nav-logo img{ height: 34px; width:auto; }
.nav-logo-text{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  line-height:1.3;
}
.nav-links{
  display:flex;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-links a{
  color: rgba(255,255,255,0.75);
  position:relative;
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a.active{ color: var(--white); }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background: var(--azure);
}
.nav-toggle{ display:none; background:none; border:none; color:var(--white); font-size: 22px; cursor:pointer; }

@media (max-width: 780px){
  .nav-links{
    position:absolute;
    top:100%; left:0; right:0;
    background: var(--navy-deep);
    flex-direction:column;
    gap:0;
    padding: 8px 0 18px;
    display:none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 12px 32px; display:block; }
  .nav-toggle{ display:block; }
}

/* ---------- Hero ---------- */
.hero{
  background:
    radial-gradient(ellipse at 78% 12%, rgba(44,169,225,0.25), transparent 55%),
    radial-gradient(ellipse at 12% 90%, rgba(232,90,52,0.18), transparent 55%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 96px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items:center;
}
.hero .eyebrow{ color: var(--azure); margin-bottom: 22px; }
.hero h1{
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 22px;
}
.hero h1 .accent{
  background: linear-gradient(90deg, var(--amber), var(--coral) 60%, var(--azure));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero p.lead{
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-mark{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-mark img{
  width: min(320px, 80%);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.45));
}

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-mark{ order:-1; margin-bottom: 8px; }
  .hero-mark img{ width: 180px; }
}

/* ---------- Route strip (signature element) ---------- */
.route{
  padding: 70px 0 78px;
  background: var(--white);
}
.route-head{ margin-bottom: 44px; max-width: 60ch; }
.route-head .eyebrow{ color: var(--coral); margin-bottom: 14px; }
.route-head p{ margin-top: 12px; }

.route-track{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.route-line{
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--azure) 0 10px, transparent 10px 18px);
  position: relative;
}
.route-line::before, .route-line::after{
  content:"";
  position:absolute;
  top:50%; transform: translateY(-50%);
  width: 10px; height:10px;
  border-radius:50%;
}
.route-line::before{ left:-5px; background: var(--azure); }
.route-line::after{ right:-5px; background: var(--coral); }
.route-node{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-align:center;
  white-space: nowrap;
  padding: 0 6px;
}
@media (max-width: 700px){
  .route-track{ grid-template-columns: 1fr; }
  .route-line{ width: 2px; height: 60px; margin: 0 auto; background-image: repeating-linear-gradient(180deg, var(--azure) 0 10px, transparent 10px 18px); }
}

.company-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 44px;
}
@media (max-width: 780px){ .company-cards{ grid-template-columns: 1fr; } }

.ccard{
  border-radius: 4px;
  padding: 34px 30px;
  position:relative;
  overflow:hidden;
  color: var(--white);
}
.ccard.sea{ background: linear-gradient(145deg, var(--navy), #12507C); }
.ccard.land{ background: linear-gradient(145deg, #B8471F, var(--coral)); }
.ccard .eyebrow{ color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.ccard h3{ color: var(--white); margin-bottom: 10px; }
.ccard p{ color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.ccard .tag-row{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 24px; }
.tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 10px;
  border-radius: 2px;
  color: rgba(255,255,255,0.85);
}

/* ---------- Stats ---------- */
.stats{
  background: var(--sand);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
@media (max-width: 780px){ .stats-grid{ grid-template-columns: 1fr 1fr; } }
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(28px,3.4vw,40px);
  font-weight: 700;
  color: var(--navy);
}
.stat-label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ---------- Generic section ---------- */
section.block{ padding: 84px 0; }
.section-head{ max-width: 62ch; margin-bottom: 46px; }
.section-head .eyebrow{ margin-bottom: 14px; }
.section-head p{ margin-top: 14px; font-size: 16px; }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items:start;
}
@media (max-width: 820px){ .two-col{ grid-template-columns:1fr; } }

/* ---------- Timeline (About) ---------- */
.timeline{ border-top: 1px solid var(--line); margin-top: 10px; }
.tl-item{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.tl-year{
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--coral);
  font-weight: 500;
}
.tl-item h4{ font-size: 17px; margin-bottom: 6px; }

/* ---------- Values grid ---------- */
.values-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}
@media (max-width: 820px){ .values-grid{ grid-template-columns: 1fr; } }
.value-card{
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
}
.value-card .eyebrow{ color: var(--azure); font-size: 11px; margin-bottom: 14px; }
.value-card h4{ font-size: 17px; margin-bottom: 8px; }


/* ---------- Banking & Development Finance Partners ---------- */
.finance-partners{ padding-top: 0; }
.finance-partner-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; max-width:760px; }
.finance-partner-card{ border:1px solid var(--line); border-radius:4px; min-height:150px; display:flex; align-items:center; justify-content:center; padding:30px; background:#fff; }
.finance-partner-card svg{ width:100%; max-width:260px; height:auto; display:block; }
.finance-partner-card.fmo svg{ max-width:230px; }
@media (max-width:640px){ .finance-partner-grid{grid-template-columns:1fr;} }

/* ---------- Group company detail sections ---------- */
.gc-section{ padding: 90px 0; }
.gc-section.sea{ background: linear-gradient(180deg, var(--navy-deep), var(--navy)); color: var(--white); }
.gc-section.land{ background: linear-gradient(180deg, #FBF3E8, var(--sand)); }

.gc-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 24px;
  flex-wrap:wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}
.gc-section.sea .gc-header{ border-bottom-color: rgba(255,255,255,0.16); }
.gc-header .eyebrow{ margin-bottom: 12px; }
.gc-section.sea .eyebrow{ color: var(--azure); }
.gc-section.land .eyebrow{ color: var(--coral); }
.gc-header h2{ margin: 0; }
.gc-section.land h2{ color: var(--navy); }

.product-grid{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
  margin-top: 30px;
}
@media (max-width: 900px){ .product-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .product-grid{ grid-template-columns: repeat(2,1fr); } }
.product-chip{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-align:center;
  padding: 16px 8px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.18);
}
.gc-section.land .product-chip{ border-color: rgba(11,46,74,0.16); color: var(--navy); }

.gc-meta{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 13px;
}
@media (max-width: 700px){ .gc-meta{ grid-template-columns: 1fr; } }
.gc-meta-label{ opacity: 0.6; font-size:11px; letter-spacing:0.08em; margin-bottom:6px; text-transform:uppercase; }

/* ---------- Contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns:1fr; } }

.field{ margin-bottom: 20px; }
.field label{
  display:block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field textarea{
  width:100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
}
.field input:focus, .field textarea:focus{
  outline: 2px solid var(--azure);
  outline-offset: 1px;
}
.field textarea{ min-height: 130px; resize: vertical; }

.contact-card{
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow:hidden;
}
.contact-card-head{
  background: var(--navy);
  color: var(--white);
  padding: 22px 24px;
}
.contact-card-body{ padding: 24px; }
.contact-row{ display:flex; gap:14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child{ border-bottom:none; }
.contact-row .k{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: 92px;
  flex-shrink:0;
  padding-top:2px;
}
.contact-row .v{ font-size: 14.5px; }
.contact-row .v a:hover{ color: var(--azure); }

.subsidiary-contacts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 560px){ .subsidiary-contacts{ grid-template-columns:1fr; } }
.mini-card{
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
}
.mini-card .eyebrow{ font-size: 10.5px; margin-bottom: 10px; }
.mini-card.sea .eyebrow{ color: var(--azure); }
.mini-card.land .eyebrow{ color: var(--coral); }
.mini-card p{ font-size: 13.5px; margin-bottom: 4px; }
.mini-card a.visit{
  display:inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  border-bottom: 1px solid currentColor;
}

/* ---------- Footer ---------- */
footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 54px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-logo{ height: 30px; margin-bottom: 14px; }
.footer-grid p{ color: rgba(255,255,255,0.55); font-size: 13.5px; max-width: 34ch; }
.footer-col h5{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.footer-col a{
  display:block;
  font-size: 13.5px;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
}
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 68px 0 60px;
}
.page-hero .eyebrow{ color: var(--azure); margin-bottom: 16px; }
.page-hero h1{ font-size: clamp(30px,4.2vw,44px); }
.page-hero p{ color: rgba(255,255,255,0.7); max-width: 55ch; margin-top: 16px; }

/* ---------- Brand marks (subsidiary logos) ---------- */
.brand-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  flex-shrink:0;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(11,46,74,0.18);
  overflow:hidden;
}
.brand-logo-img{ display:block; height:100%; width:auto; max-width:100%; object-fit:contain; }
.brand-mark.lg{ height:76px; width:auto; padding:12px 18px; border: 1px solid rgba(44,169,225,0.3); }
.gc-section.land .brand-mark.lg{ border-color: rgba(232,90,52,0.3); }
.brand-mark.md{ height:58px; width:auto; padding:9px 14px; margin-bottom:14px; }
.brand-mark.sm{ height:42px; width:auto; padding:7px 11px; margin-bottom:10px; }
.brand-mark.xs{ height:26px; width:auto; padding:3px 7px; margin-right:10px; box-shadow: 0 2px 8px rgba(0,0,0,0.25); border-radius:8px; }
.gc-header-title{ display:flex; align-items:center; gap:18px; }
.footer-col a.with-mark{ display:flex; align-items:center; }

/* ---------- Color accents / attraction pass ---------- */
.value-card{ border-top: 3px solid var(--azure); position:relative; transition: transform .2s ease, box-shadow .2s ease; }
.value-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,46,74,0.1); }
.value-card:nth-child(2){ border-top-color: var(--coral); }
.value-card:nth-child(3){ border-top-color: var(--amber); }

.stats-grid .reveal:nth-child(1) .stat-num{ color: var(--azure); }
.stats-grid .reveal:nth-child(2) .stat-num{ color: var(--coral); }
.stats-grid .reveal:nth-child(3) .stat-num{ color: var(--navy); }
.stats-grid .reveal:nth-child(4) .stat-num{ color: var(--amber); }

.tag{ background: rgba(255,255,255,0.08); }
.gc-section.sea .product-chip{ background: rgba(44,169,225,0.08); }
.gc-section.land .product-chip{ background: rgba(232,90,52,0.06); }
.product-chip:hover{ transform: translateY(-2px); transition: transform .15s ease; }

.tl-item{ position:relative; padding-left: 0; }
.tl-year{ position:relative; }
.tl-year::before{
  content:"";
  display:inline-block;
  width:8px; height:8px;
  border-radius:50%;
  background: var(--coral);
  margin-right:8px;
  vertical-align:middle;
}
.tl-item:nth-child(2) .tl-year::before{ background: var(--amber); }
.tl-item:nth-child(3) .tl-year::before{ background: var(--azure); }

.contact-card-head{ background: linear-gradient(135deg, var(--navy), #12507C); }

.stats{ background: linear-gradient(180deg, var(--sand), #FBF3E8); }

.route-node:first-child{ color: var(--azure); font-weight: 600; }
.route-node:last-child{ color: var(--coral); font-weight: 600; }

/* ---------- Reveal-on-scroll ---------- */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }
.company-cards .reveal:nth-child(2){ transition-delay: .12s; }
.stats-grid .reveal:nth-child(2){ transition-delay: .08s; }
.stats-grid .reveal:nth-child(3){ transition-delay: .16s; }
.stats-grid .reveal:nth-child(4){ transition-delay: .24s; }
.values-grid .reveal:nth-child(2){ transition-delay: .1s; }
.values-grid .reveal:nth-child(3){ transition-delay: .2s; }
.finance-partner-grid .reveal:nth-child(2){ transition-delay: .1s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ---------- Single-file SPA page switching ---------- */
.page[hidden]{ display:none; }
.page{ animation: pageIn .5s ease; }
@keyframes pageIn{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}

/* ---------- Route line motion ---------- */
.route-line{ animation: routeMarch 2.2s linear infinite; }
.route-line::before{ animation: pulseDot 2.4s ease-in-out infinite; }
.route-line::after{ animation: pulseDot 2.4s ease-in-out infinite .6s; }
@keyframes routeMarch{ to{ background-position: -28px 0; } }
@keyframes pulseDot{
  0%, 100%{ transform: translateY(-50%) scale(1); }
  50%{ transform: translateY(-50%) scale(1.35); }
}
@media (max-width: 700px){
  @keyframes routeMarch{ to{ background-position: 0 -28px; } }
}

/* ---------- Card & logo hover motion ---------- */
.ccard{ transition: transform .3s ease, box-shadow .3s ease; }
.ccard:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px rgba(11,46,74,0.25); }
.finance-partner-card{ transition: transform .25s ease, box-shadow .25s ease; }
.finance-partner-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 28px rgba(11,46,74,0.12); }
.brand-mark{ transition: transform .25s ease; }
.gc-header-title:hover .brand-mark{ transform: scale(1.05); }
.nav-logo img{ transition: transform .3s ease; }
.nav-logo:hover img{ transform: rotate(-8deg) scale(1.08); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress{
  position: fixed;
  top:0; left:0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--azure), var(--amber), var(--coral));
  z-index: 200;
  transition: width .1s linear;
}

/* ---------- Hero mark float ---------- */
.hero-mark img{ animation: floatMark 5s ease-in-out infinite; }
@keyframes floatMark{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* ---------- Animated gradient accent text ---------- */
.hero h1 .accent{
  background-size: 200% auto;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}

/* ---------- Button shine sweep ---------- */
.btn{ position:relative; overflow:hidden; }
.btn::before{
  content:"";
  position:absolute;
  top:0; left:-60%;
  width:40%; height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.btn:hover::before{ left: 130%; }

/* ---------- Nav link underline sweep ---------- */
.nav-links a{ overflow:hidden; }
.nav-links a::before{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:100%; height:2px;
  background: var(--azure);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::before{ transform: scaleX(1); }
.nav-links a.active::before{ transform: scaleX(1); }
.nav-links a.active::after{ display:none; }

/* ---------- Staggered chips, tags, timeline ---------- */
.product-chip, .tag{ animation: popIn .45s ease backwards; }
.product-grid .product-chip:nth-child(1){ animation-delay: .02s; }
.product-grid .product-chip:nth-child(2){ animation-delay: .07s; }
.product-grid .product-chip:nth-child(3){ animation-delay: .12s; }
.product-grid .product-chip:nth-child(4){ animation-delay: .17s; }
.product-grid .product-chip:nth-child(5){ animation-delay: .22s; }
.product-grid .product-chip:nth-child(6){ animation-delay: .27s; }
.product-grid .product-chip:nth-child(7){ animation-delay: .32s; }
.product-grid .product-chip:nth-child(8){ animation-delay: .37s; }
.product-grid .product-chip:nth-child(9){ animation-delay: .42s; }
.product-grid .product-chip:nth-child(10){ animation-delay: .47s; }
.tag-row .tag:nth-child(1){ animation-delay: .05s; }
.tag-row .tag:nth-child(2){ animation-delay: .12s; }
.tag-row .tag:nth-child(3){ animation-delay: .19s; }
.tag-row .tag:nth-child(4){ animation-delay: .26s; }
@keyframes popIn{
  from{ opacity:0; transform: scale(.85) translateY(6px); }
  to{ opacity:1; transform: scale(1) translateY(0); }
}
.tl-item{ transition: background .25s ease, padding-left .25s ease; }
.tl-item:hover{ background: rgba(11,46,74,0.03); padding-left: 12px; }
.gc-section.sea .tl-item:hover{ background: rgba(255,255,255,0.04); }

/* ---------- Card hover lift extras ---------- */
.mini-card{ transition: transform .25s ease, box-shadow .25s ease; }
.mini-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 26px rgba(11,46,74,0.1); }
.contact-card{ transition: transform .25s ease, box-shadow .25s ease; }
.contact-card:hover{ transform: translateY(-3px); box-shadow: 0 16px 30px rgba(11,46,74,0.12); }
.value-card{ transition: transform .25s ease, box-shadow .25s ease; }
.field input, .field textarea{ transition: transform .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus{ transform: translateY(-1px); box-shadow: 0 6px 16px rgba(44,169,225,0.15); }

/* ---------- Footer fade-up ---------- */
footer{ animation: footerIn .7s ease backwards; }
@keyframes footerIn{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .page{ animation:none; }
  .route-line, .route-line::before, .route-line::after{ animation:none; }
  .ccard:hover, .finance-partner-card:hover{ transform:none; }
  .hero-mark img, .hero h1 .accent, .btn::before, .product-chip, .tag, footer{ animation:none; }
}
