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

:root {
  --gtp-navy: #001a3a;
  --gtp-blue: #063d7a;
  --gtp-red: #f01822;
  --gtp-paper: #f1f3f5;
  --gtp-ink: #07182c;
  --gtp-muted: #5d6877;
  --gtp-line: #dce2e8;
  --gtp-white: #fff;
  --gtp-radius: 18px;
  --gtp-shadow: 0 24px 60px rgba(0, 26, 58, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--gtp-ink); background: #fff; font-family: Inter, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body, button, input, textarea { font-family: Inter, Arial, sans-serif; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
svg { width: 1.25rem; height: 1.25rem; }
#gt-site { min-height: 100vh; overflow: clip; background: #fff; }
.ganja-textile-wordpress-app { max-width: none !important; margin: 0 !important; }
.gtp-shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }

.gtp-topbar { position: relative; z-index: 50; height: 36px; color: #fff; background: var(--gtp-navy); font-size: 12px; }
.gtp-topbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gtp-topbar-contact, .gtp-topbar-side, .gtp-langs { display: flex; align-items: center; }
.gtp-topbar-contact { gap: 22px; }
.gtp-topbar-contact a { display: inline-flex; align-items: center; gap: 7px; opacity: .9; }
.gtp-topbar-contact svg { width: 14px; height: 14px; }
.gtp-topbar-side { gap: 26px; opacity: .9; }
.gtp-langs { height: 36px; border-inline: 1px solid rgba(255,255,255,.16); }
.gtp-langs button { height: 100%; min-width: 38px; padding: 0 10px; border: 0; color: rgba(255,255,255,.65); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.gtp-langs button.is-active { color: #fff; background: rgba(255,255,255,.12); }

.gtp-header { position: sticky; top: 0; z-index: 48; height: 86px; border-bottom: 1px solid rgba(0,26,58,.1); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); transition: height .25s ease, box-shadow .25s ease; }
.gtp-header.is-scrolled { height: 74px; box-shadow: 0 12px 40px rgba(0,26,58,.08); }
.gtp-header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.gtp-brand { flex: none; display: inline-flex; align-items: center; gap: 11px; }
.gtp-brand > img { width: 158px; height: 54px; object-fit: contain; object-position: left center; }
.gtp-brand-symbol { position: relative; width: 48px; height: 48px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--gtp-blue); border-radius: 13px 4px 13px 4px; }
.gtp-brand-symbol i { position: absolute; right: -10px; top: -10px; width: 30px; height: 70px; background: var(--gtp-red); transform: rotate(28deg); }
.gtp-brand-symbol b { position: relative; font-family: Manrope, sans-serif; font-size: 16px; letter-spacing: -.04em; }
.gtp-brand-text { display: flex; flex-direction: column; gap: 2px; }
.gtp-brand-text strong { color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 15px; font-weight: 800; letter-spacing: .05em; }
.gtp-brand-text small { color: #788290; font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.gtp-nav { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.gtp-nav a { position: relative; padding: 33px 0 30px; color: #26364a; font-size: 12px; font-weight: 600; white-space: nowrap; }
.gtp-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--gtp-red); transition: right .22s ease; }
.gtp-nav a:hover::after, .gtp-nav a.is-active::after { right: 0; }
.gtp-nav a.is-active { color: var(--gtp-navy); }
.gtp-header-actions { display: flex; align-items: center; gap: 12px; }
.gtp-quote-link { height: 44px; display: inline-flex; align-items: center; gap: 12px; padding: 0 17px; color: #fff; background: var(--gtp-red); border-radius: 8px; font-size: 12px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.gtp-quote-link:hover { transform: translateY(-2px); background: #d30f1a; }
.gtp-quote-link svg { width: 15px; height: 15px; }
.gtp-menu { display: none; width: 44px; height: 44px; place-items: center; border: 1px solid var(--gtp-line); background: #fff; border-radius: 8px; color: var(--gtp-navy); cursor: pointer; }

.gtp-eyebrow { margin: 0 0 18px; color: var(--gtp-red); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gtp-button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 23px; border: 1px solid transparent; border-radius: 9px; font-size: 13px; font-weight: 700; transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
.gtp-button:hover { transform: translateY(-2px); }
.gtp-button svg { width: 17px; height: 17px; }
.gtp-button-primary { color: #fff; background: var(--gtp-red); }
.gtp-button-primary:hover { background: #d20e19; }
.gtp-button-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.gtp-button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.gtp-button-dark { color: #fff; background: var(--gtp-navy); }
.gtp-button-light { color: var(--gtp-navy); background: #fff; }
.gtp-button-outline { color: var(--gtp-navy); border-color: var(--gtp-line); background: #fff; }

.gtp-hero { position: relative; min-height: 640px; display: grid; align-items: center; overflow: hidden; background: var(--gtp-navy); }
.gtp-hero-stage, .gtp-hero-media, .gtp-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.gtp-hero-media { object-fit: cover; opacity: 0; transform: translateY(var(--gtp-parallax, 0)) scale(1.045); transition: opacity .75s ease, transform 6s ease; }
.gtp-hero-media.is-active { opacity: 1; transform: translateY(var(--gtp-parallax, 0)) scale(1.012); }
.gtp-hero-overlay { background: linear-gradient(90deg, rgba(0,18,43,.94) 0%, rgba(0,26,58,.8) 39%, rgba(0,26,58,.35) 67%, rgba(0,26,58,.08) 100%); }
.gtp-hero-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 64%, rgba(0,17,39,.66)); }
.gtp-hero-inner { position: relative; min-height: 640px; display: flex; align-items: center; padding: 72px 0 142px; }
.gtp-hero-copy { position: absolute; width: min(620px, 54vw); opacity: 0; transform: translateY(24px); pointer-events: none; transition: opacity .55s ease .12s, transform .55s ease .12s; }
.gtp-hero-copy.is-active { opacity: 1; transform: none; pointer-events: auto; }
.gtp-hero-copy .gtp-eyebrow { color: #fff; }
.gtp-hero-copy .gtp-eyebrow::before { content: ""; width: 34px; height: 2px; display: inline-block; margin: 0 12px 3px 0; background: var(--gtp-red); }
.gtp-hero h1 { max-width: 680px; margin: 0; color: #fff; font-family: Manrope, sans-serif; font-size: clamp(48px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.052em; font-weight: 800; }
.gtp-hero h1 span { display: block; color: #fff; }
.gtp-hero-text { max-width: 570px; margin: 25px 0 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; }
.gtp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.gtp-slider-nav { position: absolute; left: 50%; bottom: 30px; z-index: 4; display: grid; grid-template-columns: repeat(var(--gtp-slide-count, 3), minmax(100px, 1fr)) 52px; max-width: calc(100% - 32px); overflow-x: auto; transform: translateX(-50%); }
.gtp-slider-nav > button:not(.gtp-slider-toggle) { position: relative; min-height: 72px; display: grid; grid-template-columns: 34px 1fr; align-content: center; gap: 2px 10px; padding: 10px 22px; border: 0; border-top: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.58); background: transparent; text-align: left; cursor: pointer; }
.gtp-slider-nav button span { grid-row: 1 / 3; align-self: center; font-size: 11px; font-weight: 700; }
.gtp-slider-nav button b { overflow: hidden; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-overflow: ellipsis; white-space: nowrap; }
.gtp-slider-nav button i { height: 2px; width: 0; display: block; background: var(--gtp-red); transition: width .3s ease; }
.gtp-slider-nav > button.is-active { color: #fff; border-color: rgba(255,255,255,.8); }
.gtp-slider-nav > button.is-active i { width: 52px; }
.gtp-slider-toggle { align-self: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); color: #fff; background: rgba(0,0,0,.14); border-radius: 50%; cursor: pointer; }
.gtp-video-credit { position: absolute; right: 18px; bottom: 9px; z-index: 4; color: rgba(255,255,255,.48); font-size: 8px; }

.gtp-trust { position: relative; z-index: 3; background: #fff; border-bottom: 1px solid var(--gtp-line); }
.gtp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.gtp-trust article { min-height: 94px; display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid var(--gtp-line); color: var(--gtp-navy); font-size: 13px; font-weight: 700; }
.gtp-trust article:first-child { border-left: 1px solid var(--gtp-line); }
.gtp-trust svg { width: 25px; height: 25px; color: var(--gtp-red); }

.gtp-marquee { overflow: hidden; padding: 18px 0 17px; color: #fff; background: var(--gtp-red); }
.gtp-marquee > div { width: max-content; display: flex; animation: gtp-marquee 28s linear infinite; }
.gtp-marquee span { padding-right: 30px; font-family: Manrope, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .18em; white-space: nowrap; }
@keyframes gtp-marquee { to { transform: translateX(-50%); } }

.gtp-intro, .gtp-products-section, .gtp-process, .gtp-news-section, .gtp-page-body, .gtp-catalog, .gtp-specs, .gtp-related, .gtp-news-index, .gtp-article-content { padding: 108px 0; }
.gtp-section-heading { max-width: 690px; }
.gtp-section-heading h2, .gtp-about-copy h2, .gtp-quality-copy h2, .gtp-page-body h2, .gtp-request h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(34px, 4vw, 56px); line-height: 1.1; letter-spacing: -.045em; font-weight: 750; }
.gtp-section-heading > p:last-child { max-width: 600px; margin: 22px 0 0; color: var(--gtp-muted); font-size: 15px; line-height: 1.75; }
.gtp-section-heading.is-light h2 { color: #fff; }
.gtp-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: 45px; }
.gtp-text-link, .gtp-card-link { display: inline-flex; align-items: center; gap: 10px; color: var(--gtp-blue); font-size: 12px; font-weight: 700; }
.gtp-text-link { flex: none; padding-bottom: 7px; border-bottom: 1px solid currentColor; }
.gtp-text-link svg, .gtp-card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.gtp-text-link:hover svg, .gtp-card-link:hover svg { transform: translateX(4px); }

.gtp-intro-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 36px 80px; align-items: end; }
.gtp-intro-highlight { justify-self: end; width: 260px; padding: 25px; border-left: 3px solid var(--gtp-red); background: var(--gtp-paper); }
.gtp-intro-highlight span { display: block; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 58px; line-height: .9; font-weight: 800; letter-spacing: -.05em; }
.gtp-intro-highlight small { display: block; margin-top: 12px; color: var(--gtp-muted); font-size: 12px; line-height: 1.5; }
.gtp-feature-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 30px; border: 1px solid var(--gtp-line); border-radius: var(--gtp-radius); overflow: hidden; }
.gtp-feature-grid article { min-height: 190px; display: flex; flex-direction: column; gap: 30px; padding: 30px; border-right: 1px solid var(--gtp-line); background: #fff; transition: background .25s ease, transform .25s ease; }
.gtp-feature-grid article:last-child { border-right: 0; }
.gtp-feature-grid article:hover { background: #f8fafc; }
.gtp-feature-grid svg { width: 30px; height: 30px; color: var(--gtp-red); }
.gtp-feature-grid h3 { margin: 0 0 10px; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 18px; }
.gtp-feature-grid p { margin: 0; color: var(--gtp-muted); font-size: 12px; line-height: 1.65; }

.gtp-products-section { background: var(--gtp-paper); }
.gtp-home-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gtp-product-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid #e1e6eb; border-radius: 14px; transition: transform .25s ease, box-shadow .25s ease; }
.gtp-product-card:hover { transform: translateY(-6px); box-shadow: var(--gtp-shadow); }
.gtp-product-image { position: relative; height: 240px; display: block; overflow: hidden; background: #e9edf1; }
.gtp-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gtp-product-card:hover .gtp-product-image img { transform: scale(1.045); }
.gtp-product-image span { position: absolute; left: 16px; bottom: 16px; padding: 7px 10px; color: var(--gtp-navy); background: rgba(255,255,255,.93); border-radius: 5px; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.gtp-product-card-body { min-height: 290px; display: flex; flex-direction: column; padding: 24px; }
.gtp-product-card h3 { margin: 0 0 10px; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 20px; letter-spacing: -.02em; }
.gtp-product-card p { margin: 0; color: var(--gtp-muted); font-size: 12px; line-height: 1.65; }
.gtp-product-card dl { margin: auto 0 22px; border-top: 1px solid var(--gtp-line); }
.gtp-product-card dl > div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--gtp-line); font-size: 10px; }
.gtp-product-card dt { color: var(--gtp-muted); }
.gtp-product-card dd { margin: 0; color: var(--gtp-navy); font-weight: 700; text-align: right; }

.gtp-about-panel { padding: 118px 0; }
.gtp-about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 85px; align-items: center; }
.gtp-about-media { position: relative; min-height: 560px; }
.gtp-about-media > img { width: 100%; height: 560px; object-fit: cover; border-radius: 6px 70px 6px 6px; }
.gtp-about-media > div { position: absolute; right: -34px; bottom: 38px; width: 180px; height: 180px; display: flex; flex-direction: column; justify-content: center; padding: 28px; color: #fff; background: var(--gtp-red); border-radius: 50%; box-shadow: 0 18px 45px rgba(240,24,34,.22); }
.gtp-about-media strong { font-family: Manrope, sans-serif; font-size: 38px; line-height: 1; }
.gtp-about-media span { margin-top: 8px; font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.gtp-about-copy > p:not(.gtp-eyebrow) { margin: 22px 0; color: var(--gtp-muted); font-size: 15px; line-height: 1.8; }
.gtp-about-copy ul { display: grid; gap: 13px; margin: 28px 0 34px; padding: 0; list-style: none; }
.gtp-about-copy li { display: flex; align-items: center; gap: 11px; color: var(--gtp-navy); font-size: 13px; font-weight: 600; }
.gtp-about-copy li svg { width: 19px; height: 19px; padding: 3px; color: #fff; background: var(--gtp-red); border-radius: 50%; }

.gtp-metrics { color: #fff; background: var(--gtp-navy); }
.gtp-metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.gtp-metrics article { min-height: 180px; display: flex; flex-direction: column; justify-content: center; padding: 35px; border-right: 1px solid rgba(255,255,255,.14); }
.gtp-metrics article:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.gtp-metrics strong { font-family: Manrope, sans-serif; font-size: 50px; line-height: 1; letter-spacing: -.05em; }
.gtp-metrics span { margin-top: 13px; color: rgba(255,255,255,.65); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.gtp-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--gtp-line); }
.gtp-process-grid article { position: relative; min-height: 280px; padding: 30px 28px; border-right: 1px solid var(--gtp-line); }
.gtp-process-grid article:first-child { border-left: 1px solid var(--gtp-line); }
.gtp-process-grid article::after { content: ""; position: absolute; top: -4px; left: 28px; width: 8px; height: 8px; background: var(--gtp-red); border-radius: 50%; }
.gtp-process-grid > article > span { color: #99a3af; font-size: 11px; font-weight: 700; }
.gtp-process-grid h3 { margin: 70px 0 14px; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 19px; }
.gtp-process-grid p { margin: 0; color: var(--gtp-muted); font-size: 12px; line-height: 1.7; }

.gtp-quality { min-height: 660px; display: grid; grid-template-columns: 1.05fr .95fr; color: #fff; background: var(--gtp-blue); }
.gtp-quality-media { min-height: 660px; overflow: hidden; }
.gtp-quality-media img { width: 100%; height: 100%; object-fit: cover; }
.gtp-quality-copy { align-self: center; max-width: 620px; padding: 80px 9vw 80px 70px; }
.gtp-quality-copy .gtp-eyebrow { color: #fff; }
.gtp-quality-copy > p:not(.gtp-eyebrow) { margin: 23px 0; color: rgba(255,255,255,.75); line-height: 1.75; }
.gtp-quality-points { display: flex; flex-wrap: wrap; gap: 20px; margin: 28px 0 35px; }
.gtp-quality-points span { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; }
.gtp-quality-points svg { width: 18px; height: 18px; color: var(--gtp-red); }

.gtp-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gtp-news-card { overflow: hidden; border: 1px solid var(--gtp-line); border-radius: 14px; background: #fff; }
.gtp-news-card > a { height: 238px; display: block; overflow: hidden; }
.gtp-news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gtp-news-card:hover img { transform: scale(1.045); }
.gtp-news-card > div { padding: 25px; }
.gtp-news-card small { color: var(--gtp-red); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.gtp-news-card h3 { min-height: 54px; margin: 13px 0 12px; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 18px; line-height: 1.45; }
.gtp-news-card p { margin: 0 0 24px; color: var(--gtp-muted); font-size: 12px; line-height: 1.65; }

.gtp-cta { position: relative; padding: 76px 0; color: #fff; background: linear-gradient(125deg, var(--gtp-navy), #063d7a); overflow: hidden; }
.gtp-cta-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.gtp-cta-inner { position: relative; }
.gtp-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.gtp-cta h2 { max-width: 760px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -.045em; }
.gtp-cta p:not(.gtp-eyebrow) { max-width: 650px; margin: 17px 0 0; color: rgba(255,255,255,.7); line-height: 1.7; }
.gtp-cta .gtp-eyebrow { color: #fff; }

.gtp-inner-hero { position: relative; min-height: 500px; display: flex; align-items: end; overflow: hidden; color: #fff; background: var(--gtp-navy); }
.gtp-inner-image, .gtp-inner-image img, .gtp-inner-image div { position: absolute; inset: 0; width: 100%; height: 100%; }
.gtp-inner-image img { object-fit: cover; }
.gtp-inner-image div { background: linear-gradient(90deg, rgba(0,18,43,.94), rgba(0,26,58,.66) 55%, rgba(0,26,58,.24)); }
.gtp-inner-content { position: relative; padding-bottom: 66px; }
.gtp-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 42px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.gtp-breadcrumb b { color: #fff; }
.gtp-inner-content .gtp-eyebrow { color: #fff; }
.gtp-inner-content h1 { max-width: 880px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(42px, 5.5vw, 70px); line-height: 1.06; letter-spacing: -.052em; }
.gtp-inner-lead { max-width: 650px; margin: 20px 0 0; color: rgba(255,255,255,.77); font-size: 15px; line-height: 1.72; }
.gtp-page-body-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.gtp-page-body-grid > div:last-child { padding-top: 34px; }
.gtp-page-body-grid p { color: var(--gtp-muted); line-height: 1.8; }
.gtp-page-body-grid .gtp-page-lead { margin-top: 0; color: var(--gtp-navy); font-size: 20px; line-height: 1.55; }
.gtp-values { padding: 0 0 110px; }
.gtp-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); border: 1px solid var(--gtp-line); border-radius: var(--gtp-radius); overflow: hidden; }
.gtp-values article { min-height: 260px; padding: 30px; border-right: 1px solid var(--gtp-line); }
.gtp-values article:last-child { border-right: 0; }
.gtp-values span { color: var(--gtp-red); font-size: 11px; font-weight: 700; }
.gtp-values h3 { margin: 58px 0 15px; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 20px; }
.gtp-values .gtp-block-image + h3, .gtp-values .gtp-block-video + h3 { margin-top: 20px; }
.gtp-values p { margin: 0; color: var(--gtp-muted); font-size: 12px; line-height: 1.7; }
.gtp-values article { position: relative; padding: var(--gt-block-padding, 30px); background: var(--gt-block-bg, #fff); }
.gtp-values article.gtp-block-wide { grid-column: 1 / -1; }
.gtp-values article.gtp-block-center { text-align: center; }
.gtp-values .gtp-block-text, .gtp-values blockquote { white-space: pre-line; }
.gtp-values blockquote { margin: 22px 0; color: var(--gtp-navy); font: 600 clamp(18px, 2.4vw, 30px)/1.45 Manrope, sans-serif; }
.gtp-values .gtp-block-button { display: inline-flex; margin-top: 22px; }
.gtp-values article.gtp-block-spacer { min-height: 0; }
.gtp-values article.gtp-block-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: center; }
.gtp-block-split > span { grid-column: 1 / -1; }
.gtp-block-split .gtp-split-media { grid-column: 1; }
.gtp-block-split .gtp-split-copy { grid-column: 2; }
.gtp-block-split .gtp-split-media img { margin: 0; max-height: 450px; }
.gtp-block-split .gtp-split-copy h3 { margin-top: 0; }
.gtp-preview-mode [data-gt-block-path] { cursor: pointer; outline: 2px dashed transparent; outline-offset: -3px; }
.gtp-preview-mode [data-gt-block-path]:hover { outline-color: var(--gtp-blue); }
.gtp-preview-mode [data-gt-block-path].is-selected { outline: 3px solid var(--gtp-red); outline-offset: -3px; }
.gtp-preview-mode [data-gt-block-path].is-drag-over { outline: 3px dashed var(--gtp-blue); outline-offset: -3px; }
.gtp-preview-actions { position: absolute; z-index: 6; top: 6px; right: 6px; display: flex; gap: 3px; opacity: 0; transition: opacity .2s; }
.gtp-preview-mode [data-gt-block-path]:hover .gtp-preview-actions, .gtp-preview-mode [data-gt-block-path].is-selected .gtp-preview-actions, .gtp-preview-mode [data-gt-block-path]:focus-within .gtp-preview-actions { opacity: 1; }
.gtp-preview-actions button { padding: 7px 9px; border: 0; border-radius: 3px; color: #fff; background: var(--gtp-navy); font-size: 10px; cursor: pointer; }
.gtp-preview-actions .gtp-preview-drag { display: grid; place-items: center; width: 29px; border-radius: 3px; color: #fff; background: var(--gtp-blue); font-size: 16px; cursor: grab; user-select: none; }
.gtp-preview-actions button:hover { background: var(--gtp-blue); }
.gtp-preview-mode [data-gt-edit-field]:hover { outline: 1px dashed var(--gtp-blue); }
.gtp-preview-mode [contenteditable="true"] { outline: 2px solid var(--gtp-red); background: #fff; color: var(--gtp-ink); cursor: text; }

.gtp-catalog { background: var(--gtp-paper); }
.gtp-catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.gtp-catalog-toolbar > label { width: min(330px, 100%); height: 52px; display: flex; align-items: center; gap: 12px; padding: 0 17px; border: 1px solid var(--gtp-line); background: #fff; border-radius: 8px; }
.gtp-catalog-toolbar label svg { flex: none; color: #7c8794; }
.gtp-catalog-toolbar input { width: 100%; border: 0; outline: 0; color: var(--gtp-navy); background: transparent; font-size: 13px; }
.gtp-category-tabs { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.gtp-category-tabs button { min-height: 42px; padding: 0 16px; border: 1px solid var(--gtp-line); color: var(--gtp-muted); background: #fff; border-radius: 7px; cursor: pointer; font-size: 11px; font-weight: 700; }
.gtp-category-tabs button.is-active { color: #fff; border-color: var(--gtp-blue); background: var(--gtp-blue); }
.gtp-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gtp-catalog-grid .gtp-product-image { height: 290px; }
.gtp-empty { display: none; padding: 60px; text-align: center; color: var(--gtp-muted); }
.gtp-empty.is-visible { display: block; }

.gtp-product-detail { padding: 72px 0 100px; background: #f8fafc; }
.gtp-product-detail-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 75px; align-items: center; }
.gtp-product-gallery { position: relative; min-height: 590px; padding: 38px; background: #fff; border-radius: 18px; box-shadow: var(--gtp-shadow); }
.gtp-product-gallery img { width: 100%; height: 514px; object-fit: cover; border-radius: 10px; }
.gtp-product-gallery > span { position: absolute; left: 55px; bottom: 55px; padding: 9px 13px; color: var(--gtp-navy); background: rgba(255,255,255,.94); border-radius: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.gtp-product-info .gtp-breadcrumb { color: #7a8592; margin-bottom: 52px; }
.gtp-product-info .gtp-breadcrumb b { color: var(--gtp-navy); }
.gtp-product-info h1 { margin: 0; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: clamp(42px, 5vw, 66px); line-height: 1.05; letter-spacing: -.05em; }
.gtp-product-summary { margin: 22px 0; color: var(--gtp-muted); font-size: 16px; line-height: 1.7; }
.gtp-price-box { display: grid; grid-template-columns: 105px 1fr; gap: 5px 20px; margin: 30px 0; padding: 22px 0; border-block: 1px solid var(--gtp-line); }
.gtp-price-box span { grid-row: 1 / 3; align-self: center; color: var(--gtp-muted); font-size: 11px; text-transform: uppercase; }
.gtp-price-box strong { color: var(--gtp-red); font-family: Manrope, sans-serif; font-size: 22px; }
.gtp-price-box small { color: var(--gtp-muted); font-size: 10px; }
.gtp-product-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.gtp-specs { background: #fff; }
.gtp-spec-table { margin: 0; border-top: 2px solid var(--gtp-navy); }
.gtp-spec-table > div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 30px; padding: 23px 0; border-bottom: 1px solid var(--gtp-line); }
.gtp-spec-table dt { color: var(--gtp-muted); font-size: 12px; }
.gtp-spec-table dd { margin: 0; color: var(--gtp-navy); font-weight: 600; }
.gtp-related { background: var(--gtp-paper); }

.gtp-news-index { background: #f8fafc; }
.gtp-article-hero { padding: 95px 0; color: #fff; background: var(--gtp-navy); }
.gtp-article-hero a { display: inline-block; margin-bottom: 70px; color: rgba(255,255,255,.7); font-size: 12px; }
.gtp-article-hero .gtp-eyebrow { color: #fff; }
.gtp-article-hero h1 { max-width: 900px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(42px, 5.5vw, 70px); line-height: 1.08; letter-spacing: -.052em; }
.gtp-article-hero p:last-child { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.72); line-height: 1.7; }
.gtp-article-layout { display: grid; grid-template-columns: minmax(0, 800px) 250px; gap: 80px; justify-content: center; align-items: start; }
.gtp-article-layout article > img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 14px; margin-bottom: 45px; }
.gtp-article-layout article h2 { margin: 44px 0 16px; color: var(--gtp-navy); font-family: Manrope, sans-serif; font-size: 32px; }
.gtp-article-layout article p { color: var(--gtp-muted); font-size: 15px; line-height: 1.9; }
.gtp-article-layout article .gtp-article-lead { color: var(--gtp-navy); font-size: 21px; line-height: 1.6; }
.gtp-article-layout aside { position: sticky; top: 100px; display: grid; padding: 25px; border: 1px solid var(--gtp-line); border-radius: 12px; }
.gtp-article-layout aside span { color: var(--gtp-muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.gtp-article-layout aside strong { margin: 6px 0 22px; color: var(--gtp-navy); font-size: 13px; }
.gtp-article-layout aside a { display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid var(--gtp-line); color: var(--gtp-red); font-size: 11px; font-weight: 700; }

.gtp-request { padding: 100px 0; color: #fff; background: var(--gtp-navy); }
.gtp-request-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.gtp-request .gtp-eyebrow { color: #fff; }
.gtp-request-grid > div > p:not(.gtp-eyebrow) { margin: 22px 0; color: rgba(255,255,255,.67); line-height: 1.75; }
.gtp-request-contact { display: grid; gap: 11px; margin-top: 36px; }
.gtp-request-contact a { display: flex; align-items: center; gap: 13px; }
.gtp-request-contact svg { color: var(--gtp-red); }
.gtp-request-contact span { display: flex; flex-direction: column; gap: 4px; color: rgba(255,255,255,.55); font-size: 9px; text-transform: uppercase; }
.gtp-request-contact strong { color: #fff; font-size: 12px; text-transform: none; }
.gtp-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 38px; color: var(--gtp-ink); background: #fff; border-radius: var(--gtp-radius); }
.gtp-form > div { display: grid; gap: 8px; }
.gtp-form .is-wide { grid-column: 1 / -1; }
.gtp-form label { color: var(--gtp-navy); font-size: 10px; font-weight: 700; }
.gtp-form input, .gtp-form textarea { width: 100%; padding: 14px; border: 1px solid var(--gtp-line); border-radius: 7px; outline: 0; resize: vertical; }
.gtp-form input:focus, .gtp-form textarea:focus { border-color: var(--gtp-blue); box-shadow: 0 0 0 3px rgba(6,61,122,.08); }
.gtp-form button { border: 0; cursor: pointer; }
.gtp-form button:disabled { opacity: .55; cursor: wait; }
.gtp-form-status { margin: 0; min-height: 1.2em; font-size: 13px; }
.gtp-form .gtp-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.gtp-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 90px 0; }
.gtp-contact-cards article { min-height: 180px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid var(--gtp-line); border-radius: 12px; }
.gtp-contact-cards svg { width: 28px; height: 28px; margin-bottom: 35px; color: var(--gtp-red); }
.gtp-contact-cards span { color: var(--gtp-muted); font-size: 10px; text-transform: uppercase; }
.gtp-contact-cards a, .gtp-contact-cards p { margin: 8px 0 0; color: var(--gtp-navy); font-size: 13px; font-weight: 700; line-height: 1.55; }

.gtp-footer { color: #fff; background: #00142e; }
.gtp-footer-statement { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.gtp-footer-statement strong { font-size: clamp(18px, 2vw, 26px); }
.gtp-footer-statement a, .gtp-social a { color: #fff; }
.gtp-social { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; font-size: 11px; text-transform: capitalize; }
.gtp-block-image, .gtp-block-video { display: block; width: 100%; max-height: 320px; object-fit: cover; margin-top: 18px; border-radius: 8px; }
.gtp-page-extra { padding: 38px 0 0; line-height: 1.75; color: var(--gtp-ink); }
.gtp-footer-main { display: grid; grid-template-columns: 1.25fr .65fr 1fr; gap: 90px; padding: 80px 0 64px; }
.gtp-footer .gtp-brand-symbol { background: #fff; color: var(--gtp-navy); }
.gtp-footer .gtp-brand-text strong { color: #fff; }
.gtp-footer-brand p, .gtp-footer-main > div:last-child p { max-width: 330px; margin: 25px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.75; }
.gtp-footer h3 { margin: 0 0 22px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gtp-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.gtp-footer nav a, .gtp-footer-main > div:last-child > a { color: rgba(255,255,255,.64); font-size: 11px; }
.gtp-footer-main > div:last-child > a { display: block; margin-top: 13px; }
.gtp-footer a:hover { color: #fff; }
.gtp-footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .05em; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .gtp-nav { gap: 13px; }
  .gtp-nav a { font-size: 10px; }
  .gtp-quote-link span { display: none; }
  .gtp-quote-link { width: 44px; padding: 0; justify-content: center; }
  .gtp-feature-grid, .gtp-home-products { grid-template-columns: repeat(2, 1fr); }
  .gtp-feature-grid article:nth-child(2) { border-right: 0; }
  .gtp-feature-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--gtp-line); }
  .gtp-process-grid { grid-template-columns: repeat(2, 1fr); }
  .gtp-process-grid article:nth-child(2) { border-right: 1px solid var(--gtp-line); }
  .gtp-process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--gtp-line); }
  .gtp-page-production .gtp-values-grid { grid-template-columns: repeat(2, 1fr); }
  .gtp-request-grid { gap: 55px; }
}

@media (max-width: 960px) {
  .gtp-shell { width: min(100% - 40px, 760px); }
  .gtp-header-inner { position: relative; }
  .gtp-header-actions { margin-left: auto; flex: 0 0 auto; }
  .gtp-topbar-side > span { display: none; }
  .gtp-header { height: 74px; }
  .gtp-nav { position: fixed; left: 0; right: 0; top: 110px; display: none; max-height: calc(100vh - 110px); padding: 20px; overflow: auto; background: #fff; border-top: 1px solid var(--gtp-line); box-shadow: 0 28px 40px rgba(0,26,58,.12); }
  .gtp-nav.is-open { display: grid; }
  .gtp-nav a { padding: 13px 2px; border-bottom: 1px solid var(--gtp-line); font-size: 13px; }
  .gtp-nav a::after { display: none; }
  .gtp-header.is-scrolled .gtp-nav { top: 110px; }
  .gtp-menu { display: grid; margin-left: auto; flex: 0 0 44px; }
  .gtp-quote-link span { display: inline; }
  .gtp-quote-link { width: auto; padding: 0 16px; }
  .gtp-hero, .gtp-hero-inner { min-height: 610px; }
  .gtp-hero-copy { width: min(650px, 90%); }
  .gtp-slider-nav { grid-template-columns: repeat(var(--gtp-slide-count, 3), minmax(70px, 1fr)) 44px; }
  .gtp-slider-nav > button:not(.gtp-slider-toggle) { padding: 8px 10px; grid-template-columns: 23px 1fr; }
  .gtp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gtp-trust article:nth-child(-n+2) { border-bottom: 1px solid var(--gtp-line); }
  .gtp-intro-grid, .gtp-about-grid, .gtp-page-body-grid, .gtp-product-detail-grid, .gtp-request-grid { grid-template-columns: 1fr; }
  .gtp-intro-highlight { justify-self: start; }
  .gtp-about-grid { gap: 65px; }
  .gtp-about-media > div { right: 25px; }
  .gtp-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .gtp-metrics article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .gtp-quality { grid-template-columns: 1fr; }
  .gtp-quality-media { min-height: 440px; }
  .gtp-quality-copy { max-width: 760px; padding: 70px max(20px, calc((100vw - 760px)/2)); }
  .gtp-news-grid, .gtp-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .gtp-values-grid { grid-template-columns: 1fr; }
  .gtp-values article.gtp-block-split { grid-template-columns: 1fr; }
  .gtp-block-split .gtp-split-media, .gtp-block-split .gtp-split-copy { grid-column: 1; }
  .gtp-values article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--gtp-line); }
  .gtp-values article:last-child { border-bottom: 0; }
  .gtp-catalog-toolbar { align-items: stretch; flex-direction: column; }
  .gtp-category-tabs { justify-content: flex-start; }
  .gtp-product-detail-grid { gap: 55px; }
  .gtp-article-layout { grid-template-columns: 1fr; gap: 45px; }
  .gtp-article-layout aside { position: static; }
  .gtp-contact-cards { grid-template-columns: 1fr 1fr; }
  .gtp-footer-main { grid-template-columns: 1fr 1fr; gap: 50px; }
  .gtp-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .gtp-shell { width: calc(100% - 30px); }
  .gtp-topbar { height: 34px; }
  .gtp-topbar-contact { gap: 10px; }
  .gtp-topbar-contact a:first-child { display: none; }
  .gtp-topbar-contact a { font-size: 10px; }
  .gtp-langs { height: 34px; }
  .gtp-langs button { min-width: 34px; padding: 0 7px; }
  .gtp-header { height: 68px; }
  .gtp-header.is-scrolled { height: 64px; }
  .gtp-header-inner { justify-content: flex-start; gap: 12px; }
  .gtp-brand-symbol { width: 42px; height: 42px; }
  .gtp-brand-text strong { font-size: 12px; }
  .gtp-brand-text small { font-size: 7px; }
  .gtp-quote-link { display: none; }
  .gtp-nav, .gtp-header.is-scrolled .gtp-nav { top: 102px; max-height: calc(100vh - 102px); }
  .gtp-hero, .gtp-hero-inner { min-height: 640px; }
  .gtp-hero-inner { padding: 50px 0 170px; }
  .gtp-hero-copy { width: calc(100% - 30px); }
  .gtp-hero h1 { font-size: 43px; }
  .gtp-hero-text { font-size: 14px; }
  .gtp-hero-actions { align-items: stretch; flex-direction: column; width: min(280px, 100%); }
  .gtp-slider-nav { bottom: 26px; grid-template-columns: repeat(var(--gtp-slide-count, 3), minmax(42px, 1fr)) 38px; }
  .gtp-slider-nav > button:not(.gtp-slider-toggle) { min-height: 55px; display: block; padding: 8px; }
  .gtp-slider-nav button span { font-size: 9px; }
  .gtp-slider-nav button b { display: none; }
  .gtp-slider-toggle { width: 36px; height: 36px; font-size: 10px; }
  .gtp-trust article { min-height: 82px; justify-content: flex-start; padding: 14px; font-size: 10px; }
  .gtp-trust svg { width: 21px; height: 21px; }
  .gtp-intro, .gtp-products-section, .gtp-process, .gtp-news-section, .gtp-page-body, .gtp-catalog, .gtp-specs, .gtp-related, .gtp-news-index, .gtp-article-content { padding: 76px 0; }
  .gtp-section-heading h2, .gtp-about-copy h2, .gtp-quality-copy h2, .gtp-page-body h2, .gtp-request h2 { font-size: 35px; }
  .gtp-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 32px; }
  .gtp-feature-grid, .gtp-home-products, .gtp-news-grid, .gtp-catalog-grid, .gtp-process-grid, .gtp-metrics-grid, .gtp-contact-cards, .gtp-footer-main, .gtp-page-production .gtp-values-grid { grid-template-columns: 1fr; }
  .gtp-feature-grid article { min-height: 160px; border-right: 0; border-bottom: 1px solid var(--gtp-line); }
  .gtp-feature-grid article:last-child { border-bottom: 0; }
  .gtp-home-products { gap: 16px; }
  .gtp-product-image, .gtp-catalog-grid .gtp-product-image { height: 250px; }
  .gtp-about-panel { padding: 76px 0; }
  .gtp-about-media, .gtp-about-media > img { min-height: 0; height: 420px; }
  .gtp-about-media > div { width: 130px; height: 130px; right: 15px; bottom: 20px; padding: 20px; }
  .gtp-about-media strong { font-size: 28px; }
  .gtp-metrics article { min-height: 140px; border-left: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .gtp-process-grid article, .gtp-process-grid article:first-child { min-height: 220px; border-left: 1px solid var(--gtp-line); border-right: 1px solid var(--gtp-line); border-bottom: 1px solid var(--gtp-line); }
  .gtp-process-grid h3 { margin-top: 42px; }
  .gtp-quality-media { min-height: 330px; }
  .gtp-quality-copy { padding: 60px 15px; }
  .gtp-cta-inner { align-items: flex-start; flex-direction: column; }
  .gtp-inner-hero { min-height: 470px; }
  .gtp-inner-content { padding-bottom: 45px; }
  .gtp-inner-content h1 { font-size: 41px; }
  .gtp-breadcrumb { margin-bottom: 32px; }
  .gtp-page-body-grid { gap: 30px; }
  .gtp-page-body-grid > div:last-child { padding-top: 0; }
  .gtp-product-detail { padding: 45px 0 70px; }
  .gtp-product-gallery { min-height: 0; padding: 15px; }
  .gtp-product-gallery img { height: 360px; }
  .gtp-product-gallery > span { left: 28px; bottom: 28px; }
  .gtp-product-info h1 { font-size: 42px; }
  .gtp-price-box { grid-template-columns: 80px 1fr; }
  .gtp-product-actions { flex-direction: column; }
  .gtp-spec-table > div { grid-template-columns: 1fr; gap: 8px; }
  .gtp-article-hero { padding: 70px 0; }
  .gtp-article-hero a { margin-bottom: 50px; }
  .gtp-article-hero h1 { font-size: 41px; }
  .gtp-form { grid-template-columns: 1fr; padding: 23px; }
  .gtp-form .is-wide { grid-column: auto; }
  .gtp-request-grid { gap: 45px; }
  .gtp-footer-main { padding: 65px 0 50px; }
  .gtp-footer-brand { grid-column: auto; }
  .gtp-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
.gt-visual-mode [data-gt-visual-id]:hover{outline:2px dashed #e14b56!important;outline-offset:2px;cursor:crosshair}
.gt-visual-mode .gt-visual-selected{outline:3px solid #e14b56!important;outline-offset:3px}
