/*
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;
	-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: rgba(7,17,31,.68); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.gkg-mobile-panel-inner { display: flex; flex-direction: column; align-items: stretch; margin-left: auto; width: min(390px, 88vw); min-height: 100dvh; max-height: 100dvh; padding: 28px 24px 34px; overflow-y: auto; background: #07111f; box-shadow: -24px 0 70px rgba(0,0,0,.32); transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.gkg-menu-open .gkg-mobile-panel { opacity: 1; pointer-events: auto; }
.gkg-menu-open .gkg-mobile-panel-inner { transform: translateX(0); }
.gkg-mobile-menu { display: grid; gap: 0; margin: 30px 0 24px; 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,.11); color: var(--white); font-size: 19px; font-weight: 850; line-height: 1.18; text-align: left; white-space: normal; word-break: normal; overflow-wrap: anywhere; }
.gkg-mobile-panel-inner .gkg-btn { width: 100%; margin-top: auto; }

.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: center; max-width: 230px; 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 { color: var(--brand); font-weight: 900; }
.gkg-hero-chip strong { font-size: 13px; line-height: 1.35; }
.gkg-hero-chip.is-1 { left: -32px; top: 18%; }
.gkg-hero-chip.is-2 { right: -24px; 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-marquee { display: flex; width: max-content; animation: gkg-trust-marquee 28s linear infinite; }
.gkg-trust:hover .gkg-trust-marquee { animation-play-state: paused; }
.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-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 { padding: 16px 0; border-bottom: 1px solid var(--line); }
.gkg-contact-info strong { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.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-form { margin: 0; }
.gkg-cf7-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.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-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-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(-50%); } }

@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-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-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-brand strong { font-size: 13px; }
	.gkg-brand img { width: 50px; height: 50px; }
	.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-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-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-listing-grid, .gkg-stats-grid, .gkg-advantage-list, .gkg-footer-grid, .gkg-form, .gkg-cf7-grid, .gkg-about-collage { grid-template-columns: 1fr; }
	.gkg-about-collage .is-main { grid-row: auto; min-height: 340px; }
	.gkg-listing-card { min-height: 300px; }
	.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-footer-bottom { display: block; }
}

@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; }
}
