/* ============================================================
   GIO Ventures — Official Website
   CI: Navy #2E3192 / Magenta #EC008C
   ============================================================ */
:root {
  --navy: #2E3192;
  --navy-deep: #1E2066;
  --navy-dark: #16184A;
  --magenta: #EC008C;
  --ink: #191B2E;
  --gray-700: #4B4E63;
  --gray-500: #7C7F94;
  --gray-300: #C9CBD8;
  --gray-100: #F1F2F7;
  --bg-soft: #F7F8FC;
  --white: #FFFFFF;
  --green: #1E7A3C;
  --red: #E4002B;
  --orange: #C8741C;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(30, 32, 102, 0.10);
  --shadow-sm: 0 4px 16px rgba(30, 32, 102, 0.08);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", "Apple SD Gothic Neo", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 2px 20px rgba(30, 32, 102, 0.06);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 15px; font-weight: 600; color: var(--ink);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav a:hover { color: var(--navy); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--magenta); transition: width .25s;
}
.nav a:hover::after { width: 100%; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  border: 1.5px solid var(--gray-300); border-radius: 100px; padding: 3px;
  font-size: 12.5px; font-weight: 700;
}
.lang-switch a {
  padding: 4px 12px; border-radius: 100px; color: var(--gray-500); transition: all .2s;
}
.lang-switch a.active { background: var(--navy); color: #fff; }
.lang-switch a:not(.active):hover { color: var(--navy); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 190px 0 110px;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(46, 49, 146, 0.10), transparent 60%),
    radial-gradient(800px 500px at -5% 30%, rgba(236, 0, 140, 0.06), transparent 55%),
    linear-gradient(180deg, #FDFDFF 0%, #F5F6FB 100%);
  overflow: hidden;
}
.hero-diamond {
  position: absolute; border-radius: 22%; transform: rotate(45deg);
  pointer-events: none;
}
.hero-d1 {
  width: 480px; height: 480px; right: -140px; top: 60px;
  background: linear-gradient(135deg, rgba(46,49,146,.09), rgba(46,49,146,.02));
  animation: float 9s ease-in-out infinite;
}
.hero-d2 {
  width: 200px; height: 200px; right: 320px; top: 380px;
  background: linear-gradient(135deg, rgba(236,0,140,.10), rgba(236,0,140,.02));
  animation: float 7s ease-in-out 1s infinite;
}
.hero-d3 {
  width: 120px; height: 120px; left: -40px; top: 160px;
  background: linear-gradient(135deg, rgba(46,49,146,.08), transparent);
  animation: float 8s ease-in-out .5s infinite;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: rgba(46,49,146,.07);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--magenta);
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 68px); font-weight: 900; line-height: 1.18;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 26px;
  word-break: keep-all;
}
.hero h1 .accent { color: var(--navy); }
.hero h1 .accent-m { color: var(--magenta); }
.hero-lead {
  font-size: clamp(15px, 1.9vw, 18px); color: var(--gray-700); max-width: 1100px;
  margin-bottom: 40px; word-break: keep-all;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 100px; font-size: 15.5px; font-weight: 700;
  transition: all .25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 8px 24px rgba(46,49,146,.28); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--gray-300); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-magenta { background: var(--magenta); color: #fff; box-shadow: 0 8px 24px rgba(236,0,140,.25); }
.btn-magenta:hover { background: #C50075; transform: translateY(-2px); }

/* ---------- Stats band ---------- */
.stats {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 70%, #3B3FA8 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 22%;
  transform: rotate(45deg); right: -100px; bottom: -160px;
  background: rgba(255,255,255,.04);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.stat { text-align: center; color: #fff; }
.stat-value {
  font-size: clamp(26px, 3vw, 38px); font-weight: 900; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 8px;
}
.stat-value .unit { font-size: .55em; font-weight: 700; margin-left: 2px; }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,.75); font-weight: 500; word-break: keep-all; }

/* ---------- Sections common ---------- */
.section { padding: 110px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em;
  line-height: 1.28; word-break: keep-all; margin-bottom: 18px;
}
.section-desc { font-size: 17px; color: var(--gray-700); word-break: keep-all; }
.section-title .paren {
  font-size: .5em; font-weight: 700; color: var(--magenta); letter-spacing: 0;
  vertical-align: 2px; white-space: nowrap;
}

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px;
}
.pillar {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-num {
  position: absolute; top: 24px; right: 28px; font-size: 15px; font-weight: 800;
  color: var(--gray-300); letter-spacing: .08em;
}
.pillar-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 24px; background: rgba(46,49,146,.08);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.pillar .en { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--magenta); margin-bottom: 16px; }
.pillar p { font-size: 15px; color: var(--gray-700); word-break: keep-all; }

/* Value chain flow */
.flow {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  border-radius: 24px; padding: 56px 48px; color: #fff; margin-bottom: 80px;
}
.flow-title { font-size: 22px; font-weight: 800; margin-bottom: 36px; text-align: center; word-break: keep-all; }
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.flow-step {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 26px 22px; position: relative;
}
.flow-step .n {
  display: inline-grid; place-items: center; width: 30px; height: 30px;
  background: var(--magenta); border-radius: 50%; font-size: 14px; font-weight: 800;
  margin-bottom: 14px;
}
.flow-step h4 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; word-break: keep-all; }
.flow-step p { font-size: 13.5px; color: rgba(255,255,255,.72); word-break: keep-all; line-height: 1.6; }

/* CEO */
.ceo {
  display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: center;
  background: #fff; border-radius: 24px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.ceo-photo {
  height: 100%; min-height: 420px;
  background: linear-gradient(180deg, #EDEFF8, #E2E5F3);
  position: relative;
}
.ceo-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.ceo-body { padding: 48px 56px 48px 0; }
.ceo-detail {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 12px 32px; margin-bottom: 24px;
}
.ceo-detail h5 {
  font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}
.ceo-career li {
  display: flex; gap: 12px; font-size: 13.8px; color: var(--gray-700);
  padding: 4.5px 0; word-break: keep-all; line-height: 1.5;
}
.ceo-career li .yr {
  flex: none; width: 88px; font-weight: 800; color: var(--ink);
  font-variant-numeric: tabular-nums; font-size: 13px;
}
.ceo-feats li {
  position: relative; padding: 4.5px 0 4.5px 16px; font-size: 13.8px;
  color: var(--gray-700); word-break: keep-all; line-height: 1.5;
}
.ceo-feats li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 6px; height: 6px;
  border-radius: 2px; background: var(--magenta); transform: rotate(45deg);
}
.ceo-tags .hl {
  color: #fff; background: var(--navy);
}
.ceo-tags .soft {
  color: #2563A8; background: #EAF4FE;
}
.ceo-tags + .ceo-tags { margin-top: 10px; }
.ceo-body .role { font-size: 13.5px; font-weight: 800; letter-spacing: .12em; color: var(--magenta); text-transform: uppercase; margin-bottom: 10px; }
.ceo-body h3 { font-size: 28px; font-weight: 900; margin-bottom: 18px; }
.ceo-body h3 small { font-size: 16px; font-weight: 600; color: var(--gray-500); margin-left: 10px; }
.ceo-body p { font-size: 15.5px; color: var(--gray-700); margin-bottom: 20px; word-break: keep-all; }
.ceo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ceo-tags span {
  font-size: 13px; font-weight: 600; color: var(--navy);
  background: rgba(46,49,146,.07); padding: 7px 14px; border-radius: 100px;
}

/* ---------- Business ---------- */
.biz-block {
  display: grid; grid-template-columns: 300px 1fr; gap: 48px;
  padding: 56px 0; border-top: 1px solid var(--gray-100);
}
.biz-block:last-child { border-bottom: 1px solid var(--gray-100); }
.biz-side .tag {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.tag-navy { color: var(--navy); background: rgba(46,49,146,.08); }
.tag-magenta { color: var(--magenta); background: rgba(236,0,140,.08); }
.tag-green { color: var(--green); background: rgba(30,122,60,.08); }
.biz-side h3 { font-size: 26px; font-weight: 900; margin-bottom: 12px; word-break: keep-all; }
.biz-side p { font-size: 14.5px; color: var(--gray-500); word-break: keep-all; }
.biz-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.biz-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 16px;
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.biz-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.biz-card .brand-line { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.biz-card .swatch { width: 12px; height: 12px; border-radius: 4px; flex: none; }
.biz-card h4 { font-size: 17.5px; font-weight: 800; }
.biz-card h4 .en { font-size: 12px; color: var(--gray-500); font-weight: 600; margin-left: 6px; }
.biz-card p { font-size: 13.8px; color: var(--gray-700); word-break: keep-all; flex: 1; }
.biz-card .link,
.global-card .link {
  margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 5px;
}
.biz-card .link:hover,
.global-card .link:hover { color: var(--magenta); }
.biz-card .badge {
  display: inline-block; font-size: 11px; font-weight: 800; color: #fff;
  background: var(--magenta); border-radius: 100px; padding: 3px 10px; margin-left: 8px;
  vertical-align: middle;
}

/* Vendor chips */
.vendor-note { font-size: 13.5px; color: var(--gray-500); margin-top: 20px; word-break: keep-all; }

/* ---------- GioClean band ---------- */
.gioclean-band {
  background: linear-gradient(160deg, #0E3D20 0%, #14532D 60%, #1E7A3C 100%);
  color: #fff; padding: 100px 0 0; overflow: hidden;
}
.gioclean-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; margin-bottom: 70px; }
.gioclean-head .section-eyebrow { color: #A5E8BC; }
.gioclean-head .section-title { color: #fff; }
.gioclean-head .section-desc { color: rgba(255,255,255,.8); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span {
  font-size: 13.5px; font-weight: 700; padding: 9px 18px; border-radius: 100px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  word-break: keep-all;
}
.gioclean-img { margin: 0 auto; max-width: 1400px; }
.gioclean-img img { width: 100%; }

/* ---------- MeatPick band ---------- */
.meatpick-band {
  background: linear-gradient(160deg, #121212 0%, #1E1416 55%, #3A0E14 100%);
  color: #fff; padding: 100px 0;
}
.meatpick-band .section-eyebrow { color: #FF6B81; }
.meatpick-band .section-title { color: #fff; }
.meatpick-band .section-desc { color: rgba(255,255,255,.8); }
.mp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.mp-gallery img {
  width: 100%; border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,.4);
  transition: transform .3s;
}
.mp-gallery img:hover { transform: translateY(-6px); }
@media (max-width: 720px) {
  .mp-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ---------- Brands grid ---------- */
.brands-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.brand-tile {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 16px;
  height: 110px; display: grid; place-items: center; padding: 20px;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.brand-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.brand-tile img { height: 46px; width: auto; max-width: 85%; object-fit: contain; }
.brand-tile .txt { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.brands-note { margin-top: 28px; text-align: center; font-size: 13.5px; color: var(--gray-500); word-break: keep-all; }

/* ---------- Global ---------- */
.global-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.global-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 38px 32px; box-shadow: var(--shadow-sm);
}
.global-card .flag { font-size: 34px; font-weight: 900; letter-spacing: .02em; color: var(--ink); margin-bottom: 18px; }
.global-card .when { font-size: 13px; font-weight: 800; color: var(--magenta); letter-spacing: .06em; margin-bottom: 8px; }
.global-card h4 { font-size: 19px; font-weight: 800; margin-bottom: 10px; word-break: keep-all; }
.global-card p { font-size: 14.5px; color: var(--gray-700); word-break: keep-all; }

/* ---------- Awards ---------- */
.awards-img {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  max-width: 880px; margin: 0 auto 56px;
}
.cert-gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.cert-card {
  width: 196px; margin: 0; background: #fff; border: 1px solid var(--gray-100);
  border-radius: 12px; padding: 12px 12px 12px; box-shadow: var(--shadow-sm);
  text-align: center; transition: transform .3s, box-shadow .3s;
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cert-card img { width: 100%; border: 1px solid var(--gray-100); border-radius: 6px; }
.cert-card figcaption {
  font-size: 12.5px; font-weight: 700; color: var(--gray-700); margin-top: 10px;
  word-break: keep-all; line-height: 1.4;
}

/* ---------- History ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 130px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--navy), var(--magenta));
}
.tl-item { display: grid; grid-template-columns: 100px 60px 1fr; margin-bottom: 40px; }
.tl-year {
  font-size: 20px; font-weight: 900; color: var(--navy); text-align: right;
  letter-spacing: -.01em; line-height: 1.3;
}
.tl-dot { position: relative; }
.tl-dot::before {
  content: ""; position: absolute; left: 24px; top: 7px; width: 14px; height: 14px;
  border-radius: 50%; background: #fff; border: 3.5px solid var(--magenta);
  box-shadow: 0 0 0 5px rgba(236,0,140,.10);
}
.tl-body h4 { font-size: 17.5px; font-weight: 800; margin-bottom: 6px; word-break: keep-all; }
.tl-body p { font-size: 14.5px; color: var(--gray-700); word-break: keep-all; }

/* ---------- News ---------- */
.news-group + .news-group { margin-top: 56px; }
.news-group-title {
  font-size: 19px; font-weight: 900; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.news-group-title::before {
  content: ""; width: 10px; height: 10px; border-radius: 3px;
  background: var(--magenta); transform: rotate(45deg);
}
.news-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.news-item {
  display: flex; align-items: center; gap: 14px; padding: 15px 8px;
  border-bottom: 1px solid var(--gray-100); transition: background .2s;
}
.news-item:hover { background: var(--bg-soft); }
.news-title { flex: 1; font-size: 15px; font-weight: 600; word-break: keep-all; line-height: 1.5; }
.news-item .arrow { flex: none; color: var(--gray-300); font-weight: 800; transition: all .2s; }
.news-item:hover .arrow { color: var(--magenta); transform: translate(3px, -3px); }
.news-page[hidden] { display: none; }
.news-pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 30px; }
.news-pager button {
  min-width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--gray-300);
  background: #fff; color: var(--gray-700); font-size: 14.5px; font-weight: 700;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.news-pager button:hover { border-color: var(--navy); color: var(--navy); }
.news-pager .pager-num.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Videos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-thumb .play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-thumb .play span {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(228, 0, 43, .92);
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transition: transform .25s;
}
.video-card:hover .play span { transform: scale(1.12); }
.video-thumb .play svg { width: 20px; height: 20px; margin-left: 3px; }
.video-body { padding: 16px 18px 18px; }
.video-brand {
  display: inline-block; font-size: 11.5px; font-weight: 800; color: #fff;
  padding: 3px 11px; border-radius: 100px; margin-bottom: 9px;
}
.video-title { font-size: 14.5px; font-weight: 700; word-break: keep-all; line-height: 1.45; }
.video-cta { text-align: center; margin-top: 40px; }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 6px; }
.contact-row {
  display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--gray-100);
}
.contact-row .ico {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(46,49,146,.07);
  display: grid; place-items: center; flex: none;
}
.contact-row .ico svg { width: 20px; height: 20px; }
.contact-row .k { font-size: 12.5px; font-weight: 700; color: var(--gray-500); letter-spacing: .06em; text-transform: uppercase; }
.contact-row .v { font-size: 16px; font-weight: 700; word-break: keep-all; }
.contact-row .v a:hover { color: var(--navy); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.contact-side {
  background: linear-gradient(140deg, var(--navy-dark), var(--navy));
  border-radius: 24px; color: #fff; padding: 48px 44px;
}
.contact-side h3 { font-size: 24px; font-weight: 900; margin-bottom: 14px; word-break: keep-all; }
.contact-side p { font-size: 15px; color: rgba(255,255,255,.78); margin-bottom: 30px; word-break: keep-all; }
.contact-side .btn { width: 100%; justify-content: center; }
.contact-side .mini { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.55); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.65); padding: 60px 0 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-logo {
  font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo .diamond {
  width: 26px; height: 26px; border-radius: 22%; transform: rotate(45deg);
  background: var(--navy); border: 2px solid rgba(255,255,255,.9);
  display: inline-grid; place-items: center;
}
.footer-logo .diamond i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); transform: rotate(-45deg);
}
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-info { font-size: 13.5px; line-height: 1.9; margin-bottom: 24px; word-break: keep-all; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .biz-block { grid-template-columns: 1fr; gap: 28px; }
  .biz-cards { grid-template-columns: 1fr 1fr; }
  .gioclean-head { grid-template-columns: 1fr; gap: 32px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .ceo { grid-template-columns: 1fr; }
  .ceo-photo { min-height: 380px; }
  .ceo-body { padding: 40px 36px; }
  .global-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 12px 24px 24px;
    box-shadow: 0 20px 40px rgba(30,32,102,.12);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-toggle { display: block; }
  .lang-switch { margin-left: auto; margin-right: 12px; }
  .hero { padding: 150px 0 80px; }
  .section { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .flow { padding: 40px 28px; }
  .flow-steps { grid-template-columns: 1fr; }
  .biz-cards { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .cert-card { width: calc(50% - 10px); }
  .ceo-detail { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .news-press { min-width: 0; }
  .timeline::before { left: 84px; }
  .tl-item { grid-template-columns: 64px 50px 1fr; margin-bottom: 32px; }
  .tl-year { font-size: 16px; }
  .tl-dot::before { left: 18px; }
}
