@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	line-height: 1.6;
	color: #1a202c;
	overflow-x: hidden;
	background: #f8fafc;
}

button,
input,
textarea {
	font: inherit;
}

button {
	border: 0;
}

img {
	max-width: 100%;
	display: block;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #ffffff;
	padding: 1.2rem 5%;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	background: none !important;
	-webkit-background-clip: initial !important;
	-webkit-text-fill-color: initial !important;
	background-clip: initial !important;
	color: #334155 !important;
	font-size: initial;
	font-weight: initial;
}

.logo:hover {
	transform: scale(1.03);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: #1a202c;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
	white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
	color: #475569;
}

.nav-links a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	background: transparent;
	gap: 5px;
}

.mobile-menu span {
	width: 28px;
	height: 3px;
	background: #475569;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hero */
.hero {
	min-height: 82vh;
	background: linear-gradient(135deg, #263549 0%, #44566d 55%, #6b7b90 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	position: relative;
	overflow: hidden;
	padding: 7.5rem 5% 4.5rem;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 64px 64px;
	animation: gridMove 24s linear infinite;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.12), transparent 34%),
		linear-gradient(90deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.03));
	pointer-events: none;
}

@keyframes gridMove {
	100% {
		transform: translate(64px, 64px);
	}
}

.hero-inner {
	width: min(1200px, 100%);
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 720px;
	text-align: left;
	transform: translateY(30px);
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	position: relative;
}

@keyframes fadeInUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 0.9rem;
	margin-bottom: 1.4rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.9);
	font-weight: 700;
	font-size: 0.9rem;
}

.hero h1 {
	font-size: clamp(2.3rem, 4.6vw, 4.1rem);
	font-weight: 800;
	margin-bottom: 1.4rem;
	line-height: 1.08;
	letter-spacing: -1.7px;
}

.hero p {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	margin-bottom: 2.3rem;
	opacity: 0.92;
	font-weight: 300;
	max-width: 680px;
}

.hero-content h1,
.hero-content p {
	transition: opacity 0.35s ease-in-out;
}

.text-fade-out {
	opacity: 0;
}

.hero-buttons {
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	flex-wrap: wrap;
}

.cta-button {
	display: inline-block;
	padding: 0.95rem 2rem;
	background: rgba(255, 255, 255, 0.97);
	color: #1e293b;
	text-decoration: none;
	font-weight: 800;
	border-radius: 999px;
	transition: all 0.35s ease;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.22);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-button-secondary {
	background: rgba(255, 255, 255, 0.13);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.28);
}

.cta-button:hover,
.audience-switch-btn.active {
	transform: translateY(-3px);
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
	background: #ffffff;
	color: #1e293b;
}

.hero-visual {
	position: relative;
	justify-self: center;
	width: min(390px, 100%);
	animation: fadeInUp 1s ease 0.15s forwards;
	opacity: 0;
	transform: translateY(30px);
}

.hero-photo-card {
	position: relative;
	border-radius: 34px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.24);
	box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
	padding: 0.8rem;
	backdrop-filter: blur(12px);
}

.hero-photo-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	border-radius: 26px;
}

.hero-note {
	position: absolute;
	left: -2rem;
	bottom: 1.2rem;
	max-width: 285px;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	color: #334155;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
	font-size: 0.92rem;
	line-height: 1.45;
}

.hero-note strong {
	color: #1e293b;
}

/* Decorative shapes */
.geometric-shapes {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.geo-shape {
	position: absolute;
	opacity: 0.15;
}

.geo-shape:nth-child(1) {
	top: 20%;
	left: 15%;
	width: 120px;
	height: 120px;
	background: linear-gradient(45deg, #fff, transparent);
	clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	animation: float 12s ease-in-out infinite;
}

.geo-shape:nth-child(2) {
	top: 15%;
	right: 20%;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #fff, transparent);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	animation: float 10s ease-in-out infinite reverse;
}

.geo-shape:nth-child(3) {
	top: 60%;
	left: 10%;
	width: 80px;
	height: 80px;
	background: linear-gradient(90deg, #fff, transparent);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	animation: float 8s ease-in-out infinite;
}

.geo-shape:nth-child(4) {
	top: 70%;
	right: 15%;
	width: 90px;
	height: 90px;
	background: linear-gradient(180deg, #fff, transparent);
	clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
	animation: float 14s ease-in-out infinite;
}

.geo-shape:nth-child(5) {
	top: 35%;
	left: 50%;
	width: 110px;
	height: 110px;
	background: linear-gradient(270deg, #fff, transparent);
	clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
	animation: float 9s ease-in-out infinite;
}

@keyframes float {
	50% {
		transform: translateY(-30px) rotate(180deg);
	}
}

/* Section */
.section {
	padding: 7rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: clamp(2.3rem, 5vw, 3.4rem);
	font-weight: 800;
	margin-bottom: 2.2rem;
	color: #1e293b;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	letter-spacing: -1px;
}

.section-title.animate {
	opacity: 1;
	transform: translateY(0);
}

.section-intro {
	max-width: 760px;
	margin: 0 auto 3rem;
	text-align: center;
	color: #64748b;
	font-size: 1.15rem;
}

/* Services */
.services {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
	position: relative;
}

.services::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diagonals" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="rgba(71,85,105,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonals)"/></svg>');
}

.services-container {
	position: relative;
	z-index: 2;
}

.services-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	margin-top: 3rem;
	align-items: start;
}

.services-content {
	background: rgba(255, 255, 255, 0.85);
	border-radius: 25px;
	padding: 2.5rem;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(71, 85, 105, 0.1);
	min-height: 430px;
}

.service-details {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	display: none;
}

.service-details.active {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.service-details h3 {
	font-size: 1.9rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #1e293b;
}

.service-subtitle {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.service-details p {
	color: #64748b;
	line-height: 1.7;
	font-size: 1rem;
	margin-bottom: 1.3rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(71, 85, 105, 0.08);
}

.service-features li:last-child {
	border-bottom: none;
}

.feature-check {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #475569, #64748b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.services-tabs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-tab {
	width: 100%;
	text-align: left;
	background: rgba(255, 255, 255, 0.75);
	border: 2px solid rgba(71, 85, 105, 0.1);
	border-radius: 18px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: inherit;
}

.service-tab:hover,
.service-tab.active {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(71, 85, 105, 0.3);
	transform: translateX(8px);
	box-shadow: 0 10px 30px rgba(71, 85, 105, 0.15);
}

.service-tab.active {
	background: rgba(71, 85, 105, 0.1);
	border-color: rgba(71, 85, 105, 0.4);
}

.service-tab::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.service-tab.active::before {
	width: 4px;
}

.tab-icon {
	font-size: 1.8rem;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(71, 85, 105, 0.1), rgba(100, 116, 139, 0.1));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.service-tab h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.3rem;
	position: relative;
	z-index: 2;
}

.service-tab p {
	color: #64748b;
	font-size: 0.85rem;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.service-tab:hover .tab-icon,
.service-tab.active .tab-icon {
	background: linear-gradient(135deg, #475569, #64748b);
	color: white;
}

/* About */
.about-section {
	background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 100px),
		repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 100px);
}

.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-content::before {
	content: "";
	position: absolute;
	left: -2rem;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, #94a3b8, transparent);
	border-radius: 2px;
}

.about-content {
	position: relative;
}

.about-content h2 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	margin-bottom: 2rem;
	color: white;
	letter-spacing: -1px;
	line-height: 1.2;
}

.about-content .highlight {
	color: #cbd5e1;
	font-weight: 600;
	font-size: 1.25rem;
	margin-bottom: 1.8rem;
}

.about-content p {
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2.5rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(5px);
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #64748b, #94a3b8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.feature-text {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	font-size: 0.95rem;
}

.about-visual {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.about-image {
	position: relative;
	max-width: 430px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.stat {
	text-align: center;
	padding: 1.3rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.stat:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.15);
}

.stat-number {
	font-size: 1.7rem;
	font-weight: 900;
	color: #cbd5e1;
	display: block;
}

.stat-label {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	margin-top: 0.5rem;
}

/* References */
.references {
	background: #f8fafc;
	position: relative;
}

.reference-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.reference-card {
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(71, 85, 105, 0.08);
	border-radius: 22px;
	padding: 2rem;
	box-shadow: 0 12px 35px rgba(71, 85, 105, 0.08);
	transition: all 0.35s ease;
}

.reference-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 45px rgba(71, 85, 105, 0.15);
	border-color: rgba(71, 85, 105, 0.2);
}

.reference-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(71, 85, 105, 0.1), rgba(100, 116, 139, 0.14));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.reference-card h3 {
	color: #1e293b;
	font-size: 1.15rem;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.reference-card p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.65;
}

/* Contact */
.contact {
	background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 80px 80px;
	animation: contactGridMove 30s linear infinite;
}

@keyframes contactGridMove {
	100% {
		transform: translate(80px, 80px);
	}
}

.contact .section-title {
	color: white;
}

.contact-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contact p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	text-align: center;
}

.contact-form {
	display: grid;
	gap: 2rem;
	margin-top: 3rem;
}

.form-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.contact-form input,
.contact-form textarea {
	padding: 1.35rem;
	border: none;
	border-radius: 20px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.2);
	border-color: #94a3b8;
	box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.2);
}

.contact-form textarea {
	grid-column: 1 / -1;
	resize: vertical;
	min-height: 150px;
}


.form-note {
	grid-column: 1 / -1;
	margin: -0.5rem 0 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
	text-align: center;
}

.form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.submit-btn {
	background: linear-gradient(135deg, #64748b, #475569);
	color: white;
	padding: 1.4rem 3rem;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s ease;
	justify-self: center;
	position: relative;
	overflow: hidden;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(100, 116, 139, 0.4);
}

/* Footer */
.footer {
	background: #0f172a;
	color: white;
	padding: 3rem 5% 2rem;
	text-align: center;
	border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 400;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #94a3b8;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.fade-in.animate {
	opacity: 1;
	transform: translateY(0);
}

.loading {
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	50% {
		opacity: 0.7;
	}
}

/* Responsive */
@media (max-width: 1100px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.hero-content {
		max-width: 820px;
		margin: 0 auto;
		text-align: center;
	}

	.hero p {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-visual {
		width: min(330px, 100%);
	}

	.hero-note {
		left: 50%;
		transform: translateX(-50%);
		bottom: -1.4rem;
		width: min(310px, 92%);
	}

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

	.services-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-tabs {
		order: -1;
	}
}

@media (max-width: 940px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(248, 250, 252, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		align-items: stretch;
		padding: 2rem 5%;
		box-shadow: 0 10px 30px rgba(71, 85, 105, 0.1);
		border-radius: 0 0 20px 20px;
		gap: 1.2rem;
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu {
		display: flex;
	}

	.about {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 4rem;
	}

	.about-content::before {
		display: none;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.feature-item {
		justify-content: center;
	}

	.form-group {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 5rem 5%;
	}

	.service-tab {
		transform: none;
	}

	.service-tab:hover,
	.service-tab.active {
		transform: translateY(-2px);
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}
}

@media (max-width: 640px) {
	.hero {
		min-height: auto;
		padding: 6.5rem 5% 4rem;
	}

	.hero h1 {
		font-size: clamp(2.05rem, 10vw, 3rem);
		letter-spacing: -1px;
	}

	.hero-visual {
		display: none;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-button {
		width: 100%;
		max-width: 320px;
	}

	.services-content {
		padding: 1.5rem;
	}

	.service-tab {
		flex-direction: column;
		text-align: center;
	}

	.reference-grid,
	.stats {
		grid-template-columns: 1fr;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}


/* Podstrani */
.page-hero {
    min-height: 54vh;
    padding-top: 6rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 55%, #64748b 100%);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 70px 70px;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: left;
}

.page-kicker {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 700;
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.page-hero p {
    max-width: 780px;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: rgba(255,255,255,.9);
    margin-bottom: 2rem;
}

.page-buttons {
    justify-content: flex-start;
}

.page-content {
    background: #f8fafc;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.content-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(71,85,105,.12);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 16px 35px rgba(71,85,105,.08);
}

.content-card h2 {
    color: #1e293b;
    font-size: 1.35rem;
    margin-bottom: .9rem;
}

.content-card p {
    color: #64748b;
    line-height: 1.75;
}

.related-services {
    padding-top: 3rem;
}

.reference-card {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 760px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .page-buttons {
        justify-content: center;
    }
    .page-hero-inner {
        text-align: center;
    }
}


.form-status {
	min-height: 1.5rem;
	margin-top: -0.8rem;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 600;
}

.form-status.success {
	color: #bbf7d0;
}

.form-status.error {
	color: #fecaca;
}

.submit-btn:disabled {
	cursor: not-allowed;
	opacity: 0.75;
	transform: none;
}


/* Popravki podstrani in hitrejši občutek delovanja */
.related-services .section-title {
    margin-bottom: 2rem;
}
.related-services .reference-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}
.related-services .reference-card {
    display: block;
    text-decoration: none;
    color: inherit;
    min-height: 100%;
}
.form-status.success { color: #d1fae5; }
.form-status.error { color: #fecaca; }
@media (max-width: 900px) {
    .related-services .reference-grid { grid-template-columns: 1fr; }
}


/* Legal pages */
.legal-grid {
    grid-template-columns: 1fr;
    max-width: 980px;
    margin: 0 auto;
}

.legal-card p {
    margin-bottom: 1rem;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

/* AI landing page */
.ai-landing-hero {
    min-height: 68vh;
}

.ai-intro-grid {
    align-items: stretch;
}

.ai-lead-card {
    grid-column: span 1;
}

.ai-highlight-card {
    background: linear-gradient(135deg, rgba(30,41,59,.96), rgba(71,85,105,.94));
    color: white;
}

.ai-highlight-card h2,
.ai-highlight-card .content-list li {
    color: white;
}

.ai-highlight-card .content-list li {
    border-bottom-color: rgba(255,255,255,.12);
}

.ai-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-process-section .section-title,
.ai-use-cases .section-title {
    margin-bottom: 2rem;
}

.ai-offer-section {
    margin-top: 0;
}

.ai-mini-stats {
    width: 100%;
}

.ai-final-cta {
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.ai-cta-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ai-cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.ai-submit-link {
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

@media (max-width: 940px) {
    .ai-card-grid {
        grid-template-columns: 1fr;
    }
}


/* Modern references section */
.references-modern .section-intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.reference-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}
.reference-stat-card {
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(71, 85, 105, 0.08);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(71, 85, 105, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reference-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(71, 85, 105, 0.14);
}
.reference-stat-number {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -1px;
}
.reference-stat-label {
    display: block;
    margin-top: .8rem;
    color: #64748b;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}
.reference-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.reference-proof-block {
    background: #ffffff;
    border: 2px solid rgba(71, 85, 105, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(71, 85, 105, 0.08);
}
.reference-proof-block h3 {
    color: #1e293b;
    font-size: 1.35rem;
    margin-bottom: .9rem;
}
.reference-proof-block p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}
.reference-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}
.reference-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(71, 85, 105, 0.08);
    color: #475569;
    font-size: .85rem;
    font-weight: 700;
}
.reference-tags.large span {
    min-height: 40px;
    padding: .55rem 1rem;
}
.reference-cta {
    max-width: 820px;
    margin: 2rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #475569);
    color: white;
    border-radius: 26px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(30, 41, 59, 0.2);
}
.reference-cta p {
    color: rgba(255, 255, 255, .88);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}
.reference-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.4rem;
    border-radius: 999px;
    background: #ffffff;
    color: #1e293b;
    text-decoration: none;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease;
}
.reference-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.reference-link-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.reference-link-list li {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(71, 85, 105, 0.1);
    color: #64748b;
    line-height: 1.6;
}
.reference-link-list li:last-child { border-bottom: none; }
.reference-link-list a {
    color: #475569;
    font-weight: 800;
    text-decoration: none;
}
.reference-link-list a:hover { text-decoration: underline; }
.reference-stats-page { margin-top: 0; }
@media (max-width: 1000px) {
    .reference-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .reference-proof { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .reference-stats { grid-template-columns: 1fr; }
    .reference-stat-card, .reference-proof-block, .reference-cta { padding: 1.5rem; }
}

/* Methods section - Hipoteze in metodologija */
.methods-section {
    background: #f8fafc;
    padding-top: 3rem;
}

.methods-section .section-title {
    margin-bottom: 1.2rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.method-card {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(71,85,105,.12);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 16px 35px rgba(71,85,105,.08);
}

.method-card h3 {
    color: #1e293b;
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
}

.method-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-card li {
    position: relative;
    padding: .65rem 0 .65rem 2rem;
    color: #64748b;
    border-bottom: 1px solid rgba(71,85,105,.08);
    line-height: 1.55;
}

.method-card li:last-child {
    border-bottom: none;
}

.method-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .65rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #475569, #64748b);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
}

.related-services .reference-card.active {
    border-color: rgba(71,85,105,.25);
    background: rgba(71,85,105,.08);
}

@media (max-width: 760px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    .method-card {
        padding: 1.6rem;
    }
}


/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: min(1040px, calc(100% - 2rem));
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.2rem 1.3rem;
    background: rgba(15, 23, 42, 0.96);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(16px);
}
.cookie-banner-text {
    display: grid;
    gap: .25rem;
    line-height: 1.45;
}
.cookie-banner-text strong {
    font-size: 1rem;
}
.cookie-banner-text span {
    color: rgba(255, 255, 255, .82);
    font-size: .92rem;
}
.cookie-banner-text a {
    color: #cbd5e1;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
}
.cookie-banner-text a:hover {
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: .8rem 1.1rem;
    border-radius: 999px;
    background: #ffffff;
    color: #1e293b;
    font-weight: 800;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.cookie-btn-secondary {
    background: rgba(255,255,255,.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.2);
}
@media (max-width: 760px) {
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        bottom: 1rem;
    }
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column-reverse;
    }
    .cookie-btn {
        width: 100%;
    }
}


/* Contact details */
.hero-contact {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    color: rgba(255,255,255,.88);
    font-weight: 700;
}
.hero-contact a {
    color: rgba(255,255,255,.95);
    text-decoration: none;
}
.hero-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem auto 2.5rem;
}
.contact-details a,
.ai-direct-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.15rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.2);
    transition: transform .25s ease, background .25s ease;
}
.contact-details a:hover,
.ai-direct-contact a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.18);
}

.ai-direct-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.4rem 0 .5rem;
}
.ai-direct-contact a {
    background: rgba(71, 85, 105, 0.08);
    color: #1e293b;
    border-color: rgba(71,85,105,.12);
}
.ai-direct-contact a:hover {
    background: rgba(71, 85, 105, 0.14);
}

.footer-content-enhanced {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
}
.footer-links-left {
    justify-content: flex-start;
    flex-wrap: wrap;
}
.footer-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-contact a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;
}
.footer-contact a:hover {
    color: #ffffff;
}
.footer-content-enhanced .footer-copyright {
    text-align: right;
}

.legal-card a {
    color: #475569;
    font-weight: 700;
}

@media (max-width: 940px) {
    .footer-content-enhanced {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links-left,
    .footer-contact {
        justify-content: center;
    }
    .footer-content-enhanced .footer-copyright {
        text-align: center;
    }
    .hero-contact {
        justify-content: center;
    }
}


/* Blog and article pages */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(71,85,105,.12);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 16px 35px rgba(71,85,105,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(71,85,105,.14);
}
.blog-card h2 { color: #1e293b; font-size: 1.35rem; margin-bottom: .8rem; }
.blog-card p { color: #64748b; line-height: 1.75; }
.article-wrap { max-width: 900px; }
.article-card h2 { margin-top: 2rem; }
.article-card h2:first-child { margin-top: 0; }
.article-card ul { margin: 1rem 0 1.5rem 1.4rem; color: #64748b; line-height: 1.75; }
.article-card li { margin-bottom: .55rem; }
.article-note {
    margin: 2rem 0;
    padding: 1.3rem 1.5rem;
    border-radius: 18px;
    background: rgba(71,85,105,.08);
    color: #475569;
    font-weight: 600;
}
.article-nav { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Advanced cookie settings */
.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}
.cookie-modal {
    width: min(640px, 100%);
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}
.cookie-modal h2 { color: #1e293b; margin-bottom: .8rem; }
.cookie-modal p { color: #64748b; line-height: 1.65; margin-bottom: 1.3rem; }
.cookie-setting-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    border: 1px solid rgba(71,85,105,.12);
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: .9rem;
}
.cookie-setting-row strong { color: #1e293b; display:block; }
.cookie-setting-row span { color: #64748b; font-size: .92rem; display:block; }
.cookie-badge {
    white-space: nowrap;
    padding: .4rem .7rem;
    border-radius: 999px;
    background: rgba(71,85,105,.08);
    color: #475569 !important;
    font-weight: 700;
}
.cookie-switch { position: relative; display: inline-flex; width: 54px; height: 30px; flex-shrink:0; }
.cookie-switch input { display:none; }
.cookie-switch span {
    position:absolute; inset:0; cursor:pointer; border-radius:999px;
    background:#cbd5e1; transition:.25s ease;
}
.cookie-switch span::before {
    content:""; position:absolute; width:24px; height:24px; left:3px; top:3px;
    border-radius:50%; background:#fff; transition:.25s ease; box-shadow:0 2px 8px rgba(15,23,42,.2);
}
.cookie-switch input:checked + span { background:#475569; }
.cookie-switch input:checked + span::before { transform: translateX(24px); }
.cookie-modal-actions { display:flex; gap:.75rem; justify-content:flex-end; flex-wrap:wrap; margin-top:1.2rem; }
@media (max-width: 760px) {
    .blog-grid { grid-template-columns: 1fr; }
    .cookie-setting-row { flex-direction: column; align-items: flex-start; }
    .cookie-modal-actions { justify-content: stretch; }
}


/* Three-column professional footer */
.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 4rem 5% 1.8rem;
    text-align: left;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
    gap: 3rem;
    align-items: start;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
    margin: 0 0 1.2rem;
    max-width: 430px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-column a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-contact-list {
    display: grid;
    gap: 0.45rem;
}

.footer-contact-list a,
.footer-contact-list span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
    font-size: 0.92rem;
}

@media (max-width: 940px) {
    .footer {
        padding: 3.5rem 5% 1.6rem;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .footer-column p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column ul,
    .footer-contact-list {
        justify-items: center;
    }
}

/* FINAL VISUAL FIXES: contact links, footer and mobile cookie window */
.hero-contact,
.contact-details,
.footer-contact-list {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.hero-contact a,
.contact-details a,
.footer-contact-list a,
.footer-column a {
    color: inherit !important;
    text-decoration: none !important;
}

.hero-contact a,
.contact-details a {
    color: rgba(255, 255, 255, 0.96) !important;
    font-weight: 700;
}

.hero-contact a:hover,
.contact-details a:hover,
.footer-contact-list a:hover,
.footer-column a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.contact-details a {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.75rem 1.05rem;
}

/* Cleaner footer */
.footer {
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 4rem 5% 1.8rem !important;
    text-align: left !important;
    border-top: 1px solid rgba(148, 163, 184, 0.18) !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr) !important;
    gap: 3rem !important;
    align-items: start !important;
}

.footer-column h4 {
    color: #ffffff !important;
    font-size: 1.08rem !important;
    font-weight: 800 !important;
    margin: 0 0 1rem !important;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.76) !important;
    line-height: 1.75 !important;
    margin: 0 0 1.2rem !important;
    max-width: 430px !important;
}

.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    gap: 0.55rem !important;
}

.footer-column li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-column a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.6 !important;
}

.footer-contact-list {
    display: grid !important;
    gap: 0.45rem !important;
}

.footer-contact-list a,
.footer-contact-list span {
    width: fit-content !important;
}

.footer-bottom {
    max-width: 1200px !important;
    margin: 2.5rem auto 0 !important;
    padding-top: 1.25rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.58) !important;
    text-align: center !important;
    font-size: 0.92rem !important;
}

/* Cookie banner - styled and always usable on mobile */
.cookie-banner {
    position: fixed !important;
    left: 50% !important;
    bottom: 1.25rem !important;
    transform: translateX(-50%) !important;
    width: min(1040px, calc(100% - 2rem)) !important;
    z-index: 5000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.25rem !important;
    padding: 1.15rem 1.25rem !important;
    background: rgba(15, 23, 42, 0.97) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32) !important;
}

.cookie-banner a {
    color: #cbd5e1 !important;
    font-weight: 700 !important;
}

.cookie-btn {
    padding: 0.8rem 1.1rem !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #1e293b !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.cookie-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 6000 !important;
    background: rgba(15, 23, 42, 0.55) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
}

.cookie-modal {
    width: min(640px, 100%) !important;
    max-height: min(88vh, 760px) !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35) !important;
}

.cookie-modal-actions {
    position: sticky !important;
    bottom: -2rem !important;
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: flex-end !important;
    flex-wrap: wrap !important;
    margin: 1.2rem -2rem -2rem !important;
    padding: 1rem 2rem 1.2rem !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.86), #ffffff 35%) !important;
    border-top: 1px solid rgba(71, 85, 105, 0.12) !important;
}

@media (max-width: 760px) {
    .hero-contact {
        justify-content: center !important;
        gap: 0.45rem !important;
        font-size: 0.95rem !important;
    }

    .contact-details {
        flex-direction: column !important;
        align-items: center !important;
    }

    .contact-details a {
        width: min(100%, 320px) !important;
    }

    .footer {
        padding: 3.5rem 5% 1.6rem !important;
        text-align: center !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 2.2rem !important;
    }

    .footer-column p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-column ul,
    .footer-contact-list {
        justify-items: center !important;
    }

    .footer-contact-list a,
    .footer-contact-list span {
        width: auto !important;
    }

    .cookie-banner {
        left: 0.75rem !important;
        right: 0.75rem !important;
        bottom: 0.75rem !important;
        transform: none !important;
        width: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        border-radius: 18px !important;
        padding: 1rem !important;
    }

    .cookie-banner-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.65rem !important;
    }

    .cookie-btn {
        width: 100% !important;
    }

    .cookie-modal-backdrop {
        align-items: stretch !important;
        padding: 0 !important;
    }

    .cookie-modal {
        width: 100% !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        padding: 1.25rem !important;
        overflow-y: auto !important;
    }

    .cookie-modal-actions {
        margin: 1rem -1.25rem -1.25rem !important;
        padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom)) !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        position: sticky !important;
        bottom: -1.25rem !important;
    }
}
.logo-text{font-size:1.4rem;}
}


/* Modern logo - final unified version */
.navbar .logo {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	text-decoration: none !important;
	background: none !important;
	-webkit-background-clip: initial !important;
	background-clip: initial !important;
	-webkit-text-fill-color: initial !important;
	color: #334155 !important;
	font-size: initial !important;
	font-weight: initial !important;
	line-height: 1 !important;
}

.navbar .logo:hover {
	transform: scale(1.03);
}

.navbar .logo-image {
	width: 42px !important;
	height: 42px !important;
	max-width: 42px !important;
	max-height: 42px !important;
	object-fit: contain !important;
	display: block !important;
	flex: 0 0 42px !important;
}

.navbar .logo-text {
	font-size: 1.55rem !important;
	font-weight: 800 !important;
	color: #334155 !important;
	letter-spacing: -0.5px !important;
	line-height: 1 !important;
	-webkit-text-fill-color: #334155 !important;
	white-space: nowrap !important;
}

@media (max-width: 640px) {
	.navbar .logo-image {
		width: 36px !important;
		height: 36px !important;
		max-width: 36px !important;
		max-height: 36px !important;
		flex-basis: 36px !important;
	}

	.navbar .logo-text {
		font-size: 1.35rem !important;
	}
}
