:root {
	--primary: #181d55;
	--secondary: #edd003;
	--secondary-deep: #c7a900;
	--ink: #10142f;
	--ink-soft: #48506f;
	--surface: #ffffff;
	--surface-alt: #f5f7fc;
	--surface-dark: #12162f;
	--line: rgba(24, 29, 85, 0.12);
	--line-strong: rgba(24, 29, 85, 0.2);
	--success: #0f9d74;
	--danger: #b42318;
	--shadow: 0 24px 60px rgba(18, 24, 54, 0.16);
	--shadow-soft: 0 12px 32px rgba(18, 24, 54, 0.1);
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--container: 1200px;
	--header-offset: 94px;
	--font-heading: "Sora", sans-serif;
	--font-body: "Manrope", sans-serif;
	--transition: 220ms ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(237, 208, 3, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(24, 29, 85, 0.12), transparent 32%),
		var(--surface-alt);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition), transform var(--transition), opacity var(--transition), background-color var(--transition), border-color var(--transition);
}

a:hover {
	color: var(--secondary-deep);
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	font-family: var(--font-heading);
	line-height: 1.12;
	color: var(--primary);
}

p {
	margin: 0 0 1rem;
}

ul {
	margin: 0;
	padding: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.screen-reader-text:focus {
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--primary);
	color: #fff;
	z-index: 9999;
}

.container {
	width: min(calc(100% - 2rem), var(--container));
	margin: 0 auto;
}

.section {
	padding: 6.5rem 0;
	scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.section-header {
	max-width: 760px;
	margin: 0 auto 3rem;
	text-align: center;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: rgba(24, 29, 85, 0.08);
	color: var(--primary);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-desc,
.about-body,
.about-highlight,
.contact-notice,
.footer-description,
.post-excerpt,
.widget,
.entry-content {
	color: var(--ink-soft);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.01em;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-accent {
	background: linear-gradient(135deg, var(--secondary), #ffe43c);
	color: var(--primary);
	box-shadow: 0 14px 34px rgba(237, 208, 3, 0.36);
}

.btn-accent:hover {
	color: var(--primary);
}

.btn-outline {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.btn-light {
	background: #fff;
	color: var(--primary);
}

.btn-block {
	width: 100%;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-sticky .main-navigation {
	box-shadow: 0 16px 36px rgba(10, 13, 40, 0.18);
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.header-top-bar {
	background: var(--primary);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.92rem;
}

.header-top-bar .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	padding: 0.7rem 0;
}

.top-bar-left,
.top-bar-right {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.35rem;
	align-items: center;
}

.top-bar-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.92);
}

.top-bar-item:hover {
	color: var(--secondary);
}

.main-navigation {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(18px);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.site-logo-text {
	display: inline-flex;
	align-items: center;
	max-width: 230px;
}

.site-logo-image {
	width: 100%;
	height: auto;
}

.nav-menu-wrapper {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

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

.nav-menu a {
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	font-weight: 700;
	color: var(--primary);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
	background: rgba(24, 29, 85, 0.08);
	color: var(--primary);
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.25rem;
	border-radius: 999px;
	background: rgba(24, 29, 85, 0.08);
}

.language-switcher__link {
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	font-weight: 800;
	font-size: 0.82rem;
	color: var(--primary);
}

.language-switcher__link.is-current {
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.nav-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.2rem;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-weight: 800;
}

.nav-cta-btn:hover {
	color: #fff;
	background: #202777;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 16px;
	background: rgba(24, 29, 85, 0.08);
}

.hamburger-line {
	display: block;
	width: 22px;
	height: 2px;
	margin: 3px 0;
	background: var(--primary);
	transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
	position: relative;
	padding: 7rem 0 5rem;
	background-color: var(--primary);
	background-size: cover;
	background-position: center center;
	color: #fff;
	overflow: hidden;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: auto auto -100px -120px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: rgba(237, 208, 3, 0.18);
	filter: blur(20px);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(11, 15, 42, 0.88) 0%, rgba(24, 29, 85, 0.8) 46%, rgba(24, 29, 85, 0.42) 100%);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 2.2rem;
	align-items: center;
	min-height: min(780px, calc(100vh - 100px));
}

.hero-copy {
	max-width: 720px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.6rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary);
}

.hero-title {
	margin-top: 1.4rem;
	font-size: clamp(2.5rem, 6vw, 5.2rem);
	color: #fff;
}

.hero-subtitle {
	max-width: 680px;
	font-size: clamp(1.05rem, 2vw, 1.22rem);
	color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 2rem 0 1.5rem;
}

.hero-trust-line {
	max-width: 640px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.88);
}

.hero-card {
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 20px 50px rgba(3, 5, 17, 0.28);
	backdrop-filter: blur(16px);
}

.hero-card__eyebrow {
	margin-bottom: 1rem;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary);
}

.hero-service-list {
	display: grid;
	gap: 0.9rem;
	list-style: none;
	margin-bottom: 1.7rem;
}

.hero-service-list li {
	padding: 0.9rem 1rem;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	font-weight: 700;
}

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

.hero-card__stats div {
	padding: 1rem;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	text-align: center;
}

.hero-card__stats strong {
	display: block;
	font-size: 1.25rem;
	color: #fff;
}

.hero-card__stats span {
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.76);
}

.services-grid,
.why-grid,
.contact-cards,
.footer-grid,
.posts-grid {
	display: grid;
	gap: 1.5rem;
}

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

.service-card,
.why-card,
.contact-info-card,
.team-card,
.post-card,
.widget {
	padding: 1.8rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: var(--shadow-soft);
}

.service-card {
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.service-card__label {
	display: inline-flex;
	margin-bottom: 1rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(24, 29, 85, 0.08);
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 800;
}

.service-link {
	display: inline-flex;
	margin-top: 0.5rem;
	font-weight: 800;
}

.stats-section {
	padding: 1.35rem 0;
	background: var(--primary);
}

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

.stat-item {
	padding: 1.25rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.stat-item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.15rem;
	color: var(--secondary);
}

.stat-item span {
	display: block;
	color: rgba(255, 255, 255, 0.82);
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 2rem;
	align-items: start;
}

.about-highlight {
	margin: 1.3rem 0 1.8rem;
	padding: 1rem 1.15rem;
	border-left: 5px solid var(--secondary);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	background: rgba(237, 208, 3, 0.12);
	font-weight: 800;
	color: var(--primary);
}

.about-features {
	display: grid;
	gap: 0.85rem;
	list-style: none;
}

.about-features li {
	padding: 0.95rem 1rem;
	border-radius: var(--radius-sm);
	background: rgba(24, 29, 85, 0.05);
	border: 1px solid rgba(24, 29, 85, 0.08);
	font-weight: 700;
}

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

.team-card {
	padding: 0;
	overflow: hidden;
}

.team-card__image {
	aspect-ratio: 4 / 4.7;
	object-fit: cover;
	width: 100%;
}

.team-card__content {
	padding: 1.6rem;
}

.team-card__role {
	margin-bottom: 0.45rem;
	color: var(--secondary-deep);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
}

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

.why-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 252, 0.94));
}

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

.gallery-item {
	position: relative;
	display: block;
	min-height: 290px;
	border-radius: calc(var(--radius-md) + 4px);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 33, 0.72) 100%);
}

.gallery-item span {
	position: absolute;
	left: 1.15rem;
	right: 1.15rem;
	bottom: 1rem;
	z-index: 1;
	color: #fff;
	font-weight: 800;
}

.testimonials-section {
	background: linear-gradient(180deg, rgba(24, 29, 85, 0.05), rgba(24, 29, 85, 0.08));
}

.testimonials-slider {
	position: relative;
	overflow: hidden;
}

.testimonial-track {
	display: flex;
	transition: transform 400ms ease;
}

.testimonial-card {
	flex: 0 0 100%;
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow);
}

.testimonial-stars {
	margin-bottom: 1rem;
	color: var(--secondary-deep);
	font-size: 1.15rem;
	letter-spacing: 0.2em;
}

.testimonial-card blockquote {
	margin: 0 0 1.2rem;
	font-size: 1.12rem;
	font-weight: 600;
	color: var(--primary);
}

.testimonial-author strong,
.footer-brand-name {
	display: block;
	font-weight: 800;
}

.testimonial-author span {
	color: var(--ink-soft);
}

.testimonial-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.testimonial-prev,
.testimonial-next,
.testimonial-dot {
	border: 0;
}

.testimonial-prev,
.testimonial-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--primary);
	box-shadow: var(--shadow-soft);
	font-size: 1.2rem;
}

.testimonial-dots {
	display: inline-flex;
	gap: 0.55rem;
}

.testimonial-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(24, 29, 85, 0.16);
}

.testimonial-dot.active {
	background: var(--secondary-deep);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 1.6rem;
	align-items: start;
}

.contact-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 2rem 0 1.5rem;
}

.contact-info-card a {
	font-weight: 800;
}

.contact-form-wrap {
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow);
}

.contact-form-wrap--solo {
	max-width: 820px;
	margin: 0 auto;
}

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

.form-field {
	margin: 0;
}

.form-field--wide {
	grid-column: 1 / -1;
}

.form-field--hidden {
	position: absolute;
	left: -9999px;
}

.form-field label {
	display: block;
	margin-bottom: 0.45rem;
	font-weight: 800;
	color: var(--primary);
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid var(--line-strong);
	border-radius: 14px;
	background: var(--surface-alt);
	color: var(--ink);
}

.form-field textarea {
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 2px solid rgba(237, 208, 3, 0.34);
	border-color: var(--secondary-deep);
}

.form-notice {
	margin: 0 0 1rem;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	font-weight: 700;
}

.form-notice.is-success {
	background: rgba(15, 157, 116, 0.12);
	color: var(--success);
}

.form-notice.is-error {
	background: rgba(180, 35, 24, 0.12);
	color: var(--danger);
}

.site-footer {
	margin-top: 2rem;
	background: var(--surface-dark);
	color: rgba(255, 255, 255, 0.76);
}

.footer-cta-banner {
	padding: 2.7rem 0;
	background: linear-gradient(135deg, var(--secondary), #f8e55f);
}

.footer-cta-banner .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.cta-banner-content h2,
.cta-banner-content p {
	color: var(--primary);
}

.footer-main {
	padding: 4rem 0 2.3rem;
}

.footer-grid {
	grid-template-columns: 1.3fr 0.8fr 0.85fr 1fr;
	align-items: start;
}

.footer-logo {
	display: inline-flex;
	max-width: 230px;
	margin-bottom: 1rem;
}

.footer-brand-name {
	margin-bottom: 0.5rem;
	color: #fff;
}

.widget-title {
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1.08rem;
}

.footer-links,
.footer-contact,
.footer-bottom-menu {
	list-style: none;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a,
.footer-bottom-menu a {
	color: rgba(255, 255, 255, 0.76);
}

.footer-contact span {
	display: block;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.44);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1rem;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-weight: 800;
}

.footer-bottom {
	padding: 1.2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom-menu {
	display: flex;
	gap: 1rem;
}

.floating-contact-bar {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.floating-contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.1rem;
	border-radius: 999px;
	box-shadow: var(--shadow);
	font-weight: 800;
}

.floating-contact-btn.is-whatsapp {
	background: #25d366;
	color: #fff;
}

.floating-contact-btn.is-call {
	background: var(--primary);
	color: #fff;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1100;
	display: grid;
	place-items: center;
	padding: 1.5rem;
	background: rgba(7, 11, 28, 0.86);
}

.lightbox[hidden] {
	display: none !important;
}

.lightbox__content {
	width: min(100%, 960px);
	max-height: 85vh;
}

.lightbox__content img,
.lightbox__content iframe,
.lightbox__content video {
	width: 100%;
	max-height: 85vh;
	border-radius: 20px;
	object-fit: contain;
}

.lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--primary);
	font-size: 1.8rem;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 550ms ease, transform 550ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.page-hero {
	padding: 5rem 0 3rem;
	background: linear-gradient(160deg, var(--primary), #2e388f);
	color: #fff;
}

.page-hero-title,
.page-hero a,
.breadcrumbs {
	color: #fff;
}

.content-area {
	padding: 4rem 0;
}

.content-sidebar-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 2rem;
}

.post-card-image img,
.post-featured-image img,
.page-featured-image img {
	width: 100%;
	border-radius: var(--radius-md);
}

.post-card-content,
.entry-content,
.single-post-content {
	padding-top: 1rem;
}

.post-meta,
.single-meta,
.breadcrumbs,
.widget ul,
.widget ol {
	color: var(--ink-soft);
}

.widget ul,
.widget ol {
	padding-left: 1.2rem;
}

.pagination,
.post-navigation {
	margin-top: 2rem;
}

@media (max-width: 1100px) {
	.services-grid,
	.why-grid,
	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-cards,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-grid,
	.about-grid,
	.content-sidebar-wrap {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	:root {
		--header-offset: 72px;
	}

	.container {
		width: min(calc(100% - 2.75rem), var(--container));
	}

	.header-top-bar {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
	}

	.nav-menu-wrapper {
		position: fixed;
		top: 80px;
		left: 1rem;
		right: 1rem;
		flex-direction: column;
		align-items: stretch;
		padding: 1.2rem;
		border-radius: 24px;
		background: #fff;
		box-shadow: var(--shadow);
		transform: scale(0.96);
		opacity: 0;
		visibility: hidden;
	}

	.nav-menu-wrapper.is-open {
		transform: scale(1);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu,
	.hero-grid,
	.stats-grid,
	.services-grid,
	.team-grid,
	.why-grid,
	.gallery-grid,
	.contact-cards,
	.footer-grid,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.nav-menu {
		display: grid;
	}

	.hero-section {
		padding-top: 5.5rem;
		background-position: 58% center;
	}

	.hero-copy,
	.about-copy,
	.contact-copy,
	.contact-form-wrap,
	.section-header {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}

	.hero-card__stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-cta-banner .container,
	.footer-bottom .container {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 3rem), var(--container));
	}

	.section {
		padding: 5rem 0;
	}

	.hero-actions,
	.footer-bottom-menu {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-card,
	.testimonial-card,
	.contact-form-wrap,
	.service-card,
	.why-card,
	.contact-info-card {
		padding: 1.4rem;
	}

	.hero-copy,
	.about-copy,
	.contact-copy,
	.contact-form-wrap,
	.section-header {
		padding-left: 0.35rem;
		padding-right: 0.35rem;
	}

	.hero-title,
	.hero-subtitle {
		max-width: 100%;
	}

	.floating-contact-bar {
		left: 1rem;
		right: 1rem;
	}

	.floating-contact-btn {
		width: 100%;
	}
}
