/* =============================================
   ロジカ思考アカデミー — tall-gate-909.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

@font-face {
	font-family: 'century-gotic';
	font-style: normal;
	font-weight: 400;
	src: local('Century Gothic'), local('CenturyGothic');
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--gold: #E69420;
	--gold-dark: #c57c15;
	--gold-alt: #b06f22;
	--gold-footer: #a96d30;
	--bg-black: #000000;
	--bg-dark: #202020;
	--bg-darker: #161616;
	--bg-sticky: #212121;
	--text-body: #545454;
	--text-light: #d8d8d8;
	--white: #ffffff;
	--border-light: rgba(84,84,84,0.1);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-body);
	background-color: var(--bg-black);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'century-gotic', 'Century Gothic', Arial, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: #1e1e1e;
}

a {
	color: var(--gold-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--gold);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-4 { width: 33.333%; padding: 0 15px; }
.col-3 { width: 25%; padding: 0 15px; }
.col-8 { width: 66.666%; padding: 0 15px; }

/* ===== TOP BAR ===== */
#site-topbar {
	background: var(--gold-dark);
	color: #fff;
	font-size: 13px;
	padding: 8px 0;
}

#site-topbar .topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

#site-topbar a {
	color: #fff;
}

#site-topbar .topbar-contact span {
	margin-right: 20px;
}

#site-topbar .topbar-contact i {
	margin-right: 6px;
}

/* ===== HEADER / NAV ===== */
#masthead {
	background-color: #202020 !important;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.site-header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 20px;
}

.site-logo a {
	display: flex;
	align-items: center;
}

.site-logo svg {
	height: 44px;
	width: auto;
}

/* NAV */
.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 8px;
}

.main-navigation ul li {
	position: relative;
}

.main-navigation ul li a {
	color: #fff;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 10px 16px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.2s;
	text-shadow:
		1px 1px 2px rgba(0,0,0,0.9),
		0 0 8px rgba(0,0,0,0.8);
}

.main-navigation ul li a:hover,
.main-navigation ul li.active a {
	color: var(--gold);
}

.nav-cta a {
	background: var(--gold) !important;
	color: #000 !important;
	border-radius: 2px;
	padding: 10px 22px !important;
}

.nav-cta a:hover {
	background: var(--gold-dark) !important;
	color: #000 !important;
}

/* Mobile hamburger */
.menu-toggle {
	display: none;
	background: none;
	border: 2px solid var(--gold);
	padding: 8px 12px;
	cursor: pointer;
	color: var(--gold);
	font-size: 20px;
}

.mobile-nav {
	display: none;
	background: #1a1a1a;
	padding: 16px 20px;
}

.mobile-nav.open {
	display: block;
}

.mobile-nav ul li a {
	color: #fff;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	font-size: 15px;
}

.mobile-nav ul li a:hover {
	color: var(--gold);
}

/* ===== HERO ===== */
#hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: #000;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('../img/hero-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		rgba(12,12,12,0.82) 0%,
		rgba(12,12,12,0.45) 50%,
		rgba(12,12,12,0.9) 100%
	);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 40px 20px;
}

.hero-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
	font-family: 'century-gotic', Arial, sans-serif;
}

.hero-content h1 {
	font-size: 54px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 20px;
	text-shadow:
		3px 3px 8px #000,
		0 0 40px rgba(0,0,0,0.95);
}

.hero-content p {
	font-size: 20px;
	color: rgba(255,255,255,0.88);
	margin-bottom: 36px;
	line-height: 1.6;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 36px;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.25s ease;
	border: 2px solid transparent;
}

.btn-gold {
	background: var(--gold);
	color: #000;
	border-color: var(--gold);
}

.btn-gold:hover {
	background: transparent;
	color: var(--gold);
	border-color: var(--gold);
}

.btn-outline {
	background: transparent;
	color: var(--gold);
	border-color: var(--gold-alt);
}

.btn-outline:hover {
	background: var(--gold);
	color: #000;
	border-color: var(--gold);
}

.btn-dark {
	background: #000;
	color: #fff;
	border-color: #000;
	letter-spacing: 4px;
}

.btn-dark:hover {
	background: var(--gold-dark);
	border-color: var(--gold-dark);
	color: #000;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== INTRO SECTION ===== */
#intro {
	background: var(--bg-dark);
	padding: 80px 0;
}

.intro-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 60px;
	align-items: center;
}

.intro-text {
	flex: 1 1 55%;
}

.intro-text .section-label {
	display: block;
	font-size: 12px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.intro-text h2 {
	font-size: 38px;
	color: #fff;
	margin-bottom: 20px;
}

.intro-text p {
	color: rgba(255,255,255,0.72);
	font-size: 16px;
	margin-bottom: 14px;
	line-height: 1.75;
}

.intro-text .btn {
	margin-top: 12px;
}

.intro-image {
	flex: 1 1 40%;
}

.intro-image img {
	width: 100%;
	height: 440px;
	object-fit: cover;
}

/* ===== CARDS SECTION (3-col links) ===== */
#courses-cards {
	background: #000;
	padding: 0;
}

.cards-row {
	display: flex;
	flex-wrap: wrap;
}

.card-link-item {
	flex: 1 1 33.333%;
	position: relative;
	height: 300px;
	overflow: hidden;
	cursor: pointer;
}

.card-link-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.card-link-item:hover img {
	transform: scale(1.05);
}

.card-link-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.52);
	transition: background 0.3s;
}

.card-link-item:hover .card-link-overlay {
	background: rgba(230,148,32,0.35);
}

.card-link-label {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	padding: 20px;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

/* ===== COURSES SECTION ===== */
#courses {
	background: var(--bg-dark);
	padding: 80px 0;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
	padding: 0 20px;
}

.section-label {
	display: block;
	font-size: 12px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}

.section-header h2 {
	font-size: 36px;
	color: #fff;
	margin-bottom: 14px;
}

.section-header p {
	color: rgba(255,255,255,0.65);
	font-size: 16px;
	line-height: 1.7;
}

.courses-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	justify-content: center;
}

.course-card {
	background: #1a1a1a;
	border: 1px solid rgba(84,84,84,0.15);
	flex: 1 1 300px;
	max-width: 360px;
	transition: border-color 0.3s, transform 0.3s;
}

.course-card:hover {
	border-color: var(--gold-alt);
	transform: translateY(-4px);
}

.course-card-body {
	padding: 28px 26px;
}

.course-icon {
	font-size: 32px;
	color: var(--gold);
	margin-bottom: 14px;
}

.course-card h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 10px;
}

.course-card p {
	color: rgba(255,255,255,0.62);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.course-price {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var(--gold);
	font-family: 'century-gotic', Arial, sans-serif;
	margin-bottom: 16px;
}

.course-price span {
	font-size: 14px;
	color: rgba(255,255,255,0.45);
	font-weight: 400;
}

/* ===== WHY US SECTION ===== */
#why-us {
	position: relative;
	padding: 80px 0;
	background: #000;
	overflow: hidden;
}

.why-bg {
	position: absolute;
	inset: 0;
	background-image: url('../img/course-banner.webp');
	background-size: cover;
	background-position: center;
	opacity: 0.12;
}

.why-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.why-inner .section-header {
	text-align: left;
	max-width: 600px;
	margin-bottom: 50px;
}

.why-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-item {
	flex: 1 1 220px;
	background: rgba(32,32,32,0.9);
	border-left: 3px solid var(--gold-alt);
	padding: 24px 22px;
}

.why-item i {
	font-size: 28px;
	color: var(--gold);
	margin-bottom: 12px;
}

.why-item h4 {
	font-size: 17px;
	color: #fff;
	margin-bottom: 8px;
}

.why-item p {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
	background: var(--bg-dark);
	padding: 80px 0;
}

.testimonials-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.testimonial-card {
	flex: 1 1 280px;
	background: #1a1a1a;
	border: 1px solid rgba(84,84,84,0.12);
	padding: 28px 24px;
	position: relative;
}

.testimonial-card::before {
	content: '\201C';
	font-family: Georgia, serif;
	font-size: 72px;
	color: var(--gold);
	line-height: 1;
	position: absolute;
	top: 10px;
	left: 18px;
	opacity: 0.4;
}

.testimonial-card p {
	color: rgba(255,255,255,0.72);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 18px;
	padding-top: 28px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-author-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gold-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
}

.testimonial-author-name {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.testimonial-author-role {
	font-size: 12px;
	color: rgba(255,255,255,0.45);
}

.stars {
	color: var(--gold);
	font-size: 13px;
	margin-bottom: 6px;
}

/* ===== CTA SECTION ===== */
#cta {
	position: relative;
	padding: 100px 0;
	text-align: center;
	background: #000;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	inset: 0;
	background-image: url('../img/cta-bg.webp');
	background-size: cover;
	background-position: center;
	opacity: 0.18;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
}

.cta-inner {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-inner h2 {
	font-size: 42px;
	color: #fff;
	margin-bottom: 16px;
}

.cta-inner p {
	color: rgba(255,255,255,0.75);
	font-size: 18px;
	margin-bottom: 36px;
	line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
#faq {
	background: var(--bg-darker);
	padding: 80px 0;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq-item {
	border-bottom: 1px solid rgba(84,84,84,0.15);
	padding: 0;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: #fff;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 17px;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.faq-question i {
	color: var(--gold);
	font-size: 14px;
	flex-shrink: 0;
	transition: transform 0.3s;
}

.faq-item.open .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	display: none;
	color: rgba(255,255,255,0.65);
	font-size: 15px;
	line-height: 1.75;
	padding-bottom: 20px;
}

.faq-item.open .faq-answer {
	display: block;
}

/* ===== CONTACT SECTION (mini) ===== */
#contact-mini {
	background: var(--bg-dark);
	padding: 80px 0;
}

.contact-mini-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.contact-mini-info {
	flex: 1 1 40%;
}

.contact-mini-info h2 {
	font-size: 32px;
	color: #fff;
	margin-bottom: 20px;
}

.contact-mini-info p {
	color: rgba(255,255,255,0.65);
	margin-bottom: 24px;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}

.contact-detail i {
	color: var(--gold);
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.contact-detail span {
	color: rgba(255,255,255,0.72);
	font-size: 15px;
	line-height: 1.6;
}

.contact-mini-form {
	flex: 1 1 55%;
}

/* ===== FORM ===== */
.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-control {
	width: 100%;
	background: #1a1a1a;
	border: 1px solid rgba(84,84,84,0.2);
	color: #fff;
	font-size: 15px;
	padding: 12px 14px;
	font-family: 'Roboto', sans-serif;
	transition: border-color 0.2s;
	outline: none;
}

.form-control:focus {
	border-color: var(--gold-alt);
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.form-note {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	margin-top: 10px;
}

/* ===== FOOTER ===== */
#site-footer {
	background: var(--bg-darker);
	border-top: 1px solid rgba(84,84,84,0.1);
}

.footer-widgets {
	padding: 60px 0 40px;
}

.footer-widgets-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-col {
	flex: 1 1 200px;
}

.footer-logo {
	margin-bottom: 18px;
}

.footer-logo svg {
	height: 36px;
	width: auto;
}

.footer-col p {
	color: rgba(255,255,255,0.55);
	font-size: 14px;
	line-height: 1.7;
}

.footer-col h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--gold);
	margin-bottom: 18px;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #d8d8d8;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	background: var(--gold-dark);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: background 0.2s;
}

.footer-social a:hover {
	background: var(--gold);
	color: #000;
}

.footer-contact-item {
	display: flex;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
	line-height: 1.5;
}

.footer-contact-item i {
	color: var(--gold);
	margin-top: 2px;
	flex-shrink: 0;
}

.footer-copyright {
	border-top: 1px solid rgba(84,84,84,0.1);
	padding: 20px;
	text-align: center;
}

.footer-copyright p {
	color: var(--gold-footer);
	font-size: 13px;
}

.footer-copyright a {
	color: var(--gold-footer);
}

/* ===== COOKIES GDPR ===== */
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #1a1a1a;
	border-top: 2px solid var(--gold-alt);
	padding: 18px 24px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

#cookie-banner p {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	line-height: 1.5;
	max-width: 700px;
}

#cookie-banner a {
	color: var(--gold);
}

.cookie-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

#cookie-accept {
	background: var(--gold);
	color: #000;
	border: none;
	padding: 10px 24px;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: background 0.2s;
}

#cookie-accept:hover {
	background: var(--gold-dark);
}

#cookie-decline {
	background: transparent;
	color: rgba(255,255,255,0.5);
	border: 1px solid rgba(84,84,84,0.3);
	padding: 10px 18px;
	font-size: 13px;
	cursor: pointer;
	transition: color 0.2s;
}

#cookie-decline:hover {
	color: #fff;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
	background: var(--bg-dark);
	padding: 70px 0 50px;
	border-bottom: 1px solid rgba(84,84,84,0.1);
}

.page-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.page-hero h1 {
	font-size: 40px;
	color: var(--gold);
	margin-bottom: 10px;
}

.page-hero p {
	color: rgba(255,255,255,0.65);
	font-size: 17px;
}

.breadcrumb {
	display: flex;
	gap: 6px;
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	margin-bottom: 16px;
}

.breadcrumb a {
	color: rgba(255,255,255,0.4);
}

.breadcrumb a:hover {
	color: var(--gold);
}

.breadcrumb span {
	color: var(--gold);
}

/* ===== INNER PAGE CONTENT ===== */
.page-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}

.page-content h2 {
	font-size: 26px;
	color: #fff;
	margin: 36px 0 14px;
}

.page-content h3 {
	font-size: 20px;
	color: var(--gold);
	margin: 28px 0 10px;
}

.page-content p {
	color: rgba(255,255,255,0.68);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 14px;
}

.page-content ul {
	list-style: disc;
	padding-left: 20px;
	color: rgba(255,255,255,0.65);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 14px;
}

.page-content ul li {
	margin-bottom: 6px;
}

.company-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 50px;
}

.company-text {
	flex: 1 1 55%;
}

.company-image {
	flex: 1 1 35%;
}

.company-image img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

.info-table th,
.info-table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid rgba(84,84,84,0.12);
	font-size: 15px;
}

.info-table th {
	color: var(--gold);
	font-weight: 600;
	width: 180px;
	font-family: 'century-gotic', Arial, sans-serif;
}

.info-table td {
	color: rgba(255,255,255,0.7);
}

/* ===== CONTACT PAGE ===== */
.contact-page-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.contact-info-block {
	flex: 1 1 38%;
}

.contact-info-block h2 {
	font-size: 28px;
	color: #fff;
	margin-bottom: 20px;
}

.contact-info-block p {
	color: rgba(255,255,255,0.65);
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 28px;
}

.contact-form-block {
	flex: 1 1 58%;
}

.contact-form-block h2 {
	font-size: 28px;
	color: #fff;
	margin-bottom: 24px;
}

.form-row {
	display: flex;
	gap: 16px;
}

.form-row .form-group {
	flex: 1;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
	background: #1a1a1a;
	border: 1px solid rgba(84,84,84,0.15);
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.3);
	font-size: 14px;
	margin-top: 24px;
}

/* ===== STATS BAR ===== */
#stats {
	background: var(--gold-dark);
	padding: 40px 0;
}

.stats-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	display: block;
	line-height: 1;
}

.stat-label {
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 6px;
	display: block;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-20 { margin-top: 20px; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.col-4 { width: 50%; }
	.col-3 { width: 50%; }
	.card-link-item { flex: 1 1 50%; }
	.intro-inner { flex-direction: column; gap: 36px; }
	.contact-mini-inner { flex-direction: column; }
	.contact-page-inner { flex-direction: column; }
	.company-grid { flex-direction: column; }
}

@media (max-width: 768px) {
	.hero-content h1 { font-size: 32px; }
	.hero-content p { font-size: 17px; }
	.section-header h2 { font-size: 28px; }
	.col-4 { width: 100%; }
	.col-6 { width: 100%; }
	.col-8 { width: 100%; }
	.col-3 { width: 100%; }
	.card-link-item { flex: 1 1 100%; height: 220px; }
	.menu-toggle { display: block; }
	.main-navigation { display: none; }
	.why-item { flex: 1 1 100%; }
	.intro-image { display: none; }
	.cta-inner h2 { font-size: 28px; }
	.page-hero h1 { font-size: 28px; }
	.form-row { flex-direction: column; }
	#cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 768px) {
	.links-icons { padding: 40px 70px; }
	.links-icons .card-link-inner { height: 300px; }
}

@media (min-width: 1024px) {
	.links-icons .card-link-inner { height: 350px; }
	.col-4 { width: 33.333%; }
}
