:root {
  --navy-950: #041423;
  --navy-900: #061d33;
  --navy-800: #0a2944;
  --navy-700: #123b59;
  --teal-600: #008f87;
  --teal-500: #00a99d;
  --teal-400: #20c5b8;
  --green-600: #3e9f3f;
  --green-500: #5fbd47;
  --green-300: #a8df87;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --cloud: #f2f8f5;
  --ink: #132735;
  --muted: #5e707c;
  --line: #dbe5e8;
  --white: #fff;
  --shadow: 0 24px 70px rgba(4, 20, 35, .13);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.15; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 108px 0; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px;
  padding: 10px 15px; background: var(--white); color: var(--navy-900);
  border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--amber-400); outline-offset: 3px; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; color: var(--teal-600);
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 26px; height: 2px; background: currentColor; }
.eyebrow--light { color: #72e1d7; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  min-height: 52px; padding: 13px 24px;
  border: 1px solid var(--teal-500); border-radius: 4px;
  background: var(--teal-500); color: var(--white);
  font-size: .94rem; font-weight: 750; line-height: 1.2;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); background: var(--teal-600); border-color: var(--teal-600); box-shadow: 0 12px 28px rgba(0, 169, 157, .24); }
.button--small { min-height: 42px; padding: 10px 19px; }
.button--ghost { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.button--ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.58); box-shadow: none; }
.button--light { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.button--light:hover { background: var(--cloud); color: var(--navy-900); border-color: var(--cloud); }
.button--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.button--outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--teal-600); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -2px); }

.topbar { background: var(--navy-950); color: #b9cad4; font-size: .77rem; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.topbar__inner > span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.topbar__links { display: flex; flex: 0 0 auto; gap: 22px; color: #e0eaee; }
.topbar a:hover { color: var(--teal-400); }
.site-header {
  position: sticky; z-index: 100; top: 0;
  background: rgba(255,255,255,.96); border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(4, 20, 35, .07); }
.site-header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand__link { display: inline-flex; align-items: center; gap: 13px; }
.brand__mark {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  width: 51px; height: 51px; overflow: hidden; border-radius: 13px 3px 13px 3px;
  background: var(--navy-900); box-shadow: 7px 7px 0 rgba(0,169,157,.16);
}
.brand__mark::after { content: ""; position: absolute; inset: 0 48% 0 auto; width: 2px; background: rgba(255,255,255,.12); }
.brand__mark span { display: grid; place-items: center; color: var(--white); font-size: 1.28rem; font-weight: 900; letter-spacing: -.08em; }
.brand__mark span:last-child { color: var(--teal-400); }
.brand__copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand__copy strong { color: var(--navy-900); font-size: 1.07rem; letter-spacing: .09em; }
.brand__copy small { margin-top: 5px; color: var(--muted); font-size: .7rem; letter-spacing: .015em; }
.custom-logo-link { display: flex; }
.custom-logo { width: auto; max-height: 58px; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.nav-list a { position: relative; display: block; padding: 10px 0; color: #314957; font-size: .89rem; font-weight: 700; }
.nav-list a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--teal-500); transition: right .2s ease; }
.nav-list a:hover, .nav-list .current-menu-item > a { color: var(--navy-900); }
.nav-list a:hover::after, .nav-list .current-menu-item > a::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 42px; padding: 9px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 710px; display: grid; align-items: center; overflow: hidden; background: var(--navy-950); color: var(--white); }
.hero__image { position: absolute; inset: 0; background: url('../images/giangthuy-hero.webp') center / cover no-repeat; opacity: .83; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,20,35,.98) 0%, rgba(4,20,35,.89) 38%, rgba(4,20,35,.34) 68%, rgba(4,20,35,.13) 100%), linear-gradient(0deg, rgba(4,20,35,.62), transparent 44%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: linear-gradient(90deg, var(--teal-500) 0 50%, var(--green-500) 50% 82%, var(--amber-400) 82%); }
.hero__content { position: relative; z-index: 1; padding: 86px 0 76px; }
.hero h1 { max-width: 790px; margin-bottom: 26px; font-size: clamp(3rem, 6.2vw, 5.65rem); letter-spacing: -.055em; }
.hero h1 em { color: var(--teal-400); font-style: normal; }
.hero__lead { max-width: 660px; margin-bottom: 33px; color: #d2dee4; font-size: 1.12rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__proof { display: flex; gap: 0; margin-top: 65px; }
.hero__proof div { display: flex; flex-direction: column; min-width: 170px; padding: 0 30px; border-left: 1px solid rgba(255,255,255,.2); }
.hero__proof div:first-child { padding-left: 0; border-left: 0; }
.hero__proof strong { color: var(--white); font-size: 1.55rem; line-height: 1.1; }
.hero__proof span { margin-top: 7px; color: #9fb2be; font-size: .76rem; letter-spacing: .02em; }

.intro { background: var(--white); }
.intro__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 105px; align-items: start; }
.intro h2, .section-heading h2, .process h2 { margin-bottom: 0; color: var(--navy-900); font-size: clamp(2.15rem, 3.7vw, 3.55rem); letter-spacing: -.045em; }
.intro__copy { padding-left: 35px; border-left: 1px solid var(--line); }
.intro__copy p { color: var(--muted); }
.intro__copy .lead { color: var(--ink); font-size: 1.17rem; line-height: 1.76; }

.services { position: relative; overflow: hidden; background: var(--cloud); }
.services::before { content: "GT"; position: absolute; right: -30px; top: 12px; color: rgba(6,29,51,.025); font-size: 22rem; font-weight: 900; line-height: 1; letter-spacing: -.1em; pointer-events: none; }
.section-heading { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 55px; }
.section-heading > p { max-width: 430px; margin: 0 0 4px auto; color: var(--muted); }
.heading-action { max-width: 450px; margin-left: auto; }
.heading-action p { margin-bottom: 16px; color: var(--muted); }
.service-tabs { position: relative; display: grid; grid-template-columns: 310px 1fr; min-height: 540px; overflow: hidden; border: 1px solid #d6e3e6; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.service-tabs__nav { padding: 13px 0; background: var(--navy-900); }
.service-tab {
  position: relative; display: flex; align-items: center; gap: 14px; width: 100%; min-height: 72px;
  padding: 12px 26px; border: 0; background: transparent; color: #b8cad5;
  text-align: left; font-size: .88rem; font-weight: 700; line-height: 1.32; cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.service-tab::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 4px; background: transparent; }
.service-tab + .service-tab { border-top: 1px solid rgba(255,255,255,.07); }
.service-tab:hover { color: var(--white); background: rgba(255,255,255,.05); }
.service-tab.is-active { color: var(--white); background: rgba(0,169,157,.16); }
.service-tab.is-active::after { background: var(--teal-400); }
.service-tab__icon { flex: 0 0 38px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); }
.service-tab.is-active .service-tab__icon { background: var(--teal-500); }
.gt-icon { width: 23px; height: 23px; }
.service-tabs__panels { min-width: 0; }
.service-panel { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 100%; animation: panelIn .42s ease both; }
.service-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.service-panel__visual { position: relative; display: grid; place-items: center; min-height: 540px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--teal-600), var(--navy-800)); }
.service-panel__visual--2 { background: linear-gradient(145deg, #1e7275, #071e35); }
.service-panel__visual--3 { background: linear-gradient(145deg, #d38a0e, #0b3049); }
.service-panel__visual--4 { background: linear-gradient(145deg, #6a3fa0, #0a2944); }
.service-panel__visual--5 { background: linear-gradient(145deg, #d65b28, #113a54); }
.service-panel__visual--6 { background: linear-gradient(145deg, #2e5d99, #061d33); }
.service-panel__visual--7 { background: linear-gradient(145deg, #4b8894, #081c30); }
.service-panel__visual::before { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.service-panel__number { position: absolute; top: 23px; left: 28px; color: rgba(255,255,255,.38); font-size: .82rem; font-weight: 800; letter-spacing: .15em; }
.gt-icon--large { position: relative; z-index: 2; width: 120px; height: 120px; stroke-width: 1.05; filter: drop-shadow(0 18px 22px rgba(0,0,0,.2)); }
.service-panel__orbits i { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.service-panel__orbits i:first-child { width: 250px; height: 250px; inset: 50% auto auto 50%; transform: translate(-50%,-50%); }
.service-panel__orbits i:last-child { width: 340px; height: 340px; inset: 50% auto auto 50%; transform: translate(-50%,-50%); border-style: dashed; animation: spin 24s linear infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.service-panel__content { display: flex; flex-direction: column; justify-content: center; padding: 54px 60px; }
.service-panel__content h3 { margin-bottom: 19px; color: var(--navy-900); font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.045em; }
.service-panel__content > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; }
.check-list { display: grid; gap: 11px; margin: 15px 0 27px; padding: 0; list-style: none; color: #334b59; font-size: .92rem; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal-600); font-weight: 900; }

.strengths { position: relative; overflow: hidden; background: var(--navy-900); color: var(--white); }
.strengths::before { content: ""; position: absolute; width: 620px; height: 620px; right: -260px; top: -260px; border: 1px solid rgba(32,197,184,.14); border-radius: 50%; box-shadow: 0 0 0 90px rgba(32,197,184,.025), 0 0 0 180px rgba(32,197,184,.02); }
.section-heading--light h2 { color: var(--white); }
.section-heading--light > p { color: #aebfc9; }
.strength-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.strength-grid article { min-height: 250px; padding: 35px 28px 24px 0; }
.strength-grid article + article { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.16); }
.strength-grid span { color: var(--teal-400); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.strength-grid h3 { margin: 53px 0 14px; font-size: 1.23rem; }
.strength-grid p { margin: 0; color: #aebfc9; font-size: .9rem; line-height: 1.75; }

.process { background: var(--white); }
.process__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.process__heading { position: sticky; top: 120px; }
.process__heading > p:not(.eyebrow) { max-width: 400px; margin: 25px 0; color: var(--muted); }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: steps; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 75px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--cloud); color: var(--teal-600); font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.process-list h3 { margin-bottom: 8px; color: var(--navy-900); font-size: 1.23rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .92rem; }

.contact-cta { padding: 78px 0; background: linear-gradient(112deg, var(--teal-600), #087072); color: var(--white); }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.contact-cta h2 { margin: 0; font-size: clamp(2.1rem, 3.6vw, 3.45rem); letter-spacing: -.045em; }
.contact-cta__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 12px; }

.site-footer { padding: 85px 0 25px; background: var(--navy-950); color: #aebfc9; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr 1fr; gap: 75px; padding-bottom: 65px; }
.brand__link--footer .brand__copy strong { color: var(--white); }
.brand__link--footer .brand__copy small { color: #7f97a6; }
.footer-brand p { max-width: 365px; margin-top: 25px; font-size: .9rem; }
.site-footer h2 { margin-bottom: 21px; color: var(--white); font-size: .93rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: .86rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--teal-400); }
.footer-trend-link { display: inline-flex; margin-top: 20px; color: var(--green-300); font-size: .8rem; font-weight: 800; }
.footer-trend-link:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; font-size: .88rem; }
.footer-contact address { margin-bottom: 15px; font-style: normal; line-height: 1.7; }
.footer-contact a { margin: 2px 0; color: #dce6ea; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.floating-actions { position: fixed; z-index: 90; right: 22px; bottom: 22px; }
.floating-actions__phone { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 10px 17px; border-radius: 999px; background: var(--amber-500); color: var(--navy-950); box-shadow: 0 10px 28px rgba(245,158,11,.35); font-size: .85rem; font-weight: 900; }
.floating-actions__phone svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.floating-actions__phone:hover { background: var(--amber-400); transform: translateY(-2px); }

.page-hero { position: relative; overflow: hidden; padding: 110px 0; background: var(--navy-900); color: var(--white); }
.page-hero::after { content: ""; position: absolute; right: -160px; top: -320px; width: 700px; height: 700px; border: 1px solid rgba(32,197,184,.17); border-radius: 50%; box-shadow: 0 0 0 90px rgba(32,197,184,.025), 0 0 0 180px rgba(32,197,184,.018); }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: center; }
.page-hero h1 { max-width: 790px; margin-bottom: 24px; font-size: clamp(2.7rem, 5.2vw, 5.1rem); letter-spacing: -.055em; }
.page-hero p:not(.eyebrow) { max-width: 650px; color: #c4d2da; font-size: 1.08rem; }
.page-hero .button { margin-top: 13px; }
.page-hero__visual { position: relative; z-index: 1; display: grid; place-items: center; width: 290px; height: 290px; margin-left: auto; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: radial-gradient(circle, rgba(0,169,157,.22), rgba(0,169,157,.02) 65%); }
.page-hero__visual::before { content: ""; position: absolute; inset: 25px; border: 1px dashed rgba(255,255,255,.17); border-radius: 50%; }
.page-hero__visual > span { position: absolute; left: 17px; top: 45px; color: var(--teal-400); font-size: .76rem; font-weight: 900; letter-spacing: .16em; }
.gt-icon--hero { position: relative; width: 108px; height: 108px; stroke-width: 1.1; }
.page-hero--compact { padding: 92px 0; }
.page-hero--compact h1 { max-width: 850px; margin-bottom: 15px; font-size: clamp(2.55rem, 4.6vw, 4.2rem); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 90px; align-items: start; }
.article-content { color: #405662; font-size: 1.04rem; }
.article-content > *:first-child { margin-top: 0; }
.article-content p { margin-bottom: 24px; }
.article-content h2 { margin: 48px 0 22px; color: var(--navy-900); font-size: clamp(1.65rem, 2.7vw, 2.4rem); letter-spacing: -.035em; }
.article-content h3 { margin: 34px 0 15px; color: var(--navy-900); }
.article-content ul { display: grid; gap: 13px; padding-left: 0; list-style: none; }
.article-content li { position: relative; padding: 16px 18px 16px 50px; border: 1px solid var(--line); border-radius: 12px; background: var(--cloud); }
.article-content li::before { content: "✓"; position: absolute; left: 19px; color: var(--teal-600); font-weight: 900; }
.article-content--page { max-width: 850px; }
.contact-card { position: sticky; top: 120px; padding: 35px; border-top: 5px solid var(--teal-500); background: var(--cloud); }
.contact-card h2 { color: var(--navy-900); font-size: 1.65rem; letter-spacing: -.035em; }
.contact-card > p:not(.eyebrow) { color: var(--muted); font-size: .91rem; }
.contact-card > a:not(.button) { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid var(--line); }
.contact-card a strong { color: var(--navy-900); font-size: 1.15rem; }
.contact-card a span { color: var(--muted); font-size: .75rem; }
.contact-card .button { width: 100%; margin-top: 18px; }
.contact-card--green { border-top-color: var(--green-500); background: #eff8ee; }
.button--green { border-color: var(--green-600); background: var(--green-600); }
.button--green:hover { border-color: #2f8633; background: #2f8633; box-shadow: 0 12px 28px rgba(62,159,63,.22); }
.service-trends { background: var(--cloud); }
.trend-section { position: relative; overflow: hidden; background: #f7fbf8; }
.trend-section::before { content: ""; position: absolute; width: 560px; height: 560px; right: -260px; top: -270px; border: 1px solid rgba(95,189,71,.15); border-radius: 50%; box-shadow: 0 0 0 80px rgba(95,189,71,.025); }
.article-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.article-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 12px 34px rgba(4,20,35,.055); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.article-card:hover { transform: translateY(-6px); border-color: rgba(0,169,157,.55); box-shadow: 0 24px 50px rgba(4,20,35,.11); }
.article-card__image { position: relative; display: block; height: 220px; overflow: hidden; background: var(--navy-800); }
.article-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,20,35,.42)); }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.65,.25,1); }
.article-card:hover .article-card__image img { transform: scale(1.045); }
.article-card--1 .article-card__image img { object-position: 35% center; }
.article-card--2 .article-card__image img { object-position: 65% center; }
.article-card--3 .article-card__image img { transform: scale(1.04); }
.article-card--3:hover .article-card__image img { transform: scale(1.085); }
.article-card--4 .article-card__image img { object-position: center 65%; }
.article-card__index { position: absolute; z-index: 2; right: 16px; bottom: 14px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(4,20,35,.5); color: var(--white); font-size: .7rem; font-weight: 900; letter-spacing: .08em; backdrop-filter: blur(8px); }
.article-card__body { padding: 25px 25px 27px; }
.article-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 15px; color: #80919a; font-size: .68rem; font-weight: 750; letter-spacing: .035em; text-transform: uppercase; }
.article-card__meta span:first-child { overflow: hidden; color: var(--green-600); white-space: nowrap; text-overflow: ellipsis; }
.article-card h3 { margin-bottom: 13px; color: var(--navy-900); font-size: 1.2rem; letter-spacing: -.025em; }
.article-card h3 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-card__body > p:not(.article-card__meta) { display: -webkit-box; min-height: 4.85em; margin-bottom: 19px; overflow: hidden; color: var(--muted); font-size: .86rem; line-height: 1.62; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.article-card__link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-600); font-size: .8rem; font-weight: 850; }
.article-card__link span { transition: transform .2s ease; }
.article-card:hover .article-card__link span { transform: translate(2px,-2px); }
.trend-archive-hero { position: relative; overflow: hidden; padding: 105px 0; background: linear-gradient(125deg, var(--navy-950), #073a4b 68%, #126149); color: var(--white); }
.trend-archive-hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(90deg, #000, transparent); }
.trend-archive-hero__grid { position: relative; display: grid; grid-template-columns: 1fr 300px; gap: 70px; align-items: center; }
.trend-archive-hero h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(2.9rem, 5.3vw, 5.15rem); letter-spacing: -.055em; }
.trend-archive-hero p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: #c6d9d4; font-size: 1.07rem; }
.trend-archive-hero__stat { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 22px; padding: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.trend-archive-hero__stat strong { font-size: 2.7rem; line-height: 1; }
.trend-archive-hero__stat span { color: #b7ccc6; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.trend-archive-hero__stat i { grid-column: 1 / -1; height: 1px; margin: 17px 0; background: rgba(255,255,255,.14); }
.trend-archive { background: #f7fbf8; }
.topic-filter { display: flex; gap: 9px; margin-bottom: 48px; overflow-x: auto; padding: 2px 2px 10px; scrollbar-width: thin; }
.topic-filter a { flex: 0 0 auto; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: #49616d; font-size: .78rem; font-weight: 750; }
.topic-filter a:hover, .topic-filter a.is-active { border-color: var(--green-600); background: var(--green-600); color: var(--white); }
.nav-links { display: flex; justify-content: center; gap: 9px; margin-top: 50px; }
.nav-links .page-numbers { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--navy-900); font-size: .82rem; font-weight: 750; }
.nav-links .current, .nav-links a:hover { border-color: var(--teal-500); background: var(--teal-500); color: var(--white); }
.trend-single__header { padding: 92px 0 145px; background: linear-gradient(125deg, var(--navy-950), #073d45); color: var(--white); text-align: center; }
.trend-single__heading { max-width: 940px; }
.trend-single__heading .eyebrow { justify-content: center; }
.trend-single h1 { margin-bottom: 23px; font-size: clamp(2.55rem, 5.1vw, 4.9rem); letter-spacing: -.055em; }
.trend-single__meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px 26px; color: #aac3c2; font-size: .78rem; }
.trend-single__meta span + span { position: relative; }
.trend-single__meta span + span::before { content: ""; position: absolute; width: 4px; height: 4px; left: -15px; top: 50%; border-radius: 50%; background: var(--green-300); }
.trend-single__cover { position: relative; z-index: 2; height: 580px; margin-top: -95px; overflow: hidden; border: 8px solid var(--white); border-radius: 22px; background: var(--navy-800); box-shadow: var(--shadow); }
.trend-single__cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(4,20,35,.28)); }
.trend-single__cover img { width: 100%; height: 100%; object-fit: cover; }
.trend-single__cover > span { position: absolute; z-index: 2; right: 26px; bottom: 25px; display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--green-500); color: var(--white); box-shadow: 0 15px 30px rgba(4,20,35,.2); }
.trend-single__cover .gt-icon { width: 35px; height: 35px; }
.article-layout--trend { padding-top: 85px; padding-bottom: 105px; }
.gt-article-lead { color: var(--navy-900); font-size: 1.25rem; font-weight: 650; line-height: 1.75; }
.trend-single__content blockquote { margin: 42px 0; padding: 29px 34px; border-left: 5px solid var(--green-500); background: #eff8ee; color: var(--navy-900); font-size: 1.13rem; font-weight: 700; }
.trend-single__content blockquote p { margin: 0; }
.editorial-note { margin-top: 55px; padding-top: 24px; border-top: 1px solid var(--line); color: #70828b; font-size: .8rem; }
.editorial-note strong { color: var(--navy-900); }
.editorial-note p { margin: 5px 0 0; }
.related-trends { background: var(--cloud); }
.related-services { padding-top: 0; background: var(--white); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { display: block; min-height: 250px; padding: 34px; border: 1px solid var(--line); border-radius: 15px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.related-card:hover { transform: translateY(-5px); border-color: var(--teal-500); box-shadow: 0 20px 45px rgba(4,20,35,.09); }
.related-card .gt-icon { color: var(--teal-600); width: 37px; height: 37px; }
.related-card h3 { margin: 48px 0 16px; color: var(--navy-900); font-size: 1.25rem; }
.related-card span { color: var(--teal-600); font-size: .85rem; font-weight: 800; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.archive-card { padding: 34px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 15px 35px rgba(4,20,35,.05); }
.archive-card__top { display: flex; align-items: center; justify-content: space-between; color: var(--teal-600); }
.archive-card__top > span { color: #9dafb8; font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.archive-card__top .gt-icon { width: 35px; height: 35px; }
.archive-card h2 { margin: 42px 0 15px; color: var(--navy-900); font-size: 1.4rem; }
.archive-card p { color: var(--muted); font-size: .9rem; }
.post-list { max-width: 850px; }
.post-card { padding: 30px 0; border-bottom: 1px solid var(--line); }
.post-card__date { color: var(--teal-600); font-size: .78rem; font-weight: 800; }
.post-card h2 { font-size: 1.8rem; }
.not-found { display: grid; min-height: 65vh; place-items: center; padding: 80px 0; text-align: center; }
.not-found__code { margin-bottom: 0; color: var(--teal-500); font-size: 7rem; font-weight: 900; line-height: 1; }
.not-found h1 { margin: 15px 0; color: var(--navy-900); font-size: 2.6rem; }
.not-found .button { margin-top: 15px; }

@media (max-width: 1040px) {
  .topbar__inner > span { max-width: 55%; }
  .nav-list { gap: 17px; }
  .primary-nav { gap: 18px; }
  .hero { min-height: 650px; }
  .service-tabs { grid-template-columns: 270px 1fr; }
  .service-panel { grid-template-columns: .72fr 1.28fr; }
  .service-panel__content { padding: 44px 38px; }
  .process__grid { gap: 70px; }
  .article-layout { gap: 55px; }
  .article-grid { gap: 18px; }
}

@media (max-width: 900px) {
  :root { --shell: min(calc(100% - 34px), 720px); }
  .section { padding: 80px 0; }
  .topbar { display: none; }
  .site-header__inner { min-height: 70px; }
  .brand__mark { width: 45px; height: 45px; }
  .nav-toggle { position: relative; z-index: 102; display: block; cursor: pointer; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 70px 0 auto; display: none; align-items: stretch; flex-direction: column; max-height: calc(100vh - 70px); overflow-y: auto; padding: 25px 20px 35px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 25px 45px rgba(4,20,35,.12); }
  .primary-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { padding: 14px 2px; }
  .primary-nav .button { margin-top: 5px; }
  .hero { min-height: 670px; }
  .hero__image { background-position: 63% center; opacity: .6; }
  .hero__veil { background: linear-gradient(90deg, rgba(4,20,35,.98), rgba(4,20,35,.78)); }
  .hero h1 { max-width: 650px; }
  .hero__lead { max-width: 590px; }
  .intro__grid, .section-heading, .process__grid, .page-hero__grid, .article-layout { grid-template-columns: 1fr; }
  .intro__grid { gap: 35px; }
  .intro__copy { padding: 0; border: 0; }
  .section-heading { gap: 22px; }
  .section-heading > p { margin-left: 0; }
  .heading-action { max-width: none; margin-left: 0; }
  .service-tabs { grid-template-columns: 1fr; }
  .service-tabs__nav { display: flex; gap: 8px; overflow-x: auto; padding: 12px; scrollbar-width: thin; }
  .service-tab { flex: 0 0 190px; min-height: 62px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.08) !important; border-radius: 9px; }
  .service-tab::after { inset: auto 10px 0; width: auto; height: 3px; }
  .service-panel { grid-template-columns: .75fr 1.25fr; min-height: 490px; }
  .service-panel__visual { min-height: 490px; }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .strength-grid article { border-bottom: 1px solid rgba(255,255,255,.16); }
  .strength-grid article:nth-child(3) { padding-left: 0; border-left: 0; }
  .process__grid { gap: 45px; }
  .process__heading { position: static; }
  .contact-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.1fr .9fr; gap: 50px; }
  .footer-contact { grid-column: 1 / -1; }
  .page-hero__grid { gap: 45px; }
  .page-hero__visual { width: 230px; height: 230px; margin: 0; }
  .article-layout { gap: 50px; }
  .contact-card { position: static; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trend-archive-hero__grid { grid-template-columns: 1fr; }
  .trend-archive-hero__stat { max-width: 320px; }
  .trend-single__cover { height: 440px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 67px 0; }
  .brand__copy small { display: none; }
  .brand__copy strong { font-size: .95rem; }
  .hero { min-height: 680px; }
  .hero__content { padding: 67px 0; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; max-width: 360px; }
  .hero__proof { gap: 15px; margin-top: 45px; }
  .hero__proof div { min-width: 0; padding: 0 13px; }
  .hero__proof strong { font-size: 1.25rem; }
  .hero__proof span { font-size: .65rem; }
  .service-tabs { overflow: visible; border-radius: 14px; }
  .service-panel { grid-template-columns: 1fr; }
  .service-panel__visual { min-height: 255px; }
  .service-panel__visual::before { inset: -10%; }
  .gt-icon--large { width: 90px; height: 90px; }
  .service-panel__content { padding: 36px 25px 42px; }
  .service-panel__content h3 { font-size: 2rem; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-grid article, .strength-grid article + article { min-height: 0; padding: 30px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .strength-grid h3 { margin-top: 27px; }
  .process-list li { grid-template-columns: 55px 1fr; gap: 14px; }
  .process-list > li > span { width: 46px; height: 46px; }
  .contact-cta__actions { align-items: stretch; flex-direction: column; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .floating-actions { right: 14px; bottom: 14px; }
  .floating-actions__phone span { display: none; }
  .floating-actions__phone { width: 50px; height: 50px; justify-content: center; padding: 0; }
  .page-hero { padding: 76px 0; }
  .page-hero__visual { width: 190px; height: 190px; }
  .gt-icon--hero { width: 82px; height: 82px; }
  .related-grid, .archive-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card__image { height: 235px; }
  .trend-archive-hero { padding: 78px 0; }
  .trend-archive-hero__stat { max-width: none; }
  .trend-single__header { padding: 73px 0 118px; }
  .trend-single__cover { width: calc(100% - 18px); height: 300px; margin-top: -72px; border-width: 5px; border-radius: 15px; }
  .trend-single__cover > span { right: 14px; bottom: 14px; width: 58px; height: 58px; }
  .trend-single__cover .gt-icon { width: 27px; height: 27px; }
  .article-layout--trend { padding-top: 60px; padding-bottom: 75px; }
  .related-card { min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Bright clean-energy direction — v1.2 */
.topbar { background: #eff9f8; color: #48626e; border-bottom: 1px solid #dceceb; }
.topbar__links { color: var(--navy-900); }
.brand__emblem { display: grid; flex: 0 0 54px; place-items: center; width: 54px; height: 54px; }
.brand__logo { width: 100%; height: 100%; object-fit: contain; }
.brand__copy strong { color: #154b7a; }
.brand__copy small { color: #db333d; font-weight: 750; }
.nav-actions { display: flex; align-items: center; gap: 11px; }
.cart-link { position: relative; display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy-900); background: var(--white); }
.cart-link:hover { color: var(--teal-600); border-color: var(--teal-500); }
.cart-link svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-link__count { position: absolute; right: -4px; top: -5px; display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border: 2px solid var(--white); border-radius: 999px; background: #e43d46; color: var(--white); font-size: .64rem; font-weight: 900; line-height: 1; }

.hero { min-height: 700px; background: #effbfb; color: var(--navy-900); }
.hero__image { background-image: url('../images/giangthuy-hero-v2.webp'); background-position: center; opacity: 1; }
.hero__veil { background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 35%, rgba(255,255,255,.63) 53%, rgba(255,255,255,.05) 78%), linear-gradient(0deg, rgba(238,250,247,.45), transparent 46%); }
.hero .eyebrow--light { color: var(--teal-600); }
.hero h1 { max-width: 660px; color: var(--navy-900); }
.hero h1 em { color: var(--green-600); }
.hero__lead { max-width: 610px; color: #405b68; }
.hero .button--ghost { border-color: rgba(6,29,51,.24); background: rgba(255,255,255,.68); color: var(--navy-900); }
.hero .button--ghost:hover { border-color: var(--teal-500); background: var(--white); }
.hero__proof div { border-left-color: rgba(6,29,51,.16); }
.hero__proof strong { color: var(--navy-900); }
.hero__proof span { color: #536d79; }

.service-tabs__nav { background: #f5faf9; border-right: 1px solid var(--line); }
.service-tab { color: #405c69; }
.service-tab + .service-tab { border-top-color: #dfebe9; }
.service-tab:hover { color: var(--navy-900); background: #edf8f6; }
.service-tab.is-active { color: var(--navy-900); background: #dff5ef; }
.service-tab__icon { background: #e4f1f0; color: var(--teal-600); }
.service-tab.is-active .service-tab__icon { background: var(--teal-500); color: var(--white); }
.service-panel__visual { color: #0e6c68; background: linear-gradient(145deg, #dff8f2, #e9f6ff); }
.service-panel__visual--2 { background: linear-gradient(145deg, #e0f6fb, #ecf8f3); }
.service-panel__visual--3 { color: #87630b; background: linear-gradient(145deg, #fff4ce, #eaf8ef); }
.service-panel__visual--4 { color: #66508e; background: linear-gradient(145deg, #f2eafe, #eaf8fb); }
.service-panel__visual--5 { color: #b4502c; background: linear-gradient(145deg, #fff0e8, #eef9f4); }
.service-panel__visual--6 { color: #355f98; background: linear-gradient(145deg, #e7f0ff, #edf9f6); }
.service-panel__visual--7 { color: #33767a; background: linear-gradient(145deg, #e4f7f4, #eef6ff); }
.service-panel__visual::before, .service-panel__orbits i { border-color: rgba(6,29,51,.11); }
.service-panel__number { color: rgba(6,29,51,.42); }
.gt-icon--large { filter: drop-shadow(0 18px 22px rgba(11,90,90,.12)); }

.shop-preview { background: var(--white); }
.product-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.product-category-grid > a { position: relative; min-height: 310px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg,#f4fbfa,#edf7ff); box-shadow: 0 15px 40px rgba(4,20,35,.055); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.product-category-grid > a:nth-child(2) { background: linear-gradient(145deg,#eff9ff,#f0fbf6); }
.product-category-grid > a:nth-child(3) { background: linear-gradient(145deg,#fff9dc,#edf9ef); }
.product-category-grid > a:hover { transform: translateY(-5px); border-color: var(--teal-500); box-shadow: 0 23px 50px rgba(4,20,35,.1); }
.product-category-grid > a > span { position: absolute; right: 25px; top: 20px; color: rgba(6,29,51,.12); font-size: 3.7rem; font-weight: 900; }
.product-category-grid .gt-icon { width: 46px; height: 46px; color: var(--teal-600); }
.product-category-grid h3 { margin: 62px 0 14px; color: var(--navy-900); font-size: 1.42rem; }
.product-category-grid p { color: var(--muted); font-size: .9rem; }
.product-category-grid b { color: var(--teal-600); font-size: .82rem; }

.strengths { background: linear-gradient(135deg,#effaf8,#edf7ff); color: var(--ink); }
.strengths::before { border-color: rgba(0,169,157,.12); box-shadow: 0 0 0 90px rgba(0,169,157,.025), 0 0 0 180px rgba(95,189,71,.02); }
.strengths .section-heading--light h2 { color: var(--navy-900); }
.strengths .section-heading--light > p { color: var(--muted); }
.strengths .eyebrow--light { color: var(--teal-600); }
.strength-grid { border-top-color: rgba(6,29,51,.13); }
.strength-grid article + article { border-left-color: rgba(6,29,51,.13); }
.strength-grid span { color: var(--teal-600); }
.strength-grid h3 { color: var(--navy-900); }
.strength-grid p { color: var(--muted); }

.page-hero, .trend-archive-hero, .trend-single__header { color: var(--navy-900); background: linear-gradient(125deg,#edfafd,#eef9f1 68%,#fffbe7); }
.page-hero::after { border-color: rgba(0,169,157,.16); box-shadow: 0 0 0 90px rgba(0,169,157,.025), 0 0 0 180px rgba(95,189,71,.025); }
.page-hero .eyebrow--light, .trend-archive-hero .eyebrow--light, .trend-single__header .eyebrow--light { color: var(--teal-600); }
.page-hero p:not(.eyebrow), .trend-archive-hero p:not(.eyebrow) { color: #4f6874; }
.page-hero__visual { color: var(--teal-600); border-color: rgba(0,143,135,.2); background: radial-gradient(circle,rgba(0,169,157,.13),rgba(255,255,255,.3) 66%); }
.page-hero__visual::before { border-color: rgba(0,143,135,.22); }
.trend-archive-hero::before { opacity: .35; background-image: linear-gradient(rgba(0,143,135,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(0,143,135,.08) 1px,transparent 1px); }
.trend-archive-hero__stat { border-color: rgba(0,143,135,.18); background: rgba(255,255,255,.62); }
.trend-archive-hero__stat span, .trend-single__meta { color: #56717b; }
.trend-archive-hero__stat i { background: rgba(0,143,135,.16); }

.shop-heading { position: relative; overflow: hidden; padding: 94px 0 88px; background: linear-gradient(125deg,#e9faff,#edf9ed 70%,#fff4ca); }
.shop-heading::after { content: ""; position: absolute; right: -160px; top: -330px; width: 700px; height: 700px; border: 1px solid rgba(0,169,157,.14); border-radius: 50%; box-shadow: 0 0 0 90px rgba(0,169,157,.025),0 0 0 180px rgba(95,189,71,.02); }
.shop-heading .shell { position: relative; z-index: 1; }
.shop-heading h1 { max-width: 800px; margin-bottom: 20px; color: var(--navy-900); font-size: clamp(2.7rem,5.2vw,5rem); letter-spacing: -.055em; }
.shop-heading p:not(.eyebrow) { max-width: 690px; margin-bottom: 0; color: #4f6874; font-size: 1.06rem; }
.shop-page-content { background: #f8fbfa; }
.shop-placeholder { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 45px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.shop-placeholder > div { max-width: 660px; }
.shop-placeholder h2 { color: var(--navy-900); font-size: clamp(2rem,3.2vw,3rem); }
.shop-placeholder p:not(.eyebrow) { color: var(--muted); }
.services-page { background: #f8fbfa; }
.service-directory-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); }
.service-directory-card__footer > span { color: var(--green-600); font-size: .76rem; font-weight: 800; }

.wc-shell { padding-top: 75px; padding-bottom: 100px; }
.woocommerce .woocommerce-breadcrumb { color: var(--muted); font-size: .78rem; }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 30px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; margin: 0; }
.shop-preview .woocommerce ul.products { grid-template-columns: repeat(4,minmax(0,1fr)); }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { float: none; width: auto; margin: 0; padding: 0 0 25px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 12px 34px rgba(4,20,35,.055); }
.woocommerce ul.products li.product a img { margin-bottom: 22px; aspect-ratio: 1/1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price, .woocommerce ul.products li.product .button { margin-left: 22px; margin-right: 22px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--navy-900); font-size: 1.05rem; }
.woocommerce ul.products li.product .price { color: #d73c44; font-weight: 850; }
.woocommerce ul.products li.product .button, .woocommerce button.button.alt, .woocommerce a.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt { border-radius: 5px; background: var(--teal-600); color: var(--white); }
.woocommerce ul.products li.product .button:hover, .woocommerce button.button.alt:hover, .woocommerce a.button.alt:hover, .woocommerce input.button.alt:hover { background: var(--green-600); color: var(--white); }
.woocommerce div.product .product_title { color: var(--navy-900); font-size: clamp(2rem,4vw,3.7rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: #d73c44; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--teal-500); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--teal-600); }
.gt-catalog-contact { margin-top: 28px; padding: 24px; border: 1px solid #cfe6df; border-radius: 14px; background: #f1faf6; }
.gt-catalog-contact p { margin-bottom: 18px; color: var(--muted); }
.gt-catalog-contact p strong { color: var(--navy-900); }
.gt-catalog-contact .button { margin-right: 16px; }
.gt-catalog-contact .text-link { font-size: .88rem; }

@media (max-width: 1040px) {
  .primary-nav, .nav-list { gap: 15px; }
  .shop-preview .woocommerce ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .brand__emblem { flex-basis: 47px; width: 47px; height: 47px; }
  .nav-actions { align-items: stretch; flex-direction: column; }
  .cart-link { width: 100%; border-radius: 7px; }
  .hero__image { background-position: 68% center; opacity: 1; }
  .hero__veil { background: linear-gradient(90deg,rgba(255,255,255,.98),rgba(255,255,255,.88) 58%,rgba(255,255,255,.42)); }
  .service-tab { border-color: #dce8e7 !important; }
  .strength-grid article { border-bottom-color: rgba(6,29,51,.13); }
  .strength-grid article:nth-child(3) { border-left: 0; }
  .product-category-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shop-placeholder { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .brand__copy small { display: block; font-size: .6rem; }
  .brand__copy strong { font-size: .88rem; }
  .hero { min-height: 690px; }
  .hero__image { background-position: 72% center; }
  .hero__veil { background: linear-gradient(90deg,rgba(255,255,255,.99),rgba(255,255,255,.9) 72%,rgba(255,255,255,.36)); }
  .strength-grid article, .strength-grid article + article { border-bottom-color: rgba(6,29,51,.13); }
  .shop-heading { padding: 72px 0; }
  .shop-placeholder { padding: 28px 24px; }
  .woocommerce ul.products, .shop-preview .woocommerce ul.products { grid-template-columns: 1fr; }
  .wc-shell { padding-top: 55px; }
}
