/*
Theme Name: Goldinken
Theme URI: https://goldinken.lv
Author: Goldinken
Description: Mājaslapa ar mūsdienīgu, bagātīgu dizainu — tīra tipogrāfija, hero sekcijas, animācijas. Saderīgs ar Goldinken System plugin.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goldinken
*/

/* ==========================================================================
   CSS variables – Apple/UPM inspired, Goldinken brand
   ========================================================================== */
:root {
	/* Brand */
	--gk-gold: #D4AF37;
	--gk-gold-dark: #B8941F;
	--gk-gold-light: #F5E6B3;
	--gk-gold-glow: rgba(212, 175, 55, 0.15);

	--gk-primary: #1a1a1a;
	--gk-dark: #0f0f0f;
	--gk-gray: #6b7280;
	--gk-light: #f8f9fa;
	--gk-white: #ffffff;

	/* Layout */
	--container: min(1200px, 92vw);
	--container-narrow: min(720px, 92vw);
	--section-padding: clamp(4rem, 10vw, 8rem);
	--gap: clamp(1.5rem, 4vw, 3rem);

	/* Typography */
	--font-sans: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-serif: "SF Pro Display", Georgia, serif;
	--text-hero: clamp(2.5rem, 5vw + 1rem, 4rem);
	--text-display: clamp(2rem, 4vw, 3rem);
	--text-lead: clamp(1.125rem, 2vw, 1.35rem);
	--text-body: 1.0625rem;
	--line-tight: 1.2;
	--line-normal: 1.6;
	--line-relaxed: 1.75;

	/* Motion */
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--duration: 0.5s;
	--duration-slow: 0.8s;

	/* Shadows & radius */
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
	--shadow-md: 0 8px 30px rgba(0,0,0,0.08);
	--shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
	--radius: 12px;
	--radius-lg: 20px;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: var(--font-sans);
	font-size: var(--text-body);
	line-height: var(--line-normal);
	color: var(--gk-primary);
	background: var(--gk-white);
	margin: 0;
	padding-top: 72px;
	-webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.gk-container {
	width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 4vw, 2rem);
	padding-right: clamp(1rem, 4vw, 2rem);
}

.gk-container--narrow {
	width: var(--container-narrow);
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.gk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.85);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid rgba(0,0,0,0.06);
	transition: background var(--duration), border-color var(--duration);
}

.gk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
	position: relative;
}

.gk-logo,
.custom-logo-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--gk-dark);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.gk-logo:hover,
.custom-logo-link:hover {
	color: var(--gk-gold-dark);
}

.custom-logo {
	height: 32px;
	width: auto;
	max-width: 180px;
}

.gk-logo mark,
.gk-logo .gk-logo-accent {
	color: var(--gk-gold-dark);
}

.gk-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.gk-header-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.gk-nav a {
	color: var(--gk-primary);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: color var(--duration);
}

.gk-nav a:hover {
	color: var(--gk-gold-dark);
}

.gk-header-actions .gk-btn {
	margin-left: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.gk-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: calc(72px + var(--section-padding)) 1.5rem var(--section-padding);
	background: linear-gradient(180deg, var(--gk-light) 0%, var(--gk-white) 50%);
	position: relative;
	overflow: hidden;
}

.gk-hero::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--gk-gold-glow) 0%, transparent 50%);
	pointer-events: none;
}

.gk-hero__content {
	position: relative;
	max-width: 800px;
}

.gk-hero__title {
	font-size: var(--text-hero);
	font-weight: 700;
	line-height: var(--line-tight);
	letter-spacing: -0.03em;
	color: var(--gk-dark);
	margin: 0 0 1rem;
	opacity: 0;
	transform: translateY(24px);
	animation: gk-fade-up 0.8s var(--ease-out-expo) 0.2s forwards;
}

.gk-hero__eyebrow {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gk-gold-dark);
	margin: 0 0 1rem;
	opacity: 0;
	transform: translateY(24px);
	animation: gk-fade-up 0.8s var(--ease-out-expo) 0.1s forwards;
}

.gk-hero__title .gk-accent {
	color: var(--gk-gold-dark);
}

.gk-hero__lead {
	font-size: var(--text-lead);
	line-height: var(--line-relaxed);
	color: var(--gk-gray);
	margin: 0 0 2rem;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	transform: translateY(24px);
	animation: gk-fade-up 0.8s var(--ease-out-expo) 0.4s forwards;
}

.gk-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	opacity: 0;
	transform: translateY(24px);
	animation: gk-fade-up 0.8s var(--ease-out-expo) 0.6s forwards;
}

@keyframes gk-fade-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.gk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: transform var(--duration) var(--ease-out-expo), box-shadow var(--duration), background var(--duration);
}

.gk-btn--primary {
	background: var(--gk-dark);
	color: var(--gk-white);
}

.gk-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.gk-btn--secondary {
	background: var(--gk-white);
	color: var(--gk-dark);
	border: 2px solid rgba(0,0,0,0.12);
}

.gk-btn--secondary:hover {
	border-color: var(--gk-gold);
	color: var(--gk-gold-dark);
}

.gk-btn--gold {
	background: linear-gradient(135deg, var(--gk-gold) 0%, var(--gk-gold-dark) 100%);
	color: var(--gk-dark);
}

.gk-btn--gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px var(--gk-gold-glow);
}

/* ==========================================================================
   Sections (generic)
   ========================================================================== */
.gk-section {
	padding: var(--section-padding) 0;
}

.gk-section--alt {
	background: var(--gk-light);
}

.gk-section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

.gk-section__title {
	font-size: var(--text-display);
	font-weight: 700;
	line-height: var(--line-tight);
	letter-spacing: -0.02em;
	color: var(--gk-dark);
	margin: 0 0 0.75rem;
}

.gk-section__lead {
	font-size: var(--text-lead);
	color: var(--gk-gray);
	line-height: var(--line-relaxed);
	margin: 0;
}

.gk-section__eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gk-gold-dark);
	margin: 0 0 0.5rem;
}

/* ==========================================================================
   Feature grid (cards)
   ========================================================================== */
.gk-grid {
	display: grid;
	gap: var(--gap);
}

.gk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gk-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.gk-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.gk-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.gk-grid--2,
	.gk-grid--3,
	.gk-grid--4 { grid-template-columns: 1fr; }
}

.gk-card {
	background: var(--gk-white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(0,0,0,0.06);
	transition: transform var(--duration) var(--ease-out-expo), box-shadow var(--duration);
}

.gk-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.gk-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gk-gold-glow);
	border-radius: var(--radius);
	color: var(--gk-gold-dark);
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

.gk-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gk-dark);
	margin: 0 0 0.5rem;
}

.gk-card__text {
	color: var(--gk-gray);
	line-height: var(--line-relaxed);
	margin: 0;
}

.gk-card a.gk-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 1rem;
	font-weight: 600;
	color: var(--gk-gold-dark);
	text-decoration: none;
	transition: gap var(--duration);
}

.gk-card a.gk-card__link:hover {
	gap: 0.6rem;
}

/* ==========================================================================
   CTA block
   ========================================================================== */
.gk-cta {
	text-align: center;
	padding: var(--section-padding) 1.5rem;
	background: linear-gradient(135deg, var(--gk-dark) 0%, #2d2d2d 100%);
	color: var(--gk-white);
	border-radius: var(--radius-lg);
	margin: 0 auto;
	max-width: var(--container);
}

.gk-cta__title {
	font-size: var(--text-display);
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.gk-cta__text {
	opacity: 0.9;
	margin: 0 0 1.5rem;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.gk-cta .gk-btn--gold {
	color: var(--gk-dark);
}

/* ==========================================================================
   Skip link (accessibility)
   ========================================================================== */
.gk-skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 10000;
	padding: 0.75rem 1.25rem;
	background: var(--gk-dark);
	color: var(--gk-white);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--radius);
	transition: top var(--duration);
}
.gk-skip-link:focus {
	top: 1rem;
	outline: 2px solid var(--gk-gold);
	outline-offset: 2px;
}

/* ==========================================================================
   Stats bar
   ========================================================================== */
.gk-stats {
	padding: 2.5rem 0;
	background: var(--gk-white);
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.gk-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

@media (max-width: 768px) {
	.gk-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.gk-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.gk-stats__value {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--gk-dark);
}

.gk-stats__suffix {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gk-gold-dark);
}

.gk-stats__label {
	font-size: 0.875rem;
	color: var(--gk-gray);
	font-weight: 500;
}

/* ==========================================================================
   Partners / Trusted by
   ========================================================================== */
.gk-partners {
	padding: 3rem 0;
	background: var(--gk-light);
}

.gk-partners__title {
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gk-gray);
	margin: 0 0 1.5rem;
}

.gk-partners__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.gk-partners__logo {
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
}

.gk-partners__placeholder {
	font-size: 0.75rem;
	color: var(--gk-gray);
	opacity: 0.7;
	border: 1px dashed rgba(0,0,0,0.15);
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
}

.gk-partners__note {
	text-align: center;
	font-size: 0.7rem;
	color: var(--gk-gray);
	opacity: 0.5;
	margin: 1rem 0 0;
}

/* ==========================================================================
   Testimonials / Quotes
   ========================================================================== */
.gk-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
}

@media (max-width: 900px) {
	.gk-testimonials__grid { grid-template-columns: 1fr; }
}

.gk-quote {
	margin: 0;
	padding: 2rem;
	background: var(--gk-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(0,0,0,0.06);
	border-left: 4px solid var(--gk-gold);
}

.gk-quote__text {
	font-size: 1rem;
	line-height: var(--line-relaxed);
	color: var(--gk-primary);
	margin: 0 0 1rem;
	font-style: italic;
}

.gk-quote__author {
	margin: 0;
	font-size: 0.875rem;
	color: var(--gk-gray);
}

.gk-quote__author cite {
	font-style: normal;
	font-weight: 500;
}

/* ==========================================================================
   Industries cards
   ========================================================================== */
.gk-card--industry .gk-card__title {
	font-size: 1.125rem;
}

/* Industry cards with photos (homepage) */
.industry-card {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.industry-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	transform: translateY(-3px);
}
.industry-card:hover img {
	transform: scale(1.05);
}

/* ==========================================================================
   Footer – multi-column
   ========================================================================== */
.gk-footer {
	background: var(--gk-dark);
	color: rgba(255,255,255,0.75);
	padding: 4rem 0 2rem;
	margin-top: 4rem;
}

.gk-footer .gk-container {
	max-width: var(--container);
}

.gk-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
}

@media (max-width: 900px) {
	.gk-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.gk-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.gk-footer__brand-col {
	max-width: 280px;
}

.gk-footer__brand,
.gk-footer__brand-name {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--gk-white);
}

.gk-footer__brand a {
	color: inherit;
	text-decoration: none;
}

.gk-footer__tagline {
	font-size: 0.9375rem;
	line-height: 1.5;
	opacity: 0.8;
	margin: 0.75rem 0 0;
}

.gk-footer__heading {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gk-white);
	margin: 0 0 1rem;
}

.gk-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gk-footer__list li {
	margin-bottom: 0.5rem;
}

.gk-footer__list a {
	color: rgba(255,255,255,0.75);
	text-decoration: none;
	transition: color var(--duration);
}

.gk-footer__list a:hover {
	color: var(--gk-gold);
}

.gk-footer__address {
	font-style: normal;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.gk-footer__address a {
	color: rgba(255,255,255,0.75);
	text-decoration: none;
}

.gk-footer__address a:hover {
	color: var(--gk-gold);
}

.gk-footer__bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.gk-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	opacity: 0.7;
}

.gk-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.25rem;
	margin-top: 0.75rem;
	font-size: 0.75rem;
	opacity: 0.55;
	color: #fff;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
}

.gk-footer__legal a {
	color: #fff;
	text-decoration: none;
}

.gk-footer__legal a:hover {
	opacity: 1;
	text-decoration: underline;
}

/* ==========================================================================
   Scroll-triggered fade-in (utility)
   ========================================================================== */
.gk-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.gk-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   Mobile menu (optional toggle)
   ========================================================================== */
.gk-nav-toggle {
	display: none;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	color: var(--gk-dark);
}

@media (max-width: 768px) {
	.gk-nav-toggle { display: block; }
	.gk-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		transform: none;
		background: var(--gk-white);
		flex-direction: column;
		padding: 1.5rem;
		box-shadow: var(--shadow-lg);
		display: none;
	}
	.gk-nav.is-open { display: flex; }
}

/* ==========================================================================
   Portal user — dropdown in main site header (logged-in state)
   ========================================================================== */
.gk-portal-user-dropdown {
	position: relative;
}
.gk-portal-user-trigger {
	display: flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gk-primary);
	cursor: pointer;
	white-space: nowrap;
	transition: background var(--duration), border-color var(--duration);
}
.gk-portal-user-trigger:hover {
	background: rgba(0,0,0,.04);
	border-color: rgba(0,0,0,.25);
}
.gk-portal-user-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 180px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,.14);
	border: 1px solid rgba(0,0,0,.07);
	overflow: hidden;
	z-index: 1100;
}
.gk-portal-user-menu { display: none; }
.gk-portal-user-menu.is-open { display: block; }
.gk-portal-user-menu a {
	display: block;
	padding: 11px 18px;
	font-size: 0.9rem;
	color: var(--gk-primary);
	text-decoration: none;
	transition: background var(--duration);
}
.gk-portal-user-menu a:hover {
	background: #f5f5f7;
	color: var(--gk-gold-dark);
}
.gk-portal-user-menu a:not(:last-child) {
	border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ==========================================================================
   Liquid Glass Design System (2024)
   ========================================================================== */
:root {
	--gk-yellow: #f0b429;
	--gk-yellow-hover: #e0a820;
	--gk-dark-new: #111827;
	--gk-bg: #f9fafb;
}

/* Liquid Glass Cards */
.gk-glass {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0,0,0,0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gk-glass:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* Yellow accent glass */
.gk-glass-yellow {
	background: rgba(240, 180, 41, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(240, 180, 41, 0.3);
	border-radius: 12px;
}

/* Primary button - new style */
.gk-btn-primary {
	background: #f0b429;
	color: #111827;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.2s, transform 0.15s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}
.gk-btn-primary:hover {
	background: #e0a820;
	transform: translateY(-1px);
	color: #111827;
}

/* Section spacing */
.gk-section-new {
	padding: 80px 24px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Section label */
.gk-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f0b429;
	margin-bottom: 12px;
}

/* ==========================================================================
   Calculator Sidebar Layout
   ========================================================================== */
.gk-calc-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	align-items: start;
}

/* Calculator full width in its column */
.gk-calc-layout > div:first-child {
	min-width: 0;
	width: 100%;
}
.gk-calc-layout .ghc {
	width: 100% !important;
	max-width: 100% !important;
}

/* Hide price bar in calculator, show in sidebar clone */
.gk-calc-layout > div:first-child .ghc-price-bar {
	display: none !important;
}
#sidebar-price-clone .ghc-price-bar {
	display: block !important;
	position: static !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-template-columns: 1fr !important;
	gap: 12px !important;
	margin-top: 16px;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(240,180,41,0.15);
}
#sidebar-price-clone .ghc-price-big { font-size: 26px; }
#sidebar-price-clone .ghc-price-cta { width: 100%; }

/* Calculator full width override — remove 960px max-width from plugin */
.ghc-inner {
	max-width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

/* Calculator steps 2-column layout */
.ghc .ghc-step-block {
	margin-bottom: 0;
}
.ghc-inner,
.ghc > form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	box-sizing: border-box !important;
}
.ghc .ghc-step-block:nth-child(odd) { grid-column: 1; }
.ghc .ghc-step-block:nth-child(even) { grid-column: 2; }
.ghc .ghc-price-bar { grid-column: 1 / -1; }

/* ==========================================================================
   Homepage Mobile Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.gk-calc-layout { grid-template-columns: 1fr !important; }
	.gk-calc-sidebar { display: none; }
	.gk-industries-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
	.gk-hero-new { padding: 48px 20px 36px !important; }
	.gk-hero-new .gk-hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
	.gk-hero-new h1 { font-size: 28px !important; }
	.gk-hero-new .gk-stats-grid { grid-template-columns: 1fr 1fr !important; }
	.gk-hero-new .gk-trust-bar { flex-direction: column; gap: 10px !important; }

	.process-flex { flex-direction: column !important; gap: 24px !important; }
	.process-arrow { transform: rotate(90deg); padding: 0 !important; margin: -8px 0; }

	.gk-industries-grid { grid-template-columns: 1fr !important; }
	.gk-premium-grid { grid-template-columns: 1fr !important; }
	.gk-samples-grid { grid-template-columns: 1fr !important; }
	.gk-testimonials-new { grid-template-columns: 1fr !important; }
	.gk-academy-grid { grid-template-columns: 1fr !important; }
	.gk-footer-cta-actions { flex-direction: column; }

	.gk-glass-yellow { grid-template-columns: 1fr !important; text-align: center; }
	.gk-glass-yellow .gk-btn-primary { margin-top: 20px; }

	/* Calculator single column on mobile */
	.ghc-inner, .ghc > form { grid-template-columns: 1fr !important; }
	.ghc .ghc-step-block:nth-child(odd),
	.ghc .ghc-step-block:nth-child(even) { grid-column: 1 !important; }
}

@media (max-width: 480px) {
	.gk-hero-new .gk-stats-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   BUJ Accordion (FAQ Page)
   ========================================================================== */
.buj-group { margin-bottom: 48px; scroll-margin-top: 90px; }

.buj-group-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.buj-group-icon {
	width: 48px;
	height: 48px;
	background: #f0b429;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.buj-group-title {
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.buj-item {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	margin-bottom: 8px;
	overflow: hidden;
	background: #ffffff;
	transition: box-shadow 0.2s;
}

.buj-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

.buj-item.open { border-color: #f0b429; box-shadow: 0 2px 12px rgba(240,180,41,0.15); }

.buj-question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 24px;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.buj-question:hover { color: #f0b429; }

.buj-item.open .buj-question { color: #f0b429; }

.buj-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.3s;
	color: #9ca3af;
}

.buj-item.open .buj-chevron { transform: rotate(180deg); color: #f0b429; }

.buj-answer {
	display: none;
	padding: 0 24px 24px;
	font-size: 15px;
	color: #4b5563;
	line-height: 1.7;
}

.buj-answer.visible { display: block; }

.buj-answer a { color: #f0b429; text-decoration: none; font-weight: 500; }
.buj-answer a:hover { text-decoration: underline; }

.buj-answer ul {
	margin: 12px 0;
	padding-left: 0;
	list-style: none;
}

.buj-answer ul li {
	padding: 6px 0 6px 20px;
	position: relative;
	border-bottom: 1px solid #f3f4f6;
}

.buj-answer ul li:last-child { border-bottom: none; }

.buj-answer ul li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: #f0b429;
	font-weight: 600;
}

/* Quick nav pills */
.buj-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 0;
}

.buj-nav a {
	background: rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.8);
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 13px;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.15);
	transition: background 0.2s, color 0.2s;
}

.buj-nav a:hover {
	background: #f0b429;
	color: #111827;
	border-color: #f0b429;
}

/* CTA bloki */
.buj-cta-inline {
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
	border: 1px solid rgba(240,180,41,0.3);
	border-radius: 12px;
	padding: 24px;
	margin: 32px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.buj-cta-inline p { margin: 0; font-size: 15px; color: #374151; }
.buj-cta-inline strong { color: #111827; }

@media (max-width: 768px) {
	.buj-columns { grid-template-columns: 1fr !important; }
	.buj-cta-inline { flex-direction: column; text-align: center; }
	.buj-question { font-size: 15px; padding: 16px 20px; }
	.buj-answer { padding: 0 20px 20px; }
	.buj-group-header { gap: 12px; }
	.buj-group-icon { width: 40px; height: 40px; font-size: 18px; }
	.buj-group-title { font-size: 20px; }
}

/* ==========================================================================
   Nozares / Pielietojumi content pages
   ========================================================================== */
.gk-content-page {
	padding: 60px 0;
	min-height: 60vh;
	background: var(--gk-light, #f8f9fa);
}

.gk-article {
	max-width: 800px;
	margin: 0 auto;
	background: var(--gk-white, #ffffff);
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.gk-page-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #111827;
	line-height: 1.2;
}

.gk-article-body h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2.5rem 0 1rem;
	color: #111827;
}

.gk-article-body h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 2rem 0 0.75rem;
	color: #111827;
}

.gk-article-body p {
	line-height: 1.75;
	color: #374151;
	margin-bottom: 1rem;
}

.gk-article-body strong {
	color: #111827;
}

.gk-article-body ul,
.gk-article-body ol {
	margin: 1rem 0 1.5rem 1.5rem;
	color: #374151;
	line-height: 1.75;
}

.gk-article-body li {
	margin-bottom: 0.5rem;
}

.gk-cta-block {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
	text-align: center;
}

.gk-btn {
	display: inline-block;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.gk-btn--primary {
	background: #f0b429;
	color: #111827;
}

.gk-btn--primary:hover {
	background: #d4a029;
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.gk-article {
		padding: 1.5rem;
		margin: 0 1rem;
	}
	.gk-page-title {
		font-size: 1.5rem;
	}
}

/* ===== NOZARES / PIELIETOJUMI LAPAS ===== */

.gk-page-hero {
	background: #111827;
	padding: 3rem 0 2.5rem;
	color: white;
}

.gk-breadcrumb {
	font-size: 0.85rem;
	color: #9ca3af;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.gk-breadcrumb a {
	color: #f0b429;
	text-decoration: none;
}

.gk-breadcrumb a:hover {
	text-decoration: underline;
}

.gk-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.2;
}

.gk-content-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 2.5rem;
	align-items: start;
}

.gk-sidebar {
	position: sticky;
	top: 6rem;
}

.gk-sidebar-box {
	background: white;
	padding: 1.75rem;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.gk-sidebar-title {
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 0.75rem;
}

.gk-sidebar-box p {
	font-size: 0.9rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.gk-btn--outline {
	display: inline-block;
	padding: 0.6rem 1.25rem;
	border: 2px solid #111827;
	color: #111827;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.2s;
}

.gk-btn--outline:hover {
	background: #111827;
	color: white;
}

.gk-btn--yellow {
	display: inline-block;
	padding: 0.6rem 1.25rem;
	background: #f0b429;
	color: #111827;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: opacity 0.2s;
}

.gk-btn--yellow:hover {
	opacity: 0.85;
}

.gk-cta-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 1rem;
}

@media (max-width: 900px) {
	.gk-content-grid {
		grid-template-columns: 1fr;
	}
	.gk-hero-title {
		font-size: 1.75rem;
	}
	.gk-sidebar {
		position: static;
	}
}

/* ===== PIELIETOJUMI PILL LINKS ===== */
.gk-pill-link {
	display: block;
	padding: 1rem 1.25rem;
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: #111827;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.3;
	transition: all 0.15s ease;
}
.gk-pill-link:hover {
	background: #111827;
	color: #f0b429;
	border-color: #111827;
	transform: translateY(-1px);
}

/* ===== PIELIETOJUMI APPS SECTION ===== */
.gk-apps-section {
	padding: 5rem 0;
	background: #ffffff;
}
.gk-apps-header {
	text-align: center;
	margin-bottom: 3rem;
}
.gk-apps-label {
	color: #f0b429;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.gk-apps-title {
	font-size: 2rem;
	font-weight: 700;
	color: #111827;
	margin: 0.5rem 0 1rem;
}
.gk-apps-desc {
	color: #6b7280;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Large cards grid - 3 columns */
.gk-apps-grid-large {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.gk-app-card-large {
	display: block;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.2s ease;
}
.gk-app-card-large:hover {
	border-color: #f0b429;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
.gk-app-card-img {
	height: 140px;
	background-size: cover;
	background-position: center;
	background-color: #f3f4f6;
}
.gk-app-card-content {
	padding: 1.25rem;
}
.gk-app-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 0.5rem;
}
.gk-app-card-desc {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 0.75rem;
}
.gk-app-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.gk-app-tag {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	background: #f3f4f6;
	color: #374151;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 4px;
}

/* Compact cards grid - 4 columns */
.gk-apps-grid-compact {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
}
.gk-app-card-compact {
	display: block;
	padding: 1rem 1.25rem;
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #111827;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.15s ease;
}
.gk-app-card-compact:hover {
	background: #111827;
	color: #f0b429;
	border-color: #111827;
}

/* Responsive */
@media (max-width: 1024px) {
	.gk-apps-grid-large {
		grid-template-columns: repeat(2, 1fr);
	}
	.gk-apps-grid-compact {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.gk-apps-grid-large {
		grid-template-columns: 1fr;
	}
	.gk-apps-grid-compact {
		grid-template-columns: repeat(2, 1fr);
	}
	.gk-apps-title {
		font-size: 1.5rem;
	}
}
@media (max-width: 480px) {
	.gk-apps-grid-compact {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   Goldinken Akadēmija — redesign
   ============================================ */

.gk-akademija-hero {
	background: #111827;
	color: #ffffff;
	padding: 64px 40px;
	border-radius: 12px;
	margin-bottom: 56px;
	text-align: center;
}
.gk-akademija-hero h1 {
	font-size: 2.25rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 16px;
	font-family: 'Inter', sans-serif;
}
.gk-akademija-hero p {
	font-size: 1.1rem;
	color: #d1d5db;
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.7;
}

.gk-akademija-kategorija {
	margin-bottom: 52px;
}
.gk-akademija-kategorija-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #111827;
	font-family: 'Inter', sans-serif;
	margin: 0 0 24px;
	padding-bottom: 10px;
	border-bottom: 3px solid #f0b429;
	display: inline-block;
}

.gk-akademija-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gk-akademija-karte {
	display: block;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 24px;
	text-decoration: none;
	color: #111827;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	position: relative;
}
.gk-akademija-karte:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
	transform: translateY(-2px);
	border-color: #f0b429;
	text-decoration: none;
	color: #111827;
}
.gk-akademija-karte h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
	margin: 0 0 8px;
	font-family: 'Inter', sans-serif;
}
.gk-akademija-karte p {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0 0 12px;
	line-height: 1.5;
}
.gk-akademija-karte-arrow {
	font-size: 0.875rem;
	color: #f0b429;
	font-weight: 600;
}
.gk-akademija-karte--disabled {
	background: #f9fafb;
	border-color: #e5e7eb;
	cursor: default;
	pointer-events: none;
}
.gk-akademija-karte--disabled:hover {
	box-shadow: none;
	transform: none;
	border-color: #e5e7eb;
}
.gk-akademija-karte--disabled h3 {
	color: #9ca3af;
}
.gk-akademija-karte--disabled p {
	color: #d1d5db;
}
.gk-akademija-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: #e5e7eb;
	color: #6b7280;
	border-radius: 4px;
	padding: 2px 7px;
	margin-bottom: 8px;
}

.gk-akademija-avoti {
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	padding: 24px;
	margin-top: 48px;
	font-size: 13px;
	color: #6b7280;
}
.gk-akademija-avoti h4 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
	color: #9ca3af;
}

@media (max-width: 960px) {
	.gk-akademija-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.gk-akademija-hero {
		padding: 40px 24px;
	}
	.gk-akademija-hero h1 {
		font-size: 1.75rem;
	}
}
@media (max-width: 600px) {
	.gk-akademija-grid {
		grid-template-columns: 1fr;
	}
	.gk-akademija-hero h1 {
		font-size: 1.5rem;
	}
}
