
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}


:root {
	--primary-color: #0FA54C;
	--primary-dark: #0d8a3f;
	--primary-light: #4fc770;

	--secondary-color: #F29B0A;

	--text-primary: #212121;
	--text-secondary: #757575;
	--background: #ffffff;
	--surface: #f5f5f5;
	--divider: #e0e0e0;
	--shadow-1: 0 2px 4px rgba(0,0,0,0.1);
	--shadow-2: 0 4px 8px rgba(0,0,0,0.12);
	--shadow-3: 0 8px 16px rgba(0,0,0,0.15);
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: var(--text-primary);
	line-height: 1.6;
	background-color: var(--background);
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
}

/* Animations */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
	0% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
	100% { transform: translateY(0); }
}

/* Header */
header {
	background-color: var(--background);
	box-shadow: var(--shadow-1);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}
.logo a {
	display: flex;
	align-items: center;
}
.logo img {
	width: auto;
	height: 40px;
}
.header-info {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.header-phone {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	white-space: nowrap;

	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-primary);
	text-decoration: none;
	transition: all 0.3s;
}
.header-phone a:hover {
	color: var(--text-secondary);
}
.header-phone .material-icons {
	color: var(--primary-color);
	font-size: 20px;
}

.header-cta {
	display: flex;
	align-items: center;
	background-color: var(--primary-color);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.3s, box-shadow 0.3s;
	box-shadow: var(--shadow-2);
}
.header-cta .material-icons {
	margin-right: 0.2em;
}

.header-cta:hover {
	background-color: var(--primary-dark);
	box-shadow: var(--shadow-3);
}

@media (max-width: 768px) {
	.header-cta {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0.25rem 0.5rem;
	}
	.header-cta .material-icons {
		margin: 0;
	}
	.header-cta-text {
		font-size: 10px;
	}
}
@media (max-width: 576px) {
	.logo img {
		height: 30px;
	}
	.header-info {
		gap: 1rem;
	}
	.header-phone {
		min-width: 3rem;
		align-self: stretch;
		justify-content: center;
		background: var(--secondary-color);
		padding: 0.25rem 0.5rem;
		color: #fff;
		box-shadow: var(--shadow-2);
		border-radius: 4px;
		
	}
	.header-phone .material-icons {
		color: #fff;
	}
	.header-phone .header-phone-text {
		display: none;
	}
}


/* Floating Quick Menu */
.quick-menu {
	position: fixed;
	right: 1.25rem;
	bottom: 4.5rem;
	z-index: 1500;
}

.quick-menu-toggle {
	background: rgba(15, 165, 76, 0.92);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-3);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	margin-left: auto;
	margin-bottom: 0.5rem;
}

.quick-menu-toggle:hover {
	background: var(--primary-dark);
	transform: scale(1.05);
}

.quick-menu-list {
	background: rgba(255, 255, 255, 0.98);
	border-radius: 8px;
	box-shadow: var(--shadow-3);
	list-style: none;
	padding: 0.5rem 0;
	margin: 0;
	min-width: 200px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
	border: 1px solid var(--divider);
}

.quick-menu-list.open {
	max-height: 600px;
	opacity: 1;
	padding: 0.5rem 0;
}

.quick-menu-list li {
	margin: 0;
	padding: 0;
}

.quick-menu-list a {
	display: block;
	color: var(--text-primary);
	text-decoration: none;
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	transition: background-color 0.2s, color 0.2s;
	border-left: 3px solid transparent;
	position: relative;
}

.quick-menu-list a:hover {
	background-color: rgba(15, 165, 76, 0.1);
	color: var(--primary-color);
}

.quick-menu-list a.active {
	background-color: rgba(15, 165, 76, 0.15);
	color: var(--primary-color);
	border-left-color: var(--primary-color);
	font-weight: 500;
}

.quick-menu-list a.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 60%;
	background-color: var(--primary-color);
	border-radius: 0 2px 2px 0;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-3);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
	z-index: 1600;
}

.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
}

.back-to-top:hover {
	background: var(--primary-dark);
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(15, 165, 76, 0.4);
}

.back-to-top:active {
	transform: translateY(-2px);
}

.back-to-top .material-icons {
	font-size: 24px;
}

@media (max-width: 768px) {
	.back-to-top {
		right: 1rem;
		bottom: 1rem;
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 768px) {
	.quick-menu {
		right: 1rem;
		bottom: 3.5rem;
	}

	.quick-menu-list {
		min-width: 180px;
	}

	.quick-menu-list a {
		font-size: 0.85rem;
		padding: 0.65rem 1rem;
	}
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 6rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('img/hero-sales-job.jpg');
	background-size: cover;
	background-position: center;
	opacity: 0.1;
	z-index: 0;
}

.hero-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: var(--shadow-3);
	margin: 2rem 0;
	max-height: 400px;
	object-fit: cover;
	animation: float 6s ease-in-out infinite;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	text-align: left;
}

.hero-text {
	text-align: left;
}

.hero-image-wrapper {
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	line-height: 1.4;
	letter-spacing: 0.05em;
}

.hero .subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-cta-group {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.region-links {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--divider);
	animation: fadeUp 0.7s ease both;
}

.region-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 1.5rem;
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: var(--shadow-1);
}

.region-link:hover {
	background-color: var(--primary-color);
	color: white;
	box-shadow: var(--shadow-2);
}

.region-link .material-icons {
	font-size: 20px;
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
	padding: 1rem 3rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: background-color 0.3s, box-shadow 0.3s;
	box-shadow: var(--shadow-2);
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	box-shadow: var(--shadow-3);
}

.btn-secondary {
	background-color: white;
	color: var(--primary-color);
	padding: 1rem 3rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: box-shadow 0.3s;
	box-shadow: var(--shadow-1);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	box-shadow: var(--shadow-2);
}

/* Section */
section {
	padding: 5rem 2rem;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.section-subtitle {
	font-size: 1.1rem;
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background-color: white;
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: var(--shadow-1);
	transition: box-shadow 0.3s, transform 0.3s;
	animation: fadeUp 0.7s ease both;
}

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

.feature-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.feature-icon {
	width: 64px;
	height: 64px;
	background-color: rgba(15, 165, 76, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.feature-icon .material-icons {
	font-size: 32px;
	color: var(--primary-color);
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.8;
}

/* Problem Section */
.problem-section {
	background-color: var(--surface);
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.problem-card {
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow-1);
	border-left: 4px solid #f44336;
	animation: fadeUp 0.7s ease both;
}

.problem-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.problem-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.problem-card h3 .material-icons {
	color: #f44336;
	font-size: 24px;
}

.problem-card p {
	color: var(--text-secondary);
	line-height: 1.8;
}

/* Solution Section */
.solution-section {
	background-color: var(--background);
}

.solution-content {
	max-width: 1000px;
	margin: 3rem auto 0;
}

.solution-intro {
	text-align: center;
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.8;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.solution-card {
	background-color: white;
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: var(--shadow-2);
	border-top: 4px solid var(--primary-color);
	transition: box-shadow 0.3s, transform 0.3s;
	position: relative;
	display: flex;
	flex-direction: column;
	animation: fadeUp 0.7s ease both;
}

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

.solution-card.featured {
	border-top: 4px solid var(--primary-color);
}

.solution-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.solution-card h3 .material-icons {
	color: var(--primary-color);
	font-size: 32px;
}

.solution-card .featured-title {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 1.8rem;
	font-weight: 700;
	color: #1976d2;
	margin: 0 0 1.5rem 0;
	padding: 0;
	letter-spacing: 0.15em;
	line-height: 1.4;
	display: block;
	text-align: left;
	height: auto;
	white-space: nowrap;
	align-self: flex-start;
	border: none;
}

@media (max-width: 768px) {
	.solution-card .featured-title {
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		font-size: 1.5rem;
		white-space: normal;
		text-align: left;
	}
}

.solution-card p {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.solution-card .highlight-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 1rem 0;
	line-height: 1;
}

.solution-card .highlight-text {
	font-size: 1.1rem;
	color: var(--text-primary);
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.solution-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

/* Placeholder Image */
.placeholder-image {
	width: 100%;
	height: auto;
	border: 2px dashed var(--divider);
	border-radius: 8px;
	padding: 2rem;
	background-color: var(--surface);
	text-align: center;
	color: var(--text-secondary);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.placeholder-image svg {
	width: 80px;
	height: 80px;
	margin-bottom: 1rem;
	opacity: 0.5;
}

.placeholder-image p {
	font-size: 0.9rem;
	line-height: 1.6;
}

.flow-image {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 8px;
	margin: 0 auto 1.5rem;
	display: block;
}

/* Team Section */
.team-section {
	background-color: var(--surface);
}

.team-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-top: 3rem;
}

.team-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: var(--shadow-2);
	animation: fadeUp 0.7s ease both;
}

.team-text {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

.office-section {
	background-color: var(--background);
}

.office-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.office-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-1);
	transition: box-shadow 0.3s, transform 0.3s;
	animation: fadeUp 0.7s ease both;
}

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

.office-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.office-card-content {
	padding: 1.5rem;
}

.office-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.office-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Insights Section */
.insights-section {
	background-color: var(--surface);
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.insight-card {
	background-color: white;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: var(--shadow-1);
	animation: fadeUp 0.7s ease both;
	transition: box-shadow 0.3s, transform 0.3s;
}

.insight-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.insight-card h3 .material-icons {
	font-size: 20px;
	color: var(--primary-color);
}

.insight-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 0.98rem;
}

/* RPO Section */
.rpo-section {
	background-color: var(--background);
}

.rpo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.rpo-card {
	background-color: white;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: var(--shadow-2);
	animation: fadeUp 0.7s ease both;
	transition: box-shadow 0.3s, transform 0.3s;
}

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

.rpo-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.rpo-card h3 .material-icons {
	color: var(--primary-color);
	font-size: 22px;
}

.rpo-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 0.75rem;
}

.rpo-list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0;
}

.rpo-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: var(--text-secondary);
	padding: 0.35rem 0;
	line-height: 1.6;
}

.rpo-list li .material-icons {
	color: var(--primary-color);
	font-size: 18px;
	margin-top: 2px;
}

.solution-benefits {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
}

.solution-benefits li {
	padding: 0.5rem 0;
	color: var(--text-secondary);
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.solution-benefits li .material-icons {
	color: var(--primary-color);
	font-size: 20px;
	margin-top: 2px;
}

/* Stats Section */
.stats-section {
	background-color: var(--surface);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat-card {
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: var(--shadow-1);
	transition: box-shadow 0.3s, transform 0.3s;
	animation: fadeUp 0.7s ease both;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	color: var(--text-secondary);
}

/* Flow Section */
.flow-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.flow-item {
	text-align: center;
	position: relative;
	animation: fadeUp 0.7s ease both;
}

.flow-number {
	width: 48px;
	height: 48px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
}

.flow-item h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.flow-item p {
	color: var(--text-secondary);
	line-height: 1.8;
}

/* CTA Section */
.cta-section {
	background-color: var(--primary-color);
	color: white;
	text-align: center;
	padding: 5rem 2rem;
}

.cta-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-section p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.cta-section .btn-primary {
	background-color: white;
	color: var(--primary-color);
}

.cta-section .btn-primary:hover {
	background-color: #f5f5f5;
}

/* Contact Form */
.contact-section {
	background-color: var(--surface);
}

.contact-form {
	max-width: 600px;
	margin: 3rem auto 0;
	background-color: white;
	padding: 3rem;
	border-radius: 8px;
	box-shadow: var(--shadow-2);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--divider);
	border-radius: 4px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1rem;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(15, 165, 76, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
footer {
	background-color: var(--text-primary);
	color: white;
	padding: 3rem 2rem 2rem;
	text-align: center;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.footer-links a:hover {
	opacity: 1;
}

.footer-copyright {
	opacity: 0.6;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero .subtitle {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-cta-group {
		flex-direction: column;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text {
		text-align: center;
	}

	.region-links {
		flex-direction: column;
		align-items: stretch;
	}

	.region-link {
		width: 100%;
		justify-content: center;
	}

	.team-content {
		grid-template-columns: 1fr;
	}
}