/*
Theme Name: Göktürkler Lite
Author: CHELEBI
Version: 2.0.0
Text Domain: gokturkler-lite
*/

:root {
	--navy: #07111f;
	--ink: #111820;
	--paper: #f5f7f9;
	--white: #ffffff;
	--muted: #8d99a6;
	--brand: #4080c0;
	--brand-hover: #2f6faa;
	--brand-soft: rgba(64, 128, 192, .18);
	--line: rgba(141, 153, 166, .22);
	--wrap: min(1340px, calc(100vw - 48px));
	--shadow: 0 24px 70px rgba(7, 17, 31, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.gkg-wrap { width: var(--wrap); margin-inline: auto; }
.gkg-skip { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--brand); color: var(--white); padding: 10px 14px; }
.gkg-skip:focus { top: 16px; }

.gkg-site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	padding: 22px 0;
	color: var(--white);
	transition: padding .35s ease, background .35s ease, box-shadow .35s ease, color .35s ease;
}
.gkg-site-header.is-sticky {
	padding: 10px 0;
	background: rgba(7, 17, 31, .86);
	backdrop-filter: blur(18px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}
.gkg-header-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.gkg-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.gkg-brand img { width: 58px; height: 58px; border-radius: 50%; background: var(--white); }
.gkg-brand strong { max-width: 160px; color: currentColor; font-size: 15px; font-weight: 800; line-height: 1.15; }
.gkg-main-nav { justify-self: center; }
.gkg-menu { display: flex; gap: 26px; padding: 0; margin: 0; list-style: none; }
.gkg-footer-menu { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }
.gkg-menu a { position: relative; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 700; }
.gkg-menu a:after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.gkg-menu a:hover:after, .gkg-menu .current-menu-item a:after { transform: scaleX(1); }
.gkg-header-actions { display: flex; align-items: center; gap: 14px; }
.gkg-phone { color: rgba(255,255,255,.86); font-weight: 800; font-size: 14px; }

.gkg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid var(--brand);
	border-radius: 6px;
	background: var(--brand);
	color: var(--white);
	font-weight: 900;
	line-height: 1.1;
	transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.gkg-btn:before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.22) 48%, transparent 62% 100%); transform: translateX(-120%); pointer-events: none; }
.gkg-btn:hover:before { animation: gkg-sheen .85s ease both; }
.gkg-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.gkg-btn:hover { transform: translateY(-2px); background: var(--brand-hover); }
.gkg-btn:hover svg { transform: translateX(4px); }
.gkg-btn-small { min-height: 42px; padding: 11px 15px; font-size: 14px; }
.gkg-btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.24); }
.gkg-btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.gkg-btn-dark { background: var(--brand); color: var(--white); border-color: var(--brand); }
.gkg-btn-dark:hover { background: var(--brand-hover); border-color: var(--brand-hover); }

.gkg-menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 6px; background: rgba(255,255,255,.06); color: var(--white); }
.gkg-menu-open { overflow: hidden; }
.gkg-menu-open .gkg-site-header { height: 100dvh; pointer-events: none; }
.gkg-menu-open .gkg-header-inner { position: relative; z-index: 1003; pointer-events: none; }
.gkg-menu-open .gkg-menu-toggle { position: relative; z-index: 1003; }
.gkg-menu-open .gkg-menu-toggle, .gkg-menu-open .gkg-mobile-panel { pointer-events: auto; }
.gkg-menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.gkg-menu-open .gkg-menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
.gkg-menu-open .gkg-menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
.gkg-mobile-panel { position: fixed; inset: 0; z-index: 1001; width: 100vw; min-height: 100dvh; background: #07111f; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.gkg-mobile-panel:before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; pointer-events: none; }
.gkg-mobile-panel-inner { position: relative; display: flex; flex-direction: column; align-items: stretch; justify-content: center; width: min(100% - 40px, 520px); min-height: 100dvh; max-height: 100dvh; margin: 0 auto; padding: 112px 0 42px; overflow-y: auto; background: transparent; transform: translateY(16px); opacity: 0; transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s ease; }
.gkg-menu-open .gkg-mobile-panel { opacity: 1; pointer-events: auto; }
.gkg-menu-open .gkg-mobile-panel-inner { transform: translateY(0); opacity: 1; }
.gkg-mobile-menu { display: grid; gap: 0; margin: 0 0 34px; padding: 0; list-style: none; }
.gkg-mobile-menu a { display: flex; align-items: center; min-height: 54px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); font-size: clamp(20px, 6.2vw, 30px); font-weight: 900; line-height: 1.08; text-align: left; white-space: normal; word-break: normal; overflow-wrap: anywhere; transition: color .2s ease, padding-left .2s ease; }
.gkg-mobile-menu a:hover { color: #8fbce9; padding-left: 10px; }
.gkg-mobile-panel-inner .gkg-btn { width: 100%; max-width: 260px; }

.gkg-hero {
	position: relative;
	min-height: 100svh;
	padding: 150px 0 90px;
	overflow: hidden;
	background: var(--navy);
	color: var(--white);
	--hero-delay: 6000ms;
}
.gkg-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
		linear-gradient(120deg, transparent 0 44%, rgba(64,128,192,.18) 52%, transparent 62% 100%);
	background-size: 72px 72px, 72px 72px, auto;
	animation: gkg-drift 18s linear infinite;
}
.gkg-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 49%); gap: 74px; align-items: center; }
.gkg-hero-track { position: relative; z-index: 1; min-height: calc(100svh - 240px); }
.gkg-hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transform: translateY(18px) scale(.985); filter: blur(6px); transition: opacity .72s ease, transform .72s cubic-bezier(.16,1,.3,1), filter .72s ease; }
.gkg-hero-slide.is-active { position: relative; opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); filter: blur(0); }
.gkg-hero-slide [data-reveal] { opacity: 1; transform: none; }
.gkg-hero-copy .gkg-kicker, .gkg-hero-copy h1, .gkg-hero-copy .gkg-lead, .gkg-hero-copy .gkg-actions { opacity: 0; transform: translateY(28px); }
.gkg-hero-slide.is-active .gkg-hero-copy .gkg-kicker { animation: gkg-hero-rise .68s cubic-bezier(.16,1,.3,1) .08s both; }
.gkg-hero-slide.is-active .gkg-hero-copy h1 { animation: gkg-hero-title-soft .92s cubic-bezier(.16,1,.3,1) .18s both; }
.gkg-hero-slide.is-active .gkg-hero-copy .gkg-lead { animation: gkg-hero-rise .72s cubic-bezier(.16,1,.3,1) .38s both; }
.gkg-hero-slide.is-active .gkg-hero-copy .gkg-actions { animation: gkg-hero-rise .72s cubic-bezier(.16,1,.3,1) .52s both; }
.gkg-kicker { margin: 0 0 14px; color: var(--brand); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.gkg-hero h1, .gkg-inner-hero h1 { margin: 0; max-width: 820px; font-size: clamp(48px, 6vw, 86px); line-height: 1.02; font-weight: 900; }
.gkg-hero h1 { position: relative; isolation: isolate; text-shadow: 0 18px 50px rgba(0,0,0,.26); }
.gkg-hero h1:before { content: ""; position: absolute; left: 0; bottom: -.08em; z-index: -1; width: min(360px, 52%); height: .18em; border-radius: 999px; background: rgba(64,128,192,.34); transform: scaleX(0); transform-origin: left; pointer-events: none; }
.gkg-hero-slide.is-active h1:before { animation: gkg-hero-mark .78s ease .72s both; }
.gkg-hero h1:after { content: ""; display: block; width: min(180px, 38%); height: 4px; margin-top: 22px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), rgba(255,255,255,.58), transparent); transform-origin: left; }
.gkg-hero-slide.is-active h1:after { animation: gkg-hero-line .82s ease .55s both; }
.gkg-hero .gkg-lead { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.78); font-size: 19px; }
.gkg-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.gkg-hero-visual { position: relative; min-height: 640px; overflow: hidden; border-radius: 8px; --hero-x: 0px; --hero-y: 0px; }
.gkg-hero-visual img { width: 100%; height: 640px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); transform: scale(1.045) translate3d(var(--hero-x), var(--hero-y), 0); transition: transform .6s ease, filter .8s ease; }
.gkg-hero-slide.is-active .gkg-hero-visual img { animation: gkg-hero-image-settle 5.8s cubic-bezier(.16,1,.3,1) .08s both; }
.gkg-hero-visual:after { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.26); border-radius: 8px; pointer-events: none; }
.gkg-hero-visual:before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(180deg, transparent 0 55%, rgba(7,17,31,.32)); opacity: .76; pointer-events: none; }
.gkg-hero-orbit { position: absolute; inset: 12% -8% auto auto; width: 260px; height: 260px; border: 1px solid rgba(64,128,192,.34); border-radius: 8px; transform: rotate(8deg); animation: gkg-frame-pulse 3.6s ease-in-out infinite; }
.gkg-hero-chip { position: absolute; display: flex; gap: 10px; align-items: flex-start; width: clamp(230px, 34%, 330px); max-width: calc(100% - 36px); padding: 13px 15px; background: rgba(7,17,31,.78); border: 1px solid rgba(255,255,255,.18); border-radius: 6px; backdrop-filter: blur(14px); }
.gkg-hero-slide.is-active .gkg-hero-chip { animation: gkg-chip-soft .82s cubic-bezier(.16,1,.3,1) both; }
.gkg-hero-slide.is-active .gkg-hero-chip.is-1 { animation-delay: .42s; }
.gkg-hero-slide.is-active .gkg-hero-chip.is-2 { animation-delay: .54s; }
.gkg-hero-slide.is-active .gkg-hero-chip.is-3 { animation-delay: .66s; }
.gkg-hero-slide.is-active .gkg-hero-chip.is-4 { animation-delay: .78s; }
.gkg-hero-chip span { flex: none; color: var(--brand); font-weight: 900; }
.gkg-hero-chip strong { min-width: 0; font-size: 13px; line-height: 1.35; white-space: normal; overflow: visible; overflow-wrap: normal; word-break: normal; hyphens: none; }
.gkg-hero-chip.is-1 { left: 18px; top: 18%; }
.gkg-hero-chip.is-2 { right: 18px; top: 35%; }
.gkg-hero-chip.is-3 { left: 18px; bottom: 24%; }
.gkg-hero-chip.is-4 { right: 20px; bottom: 8%; }
.gkg-hero-controls { position: relative; z-index: 2; display: flex; gap: 10px; margin-top: 34px; }
.gkg-hero-controls button { position: relative; overflow: hidden; width: 42px; height: 6px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.26); cursor: pointer; transition: width .25s ease, background-color .25s ease; }
.gkg-hero-controls button:before { content: ""; position: absolute; inset: 0; background: var(--brand); transform: scaleX(0); transform-origin: left; }
.gkg-hero-controls button.is-active, .gkg-hero-controls button:hover { width: 64px; background: rgba(255,255,255,.16); box-shadow: 0 0 0 6px rgba(64,128,192,.12); }
.gkg-hero-controls button.is-active:before { animation: gkg-hero-progress var(--hero-delay) linear both; }

.gkg-trust { position: relative; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.gkg-trust:before, .gkg-trust:after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: min(120px, 12vw); pointer-events: none; }
.gkg-trust:before { left: 0; background: linear-gradient(90deg, var(--white), rgba(255,255,255,0)); }
.gkg-trust:after { right: 0; background: linear-gradient(270deg, var(--white), rgba(255,255,255,0)); }
.gkg-trust-head { padding: 46px 0 24px; text-align: center; }
.gkg-trust-head h2 { max-width: 720px; margin: 0 auto; font-size: clamp(28px, 3vw, 42px); line-height: 1.12; }
.gkg-trust-head .gkg-kicker { margin-bottom: 12px; }
.gkg-trust-marquee { display: flex; width: max-content; will-change: transform; animation: gkg-trust-marquee var(--trust-duration, 120s) linear infinite; }
.gkg-trust-row { display: flex; flex: 0 0 auto; gap: 0; }
.gkg-trust-row span { display: inline-flex; align-items: center; justify-content: center; min-width: clamp(230px, 22vw, 360px); padding: 28px 34px; border-left: 1px solid var(--line); color: var(--navy); font-weight: 900; white-space: nowrap; }
.gkg-trust-row span:before { content: ""; width: 8px; height: 8px; margin-right: 14px; border-radius: 999px; background: var(--brand); box-shadow: 0 0 0 6px rgba(64,128,192,.11); }
.gkg-trust-logo { display: inline-flex; align-items: center; justify-content: center; min-width: clamp(170px, 13vw, 240px); height: 104px; margin: 0; padding: 18px 28px; border-left: 1px solid var(--line); background: var(--white); }
.gkg-trust-logo img { display: block; width: auto; max-width: 100%; max-height: 68px; object-fit: contain; filter: saturate(.96); }
.gkg-section { padding: 118px 0; }
.gkg-section-head { display: grid; grid-template-columns: .35fr .65fr; gap: 50px; align-items: end; margin-bottom: 46px; }
.gkg-section-head h2, .gkg-section-copy h2, .gkg-advantage-grid h2, .gkg-faq-grid h2, .gkg-cta h2 { margin: 0; font-size: clamp(32px, 4vw, 56px); line-height: 1.08; }
.gkg-section-copy p, .gkg-advantage-grid p, .gkg-cta p { color: #536070; }
.gkg-about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.gkg-about-media { position: relative; }
.gkg-about-media { overflow: hidden; border-radius: 8px; }
.gkg-about-media:after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.34); border-radius: 6px; pointer-events: none; }
.gkg-about-media img { aspect-ratio: 1.16; width: 100%; object-fit: cover; border-radius: 8px; transition: transform 1s ease, filter .5s ease; }
.gkg-about-media:hover img { transform: scale(1.04); filter: saturate(1.06) contrast(1.03); }
.gkg-about-media span { position: absolute; left: 28px; bottom: 28px; padding: 14px 18px; background: var(--white); border-left: 3px solid var(--brand); border-radius: 4px; font-weight: 900; box-shadow: var(--shadow); }
.gkg-mini-list { display: grid; gap: 12px; margin: 28px 0; }
.gkg-mini-list span { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 800; }

.gkg-services { background: var(--white); }
.gkg-service-switch { display: grid; grid-template-columns: 360px 1fr; min-height: 560px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gkg-service-tabs { display: grid; align-content: start; border-right: 1px solid var(--line); }
.gkg-service-tabs button { position: relative; min-height: 74px; padding: 20px 24px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); text-align: left; font-weight: 900; cursor: pointer; transition: color .25s ease, background .25s ease, padding-left .25s ease; }
.gkg-service-tabs button:before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--brand); transform: scaleY(0); transform-origin: center; transition: transform .25s ease; }
.gkg-service-tabs button.is-active, .gkg-service-tabs button:hover { color: var(--navy); background: var(--paper); padding-left: 30px; }
.gkg-service-tabs button.is-active:before, .gkg-service-tabs button:hover:before { transform: scaleY(1); }
.gkg-service-panel { display: none; grid-template-columns: 1fr .82fr; gap: 36px; align-items: center; padding: 36px; }
.gkg-service-panel.is-active { display: grid; animation: gkg-panel-in .58s cubic-bezier(.2,.8,.2,1) both; }
.gkg-service-panel img { width: 100%; aspect-ratio: 1.32; object-fit: cover; border-radius: 8px; transition: transform .8s ease, filter .5s ease; }
.gkg-service-panel:hover img { transform: scale(1.025); filter: saturate(1.06) contrast(1.03); }
.gkg-service-panel h3 { margin: 8px 0 16px; font-size: clamp(28px, 3vw, 44px); line-height: 1.1; }
.gkg-inline-link { display: inline-flex; margin-top: 14px; color: var(--navy); font-weight: 900; border-bottom: 2px solid var(--brand); }

.gkg-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gkg-listing-card { position: relative; overflow: hidden; min-height: 340px; padding: 28px; border-radius: 8px; background: var(--navy); color: var(--white); transform: translateZ(0); transition: transform .35s ease, box-shadow .35s ease; }
.gkg-listing-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .44; transition: transform .55s ease, opacity .35s ease; }
.gkg-listing-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(7,17,31,.88)); }
.gkg-listing-card:before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.2) 50%, transparent 58% 100%); transform: translateX(-120%); pointer-events: none; }
.gkg-listing-card span, .gkg-listing-card h2, .gkg-listing-card p { position: relative; z-index: 1; }
.gkg-listing-card h2 { display: block; margin-top: 190px; font-size: 24px; font-weight: 900; transition: transform .35s ease; }
.gkg-listing-card p { margin: 10px 0 0; color: rgba(255,255,255,.78); transform: translateY(12px); opacity: .72; transition: transform .35s ease, opacity .35s ease; }
.gkg-listing-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(7,17,31,.18); }
.gkg-listing-card:hover:before { animation: gkg-sheen 1s ease both; }
.gkg-listing-card:hover img { transform: scale(1.06); opacity: .58; }
.gkg-listing-card:hover h2 { transform: translateY(-8px); }
.gkg-listing-card:hover p { transform: translateY(0); opacity: 1; }
.gkg-service-listing-card span { display: inline-flex; margin-top: 18px; border-bottom: 2px solid var(--brand); font-weight: 900; transition: color .35s ease; }
.gkg-service-listing-card:hover span { color: var(--brand); }
.gkg-service-cards-section .gkg-section-head { display: block; max-width: 760px; margin-bottom: 38px; }
.gkg-service-cards-section .gkg-section-head h2 { font-size: clamp(34px, 4vw, 54px); }
.gkg-service-listing-card { display: flex; align-items: flex-end; min-height: 390px; padding: 0; text-decoration: none; }
.gkg-service-listing-card:after { background: linear-gradient(180deg, rgba(7,17,31,.08) 0%, rgba(7,17,31,.58) 46%, rgba(7,17,31,.96) 100%); }
.gkg-service-listing-card > div { position: relative; z-index: 1; display: flex; min-height: 178px; width: 100%; flex-direction: column; justify-content: flex-end; padding: 28px; }
.gkg-service-listing-card h2 { margin: 0; font-size: clamp(21px, 1.6vw, 26px); line-height: 1.18; text-shadow: 0 2px 14px rgba(0,0,0,.38); transform: none; }
.gkg-service-listing-card p { margin: 12px 0 0; color: rgba(255,255,255,.84); line-height: 1.6; opacity: 1; transform: none; }
.gkg-service-listing-card:hover h2, .gkg-service-listing-card:hover p { transform: none; }

.gkg-dark-band, .gkg-cta { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.gkg-dark-band:before, .gkg-cta:before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 82px 82px; }
.gkg-advantage-grid { position: relative; display: grid; grid-template-columns: .8fr 1fr; gap: 70px; align-items: start; }
.gkg-advantage-grid p, .gkg-cta p { color: rgba(255,255,255,.7); }
.gkg-why-image { display: block; position: relative; margin-top: 30px; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,.16); }
.gkg-why-image:after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; pointer-events: none; }
.gkg-why-image img { width: 100%; aspect-ratio: 1.45; object-fit: cover; transition: transform .9s ease, filter .5s ease; }
.gkg-why-image:hover img { transform: scale(1.04); filter: saturate(1.06); }
.gkg-advantage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gkg-advantage-list span { position: relative; overflow: hidden; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-left-color: var(--brand); border-radius: 6px; background: rgba(255,255,255,.04); font-weight: 800; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.gkg-advantage-list span:after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.09) 50%, transparent 64% 100%); transform: translateX(-120%); }
.gkg-advantage-list span:hover { transform: translateX(6px); background: rgba(255,255,255,.08); border-color: rgba(64,128,192,.42); }
.gkg-advantage-list span:hover:after { animation: gkg-sheen .9s ease both; }

.gkg-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.gkg-process article { padding: 28px 22px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.gkg-process strong { color: var(--brand); font-size: 34px; }
.gkg-process h3 { min-height: 56px; margin: 12px 0 10px; line-height: 1.18; }
.gkg-stats { padding: 70px 0; background: var(--white); }
.gkg-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.gkg-stats-grid div { position: relative; overflow: hidden; padding: 26px; border-left: 1px solid var(--line); transition: transform .28s ease, background .28s ease; }
.gkg-stats-grid div:before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .32s ease; }
.gkg-stats-grid div:hover { transform: translateY(-5px); background: #f9fbfd; }
.gkg-stats-grid div:hover:before { transform: scaleX(1); }
.gkg-stats strong { font-size: 56px; line-height: 1; }
.gkg-stats em { color: var(--brand); font-style: normal; font-size: 28px; font-weight: 900; }
.gkg-stats span { display: block; margin-top: 12px; font-weight: 900; }

.gkg-faq-grid { display: grid; grid-template-columns: .42fr .58fr; gap: 70px; }
.gkg-accordion article { position: relative; border-top: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.gkg-accordion article:before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--brand); transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.gkg-accordion article:hover, .gkg-accordion article.is-open { background: rgba(64,128,192,.045); padding-left: 16px; }
.gkg-accordion article:hover:before, .gkg-accordion article.is-open:before { transform: scaleY(1); }
.gkg-accordion button { width: 100%; padding: 22px 0; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 900; cursor: pointer; transition: color .25s ease; }
.gkg-accordion button:hover, .gkg-accordion article.is-open button { color: var(--brand-hover); }
.gkg-accordion div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s ease; }
.gkg-accordion article.is-open div { grid-template-rows: 1fr; }
.gkg-accordion p { overflow: hidden; margin: 0 0 22px; color: #536070; }

.gkg-cta { padding: 86px 0; background-image: linear-gradient(90deg, rgba(7,17,31,.95), rgba(7,17,31,.78)), var(--cta-image); background-size: cover; background-position: center; }
.gkg-cta:after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 0 42%, rgba(64,128,192,.16) 50%, transparent 60% 100%); transform: translateX(-120%); pointer-events: none; animation: gkg-section-scan 7s ease-in-out infinite; }
.gkg-cta-inner { position: relative; display: flex; justify-content: space-between; gap: 44px; align-items: center; }
.gkg-cta h2 { max-width: 760px; }
.gkg-cta p { max-width: 720px; }
.gkg-cta-compact { padding: 70px 0; }

.gkg-inner-hero { position: relative; overflow: hidden; padding: 160px 0 76px; background: var(--navy); color: var(--white); }
.gkg-inner-hero:before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(120deg, transparent 0 46%, rgba(64,128,192,.16) 54%, transparent 66% 100%); background-size: 76px 76px, 76px 76px, auto; animation: gkg-drift 20s linear infinite; }
.gkg-inner-hero .gkg-wrap { position: relative; }
.gkg-inner-hero p { max-width: 760px; color: rgba(255,255,255,.72); font-size: 19px; }
.gkg-inner-split { display: grid; grid-template-columns: 1fr .62fr; gap: 54px; align-items: center; }
.gkg-inner-image { overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,.14); }
.gkg-inner-image img { width: 100%; aspect-ratio: 1.38; object-fit: cover; }
.gkg-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: 13px; font-weight: 800; }
.gkg-breadcrumb a:after { content: "/"; margin-left: 10px; color: var(--brand); }
.gkg-content-area { max-width: 860px; }
.gkg-content-area h2, .gkg-detail-content h2 { margin-top: 0; font-size: 34px; line-height: 1.15; }
.gkg-contact-grid, .gkg-detail-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 54px; align-items: start; }
.gkg-contact-info, .gkg-detail-aside { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 45px rgba(7,17,31,.06); transition: transform .3s ease, box-shadow .3s ease; }
.gkg-contact-info:hover, .gkg-detail-aside:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(7,17,31,.1); }
.gkg-contact-form { position: relative; overflow: hidden; padding: 38px; background: linear-gradient(145deg, #ffffff, #f7f9fb); border: 1px solid rgba(7,17,31,.1); border-radius: 8px; box-shadow: 0 28px 80px rgba(7,17,31,.12); }
.gkg-contact-form:before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--brand), var(--brand-soft)); }
.gkg-contact-form:after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 0 42%, rgba(64,128,192,.08) 50%, transparent 58% 100%); transform: translateX(-120%); pointer-events: none; }
.gkg-contact-form:hover:after { animation: gkg-sheen 1.1s ease both; }
.gkg-form-head { margin-bottom: 24px; }
.gkg-form-head, .gkg-contact-form .wpcf7 { position: relative; z-index: 1; }
.gkg-form-head h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); line-height: 1.12; }
.gkg-form-head p:last-child { margin-bottom: 0; color: #536070; }
.gkg-quality-policy { position: relative; overflow: hidden; max-width: 1120px; margin: 0 auto; padding: clamp(30px, 5vw, 62px); background: linear-gradient(145deg, #fff, #f7fafc); border: 1px solid rgba(64,128,192,.24); border-radius: 8px; box-shadow: 0 28px 80px rgba(7,17,31,.1); transition: transform .35s ease, box-shadow .35s ease; }
.gkg-quality-policy:hover { transform: translateY(-5px); box-shadow: 0 34px 90px rgba(7,17,31,.14); }
.gkg-quality-policy:before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(64,128,192,.22); border-radius: 6px; pointer-events: none; }
.gkg-quality-policy:after { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, var(--brand), var(--brand-soft)); }
.gkg-quality-policy-meta { position: relative; display: flex; justify-content: space-between; gap: 16px; margin-bottom: 38px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: #536070; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.gkg-quality-policy-date { margin: 0; color: var(--brand); text-align: right; }
.gkg-quality-policy h2 { position: relative; max-width: 880px; margin: 0 auto 50px; color: var(--navy); text-align: center; font-size: clamp(24px, 3vw, 36px); line-height: 1.2; text-transform: uppercase; }
.gkg-quality-policy h2 span { display: block; margin-top: 10px; color: var(--brand); font-size: .82em; letter-spacing: .04em; }
.gkg-quality-policy-text { position: relative; max-width: 820px; margin: 0 auto; color: var(--ink); text-align: center; font-size: clamp(21px, 2.5vw, 34px); font-weight: 800; line-height: 1.5; }
.gkg-quality-policy-sign { position: relative; margin: 54px 54px 0 auto; color: var(--brand); text-align: right; font-size: 18px; font-weight: 900; text-transform: uppercase; }
.gkg-quality-policy-actions { position: relative; display: flex; justify-content: center; gap: 12px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }
.gkg-quality-policy-link { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border: 1px solid var(--brand); border-radius: 6px; background: var(--brand); color: var(--white); font-size: 14px; font-weight: 900; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.gkg-quality-policy-link:hover { background: var(--brand-hover); border-color: var(--brand-hover); color: var(--white); transform: translateY(-2px); }
.gkg-contact-info ul, .gkg-site-footer ul { padding: 0; margin: 0; list-style: none; }
.gkg-contact-info li { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); column-gap: 14px; row-gap: 5px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.gkg-contact-info li:before { content: ""; grid-column: 1; grid-row: 1 / span 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 6px; background-color: rgba(64,128,192,.12); background-position: center; background-repeat: no-repeat; background-size: 20px 20px; box-shadow: inset 0 0 0 1px rgba(64,128,192,.16); }
.gkg-contact-info li:nth-child(1):before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%234080c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.8a16 16 0 0 0 6.1 6.1l1.2-1.2a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E"); }
.gkg-contact-info li:nth-child(2):before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%234080c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E"); }
.gkg-contact-info li:nth-child(3):before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%234080c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.gkg-contact-info li:nth-child(4):before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%234080c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
.gkg-contact-info li:nth-child(5):before { background-color: rgba(37,211,102,.14); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%2325d366'%3E%3Cpath d='M12.1 3.5a8.4 8.4 0 0 0-7.2 12.7L4 20.5l4.4-1.1a8.4 8.4 0 1 0 3.7-15.9Zm0 15.1c-1.3 0-2.5-.4-3.6-1l-.3-.2-2.1.5.6-2-.2-.3A6.5 6.5 0 1 1 12.1 18.6Zm3.6-4.8c-.2-.1-1.2-.6-1.4-.7-.2-.1-.4-.1-.5.1-.2.2-.6.7-.7.9-.1.1-.3.2-.5.1a5.4 5.4 0 0 1-2.7-2.4c-.2-.3 0-.4.1-.5l.4-.5c.1-.2.1-.3.2-.5 0-.1 0-.3-.1-.4l-.6-1.5c-.2-.4-.3-.4-.5-.4h-.4c-.1 0-.4.1-.6.3-.2.2-.8.8-.8 2s.8 2.3.9 2.5c.1.2 1.7 2.7 4.2 3.7 1.6.7 2.2.7 3 .6.5-.1 1.2-.5 1.4-1 .2-.5.2-.9.1-1-.1-.1-.3-.2-.5-.3Z'/%3E%3C/svg%3E"); box-shadow: inset 0 0 0 1px rgba(37,211,102,.22); }
.gkg-contact-info strong, .gkg-contact-info li > a, .gkg-contact-info li > span { grid-column: 2; min-width: 0; }
.gkg-contact-info strong { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.gkg-contact-info li > span { color: var(--ink); line-height: 1.65; }
.gkg-contact-info li a { display: inline-flex; align-items: center; gap: 8px; width: fit-content; max-width: 100%; margin-top: 2px; color: var(--navy); font-weight: 800; line-height: 1.35; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.gkg-contact-info li a:after { content: ""; width: 14px; height: 14px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10h10M10 5l5 5-5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10h10M10 5l5 5-5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; }
.gkg-contact-info li a:hover { color: var(--brand-hover); transform: translateX(3px); }
.gkg-contact-info li:nth-child(5) a { padding: 9px 12px; border-radius: 6px; background: #25d366; color: #fff; }
.gkg-contact-info li:nth-child(5) a:hover { background: #1ebe5a; color: #fff; }
.gkg-contact-photo { display: block; overflow: hidden; margin: 22px 0 10px; border-radius: 8px; }
.gkg-contact-photo img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.gkg-map iframe { width: 100%; min-height: 260px; border: 0; border-radius: 6px; }
.gkg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gkg-form label { display: grid; gap: 7px; color: #536070; font-weight: 800; font-size: 13px; }
.gkg-form input, .gkg-form select, .gkg-form textarea { width: 100%; border: 1px solid rgba(7,17,31,.12); border-radius: 6px; background: var(--white); padding: 14px 15px; color: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.gkg-form input:focus, .gkg-form select:focus, .gkg-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(64,128,192,.14); background: #fff; }
.gkg-form textarea, .gkg-form .gkg-check, .gkg-form .gkg-alert, .gkg-form button { grid-column: 1 / -1; }
.gkg-contact-form .wpcf7 { width: 100%; }
.gkg-contact-form .wpcf7-form { display: block; margin: 0; }
.gkg-contact-form .wpcf7-form > p { margin: 0; }
.gkg-contact-form .wpcf7-form > p:nth-of-type(3), .gkg-contact-form .wpcf7-form > p:nth-of-type(4), .gkg-contact-form .wpcf7-form > p:nth-of-type(5) { grid-column: 1 / -1; }
.gkg-contact-form .wpcf7-form label { display: grid; gap: 7px; width: 100%; color: #536070; font-size: 13px; font-weight: 800; line-height: 1.35; }
.gkg-contact-form .wpcf7-form .wpcf7-form-control-wrap { display: block; width: 100%; margin-top: 7px; }
.gkg-contact-form .wpcf7-form input:not([type="submit"]):not([type="checkbox"]), .gkg-contact-form .wpcf7-form select, .gkg-contact-form .wpcf7-form textarea { width: 100%; min-height: 52px; border: 1px solid rgba(7,17,31,.12); border-radius: 6px; background: var(--white); padding: 14px 15px; color: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.gkg-contact-form .wpcf7-form textarea { min-height: 150px; resize: vertical; }
.gkg-contact-form .wpcf7-form input:focus, .gkg-contact-form .wpcf7-form select:focus, .gkg-contact-form .wpcf7-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(64,128,192,.14); background: #fff; }
.gkg-contact-form .wpcf7-submit { display: inline-flex; min-height: 50px; padding: 14px 22px; border: 1px solid var(--brand); border-radius: 6px; background: var(--brand); color: var(--white); font-weight: 900; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.gkg-contact-form .wpcf7-submit:hover { background: var(--brand-hover); border-color: var(--brand-hover); transform: translateY(-2px); }
.gkg-cf7-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; width: 100%; }
.gkg-cf7-grid > p { display: contents; }
.gkg-cf7-grid br { display: none; }
.gkg-cf7-grid label { display: grid; gap: 7px; color: #536070; font-size: 13px; font-weight: 800; }
.gkg-cf7-grid .is-full, .gkg-cf7-grid .gkg-cf7-accept, .gkg-cf7-grid .gkg-cf7-submit { grid-column: 1 / -1; }
.gkg-cf7-grid input:not([type="submit"]):not([type="checkbox"]), .gkg-cf7-grid select, .gkg-cf7-grid textarea { width: 100%; border: 1px solid rgba(7,17,31,.12); border-radius: 6px; background: var(--white); padding: 14px 15px; color: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.gkg-cf7-grid input:focus, .gkg-cf7-grid select:focus, .gkg-cf7-grid textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(64,128,192,.14); background: #fff; }
.gkg-cf7-grid textarea { min-height: 142px; resize: vertical; }
.gkg-cf7-accept { color: #536070; font-size: 13px; font-weight: 700; line-height: 1.45; }
.gkg-cf7-accept .wpcf7-list-item { margin: 0; }
.gkg-cf7-submit input[type="submit"] { display: inline-flex; min-height: 50px; padding: 14px 22px; border: 1px solid var(--brand); border-radius: 6px; background: var(--brand); color: var(--white); font-weight: 900; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.gkg-cf7-submit input[type="submit"]:hover { background: var(--brand-hover); border-color: var(--brand-hover); transform: translateY(-2px); }
.wpcf7 form .wpcf7-response-output { margin: 18px 0 0; padding: 12px 14px; border-radius: 6px; font-weight: 800; }
.wpcf7-not-valid-tip { margin-top: 6px; font-size: 12px; font-weight: 800; }
.gkg-hidden { position: absolute; left: -10000px; }
.gkg-alert { padding: 12px 14px; border-radius: 6px; }
.gkg-alert.is-success { background: #e8f6ed; color: #165d2f; }
.gkg-alert.is-error { background: #fff0f0; color: #8a1f1f; }
.gkg-detail-content > img { width: 100%; margin-bottom: 34px; border-radius: 8px; }
.gkg-detail-content > img + p, .gkg-detail-content picture + p { margin-top: 0; font-size: 18px; line-height: 1.75; color: #536070; }
.gkg-detail-aside { position: sticky; top: 110px; }
.gkg-detail-grid-clean { display: block; max-width: 980px; }
.gkg-detail-grid-clean .gkg-detail-content > img,
.gkg-detail-grid-clean .gkg-detail-content picture img { width: 100%; max-height: 560px; object-fit: cover; }
.gkg-archive-duo { display: grid; grid-template-columns: .88fr 1.12fr; gap: 54px; position: relative; }
.gkg-process-compact { grid-template-columns: 1fr; }
.gkg-process-compact article { border-color: rgba(255,255,255,.12); }
.gkg-reference-head { display: block; max-width: 860px; margin: 0 auto 22px; text-align: center; }
.gkg-reference-head .gkg-kicker { margin-bottom: 14px; }
.gkg-reference-head h2 { max-width: 820px; margin: 0 auto; }
.gkg-reference-intro { max-width: 760px; margin: 0 auto 42px; color: #536070; text-align: center; font-size: 18px; line-height: 1.75; }
.gkg-reference-intro p:first-child { margin-top: 0; }
.gkg-reference-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.gkg-reference-card { display: grid; place-items: center; min-height: 160px; margin: 0; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 14px 36px rgba(7,17,31,.05); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.gkg-reference-card:hover { transform: translateY(-4px); border-color: rgba(64,128,192,.32); box-shadow: 0 22px 52px rgba(7,17,31,.09); }
.gkg-reference-card img { display: block; width: auto; max-width: 100%; max-height: 104px; object-fit: contain; filter: saturate(.92); transition: filter .22s ease, transform .22s ease; }
.gkg-reference-card:hover img { filter: saturate(1.08); transform: scale(1.03); }
.gkg-about-page-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: center; }
.gkg-about-story { max-width: 680px; }
.gkg-about-story h2 { margin: 0 0 22px; font-size: clamp(34px, 4vw, 58px); line-height: 1.08; }
.gkg-about-story p { color: #536070; }
.gkg-why-video { margin-top: 58px; padding: clamp(22px, 4vw, 38px); border: 1px solid rgba(64,128,192,.22); border-radius: 8px; background: linear-gradient(145deg, #fff, #f7fafc); box-shadow: 0 24px 70px rgba(7,17,31,.09); }
.gkg-why-video > div { max-width: 760px; margin-bottom: 22px; }
.gkg-why-video h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.12; }
.gkg-why-video video { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 8px; background: #050b14; object-fit: contain; }
.gkg-about-collage { display: grid; grid-template-columns: .92fr .7fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.gkg-about-collage picture { min-height: 220px; overflow: hidden; border-radius: 8px; box-shadow: 0 18px 50px rgba(7,17,31,.12); }
.gkg-about-collage .is-main { grid-row: 1 / span 2; min-height: 520px; }
.gkg-about-collage img { width: 100%; height: 100%; object-fit: cover; }
.gkg-about-values { padding-top: 96px; }

.gkg-site-footer { padding: 72px 0 26px; background: #050b14; color: rgba(255,255,255,.72); }
.gkg-footer-grid { display: grid; grid-template-columns: 1.25fr .75fr repeat(2, 1fr); gap: 42px; }
.gkg-footer-grid h2 { margin: 0 0 18px; color: var(--white); font-size: 16px; }
.gkg-footer-grid li { margin: 9px 0; }
.gkg-footer-grid a:hover { color: var(--brand); }
.gkg-footer-brand { color: var(--white); margin-bottom: 16px; }
.gkg-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.gkg-socials a { padding: 8px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 4px; }
.gkg-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes gkg-drift { to { background-position: 72px 72px, 72px 72px, center; } }
@keyframes gkg-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gkg-hero-rise { from { opacity: 0; transform: translateY(28px); filter: blur(4px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes gkg-hero-title-soft { 0% { opacity: 0; transform: translateY(30px); filter: blur(6px); clip-path: inset(0 0 100% 0); } 58% { opacity: 1; filter: blur(0); clip-path: inset(0 0 0 0); } 100% { opacity: 1; transform: translateY(0); filter: blur(0); clip-path: inset(0 0 0 0); } }
@keyframes gkg-hero-line { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }
@keyframes gkg-hero-mark { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }
@keyframes gkg-hero-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes gkg-hero-image-settle { 0% { transform: scale(1.055) translate3d(10px, 0, 0); filter: saturate(.94) contrast(.96); } 100% { transform: scale(1.018) translate3d(var(--hero-x), var(--hero-y), 0); filter: saturate(1.04) contrast(1.02); } }
@keyframes gkg-frame-pulse { 0%, 100% { transform: rotate(8deg) scale(1); opacity: .6; } 50% { transform: rotate(8deg) scale(1.04); opacity: .9; } }
@keyframes gkg-chip-soft { from { opacity: 0; transform: translateY(14px); filter: blur(4px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes gkg-sheen { from { transform: translateX(-120%); } to { transform: translateX(120%); } }
@keyframes gkg-panel-in { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes gkg-section-scan { 0%, 24% { transform: translateX(-120%); opacity: 0; } 38%, 54% { opacity: 1; } 76%, 100% { transform: translateX(120%); opacity: 0; } }
@keyframes gkg-trust-marquee { from { transform: translateX(0); } to { transform: translateX(-25%); } }

@media (max-width: 1080px) {
	:root { --wrap: min(100% - 32px, 1340px); }
	.gkg-main-nav, .gkg-phone, .gkg-header-actions .gkg-btn { display: none; }
	.gkg-menu-toggle { display: block; }
	.gkg-header-inner { grid-template-columns: 1fr auto; }
	.gkg-hero-grid, .gkg-about-grid, .gkg-advantage-grid, .gkg-faq-grid, .gkg-contact-grid, .gkg-detail-grid { grid-template-columns: 1fr; }
	.gkg-inner-split, .gkg-archive-duo, .gkg-about-page-grid { grid-template-columns: 1fr; }
	.gkg-hero { min-height: auto; padding-top: 130px; }
	.gkg-hero-track { min-height: 0; }
	.gkg-hero-slide { position: absolute; }
	.gkg-hero-slide.is-active { position: relative; }
	.gkg-hero-visual, .gkg-hero-visual img { min-height: 0; height: auto; }
	.gkg-hero-visual { display: grid; gap: 10px; overflow: visible; }
	.gkg-hero-visual img { grid-column: 1 / -1; }
	.gkg-hero-chip { position: static; max-width: none; width: 100%; padding: 12px 14px; background: rgba(7,17,31,.92); border-color: rgba(255,255,255,.12); backdrop-filter: none; }
	.gkg-hero-chip strong { overflow: visible; text-overflow: clip; white-space: normal; }
	.gkg-hero-chip.is-1, .gkg-hero-chip.is-2, .gkg-hero-chip.is-3, .gkg-hero-chip.is-4 { left: auto; right: auto; top: auto; bottom: auto; }
	.gkg-service-switch { grid-template-columns: 1fr; }
	.gkg-service-tabs { display: flex; overflow-x: auto; border-right: 0; }
	.gkg-service-tabs button { flex: 0 0 250px; }
	.gkg-service-panel { grid-template-columns: 1fr; }
	.gkg-listing-grid { grid-template-columns: repeat(2, 1fr); }
	.gkg-reference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gkg-reference-card { min-height: 142px; padding: 22px; }
	.gkg-reference-card img { max-height: 88px; }
	.gkg-about-collage { grid-template-columns: 1fr 1fr; }
	.gkg-process { grid-template-columns: 1fr; }
	.gkg-process article { border-right: 0; }
	.gkg-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
	.gkg-section { padding: 72px 0; }
	.gkg-header-inner { gap: 12px; }
	.gkg-site-header { padding: 16px 0; }
	.gkg-site-header.is-sticky { padding: 10px 0; }
	.gkg-brand { gap: 10px; }
	.gkg-brand strong { max-width: 145px; font-size: 13px; }
	.gkg-brand img { width: 50px; height: 50px; }
	.gkg-menu-toggle { width: 44px; height: 44px; }
	.gkg-mobile-panel-inner { width: min(100% - 32px, 520px); padding: 104px 0 34px; }
	.gkg-mobile-menu a { min-height: 52px; font-size: clamp(20px, 6vw, 28px); }
	.gkg-hero { padding: 112px 0 58px; }
	.gkg-hero h1, .gkg-inner-hero h1 { font-size: 36px; line-height: 1.08; }
	.gkg-hero .gkg-lead { margin-top: 18px; font-size: 16px; }
	.gkg-hero .gkg-actions { gap: 10px; margin-top: 24px; }
	.gkg-hero .gkg-actions .gkg-btn { flex: 1 1 156px; padding-inline: 14px; }
	.gkg-hero-controls { margin-top: 24px; }
	.gkg-hero-controls button { width: 34px; }
	.gkg-hero-controls button.is-active, .gkg-hero-controls button:hover { width: 48px; }
	.gkg-hero-chip { display: none; }
	.gkg-hero-visual:after, .gkg-hero-orbit { display: none; }
	.gkg-hero-visual img { transform: none; animation: none; }
	.gkg-trust-head { padding: 34px 0 18px; text-align: left; }
	.gkg-trust-head h2 { font-size: 28px; }
	.gkg-trust-row span { min-width: 220px; padding: 20px 24px; }
	.gkg-trust-logo { min-width: 150px; height: 88px; padding: 14px 22px; }
	.gkg-trust-logo img { max-height: 56px; }
	.gkg-btn:hover, .gkg-listing-card:hover, .gkg-stats-grid div:hover, .gkg-contact-info:hover, .gkg-detail-aside:hover, .gkg-quality-policy:hover { transform: none; }
	.gkg-about-media:hover img, .gkg-why-image:hover img, .gkg-service-panel:hover img { transform: none; }
	.gkg-section-head, .gkg-cta-inner { display: block; }
	.gkg-section-head { margin-bottom: 30px; }
	.gkg-section-head h2, .gkg-section-copy h2, .gkg-advantage-grid h2, .gkg-faq-grid h2, .gkg-cta h2 { font-size: 32px; }
	.gkg-service-switch { min-height: 0; }
	.gkg-service-tabs button { flex: 0 0 218px; min-height: 64px; padding: 16px 18px; font-size: 14px; }
	.gkg-service-tabs button.is-active, .gkg-service-tabs button:hover { padding-left: 22px; }
	.gkg-service-panel { padding: 24px 0; }
	.gkg-service-panel h3 { font-size: 28px; }
	.gkg-listing-grid, .gkg-stats-grid, .gkg-advantage-list, .gkg-footer-grid, .gkg-form, .gkg-contact-form .wpcf7-form, .gkg-cf7-grid, .gkg-about-collage { grid-template-columns: 1fr; }
	.gkg-reference-head { margin-bottom: 18px; text-align: left; }
	.gkg-reference-intro { margin: 0 0 28px; text-align: left; font-size: 16px; }
	.gkg-reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.gkg-reference-card { min-height: 126px; padding: 18px; }
	.gkg-reference-card img { max-height: 78px; }
	.gkg-about-collage .is-main { grid-row: auto; min-height: 340px; }
	.gkg-listing-card { min-height: 300px; }
	.gkg-service-listing-card { min-height: 330px; }
	.gkg-service-listing-card > div { min-height: 160px; padding: 22px; }
	.gkg-inner-hero { padding: 126px 0 58px; }
	.gkg-inner-hero p { font-size: 16px; }
	.gkg-content-area h2, .gkg-detail-content h2 { font-size: 28px; }
	.gkg-contact-info, .gkg-detail-aside, .gkg-contact-form { padding: 24px; }
	.gkg-contact-grid, .gkg-detail-grid { gap: 30px; }
	.gkg-contact-form .wpcf7-submit, .gkg-cf7-submit input[type="submit"] { width: 100%; }
	.gkg-quality-policy { padding: 30px 22px; }
	.gkg-quality-policy:before { inset: 10px; }
	.gkg-quality-policy-meta { display: grid; gap: 8px; margin-bottom: 28px; font-size: 12px; }
	.gkg-quality-policy-date { text-align: left; }
	.gkg-quality-policy h2 { margin-bottom: 34px; font-size: 20px; }
	.gkg-quality-policy-text { font-size: 21px; line-height: 1.48; }
	.gkg-quality-policy-sign { margin: 34px 10px 0 0; font-size: 15px; }
	.gkg-quality-policy-actions { margin-top: 30px; padding-top: 22px; }
	.gkg-quality-policy-link { width: 100%; }
	.gkg-cta-inner .gkg-btn { width: 100%; margin-top: 18px; }
	.gkg-footer-bottom { display: block; }
}

@media (max-width: 380px) {
	:root { --wrap: min(100% - 24px, 1340px); }
	.gkg-brand img { width: 46px; height: 46px; }
	.gkg-brand strong { max-width: 124px; font-size: 12px; }
	.gkg-menu-toggle { width: 42px; height: 42px; }
	.gkg-hero h1, .gkg-inner-hero h1 { font-size: 32px; }
	.gkg-hero .gkg-actions .gkg-btn { flex-basis: 100%; width: 100%; }
	.gkg-mobile-menu a { font-size: 22px; }
	.gkg-contact-info, .gkg-detail-aside, .gkg-contact-form { padding: 20px; }
	.gkg-quality-policy-text { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
	.gkg-hero-copy .gkg-kicker, .gkg-hero-copy h1, .gkg-hero-copy .gkg-lead, .gkg-hero-copy .gkg-actions { opacity: 1; transform: none; filter: none; }
	.gkg-hero h1:before, .gkg-btn:before, .gkg-listing-card:before, .gkg-contact-form:after, .gkg-cta:after, .gkg-advantage-list span:after { display: none; }
	.gkg-hero-visual img { transform: none; }
	.gkg-trust-marquee { width: auto; animation: none; }
	.gkg-trust-row[aria-hidden="true"] { display: none; }
	[data-reveal] { opacity: 1; transform: none; }
}
