/* ==========================================================================
   SANTIAGO AGUIAR - SEGURIDAD INDUSTRIAL & SISO
   Design System & Master Stylesheet
   ========================================================================== */

:root {
	color-scheme: dark;
	--font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	--font-heading: 'Outfit', system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	/* Color Palette: Industrial Safety Navy + High-Vis Amber */
	--bg-dark: #070c14;
	--bg-card: #0d1726;
	--bg-card-subtle: #121f33;
	--bg-card-hover: #172842;
	--bg-glass: rgba(13, 23, 38, 0.85);
	--bg-glass-nav: rgba(7, 12, 20, 0.9);

	--yellow-safety: #ffb703;
	--yellow-amber: #fb8500;
	--yellow-light: #fef08a;
	--yellow-glow: rgba(255, 183, 3, 0.22);
	--yellow-glow-strong: rgba(255, 183, 3, 0.45);

	--blue-siso: #1d4ed8;
	--blue-siso-light: #3b82f6;
	--blue-siso-glow: rgba(59, 130, 246, 0.2);

	--emerald-safe: #10b981;
	--emerald-glow: rgba(16, 185, 129, 0.2);
	--red-alert: #ef4444;

	--text-title: #f8fafc;
	--text-body: #cbd5e1;
	--text-muted: #8292a8;
	--text-dim: #475569;

	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-light: rgba(255, 255, 255, 0.14);
	--border-safety: rgba(255, 183, 3, 0.35);
	--border-safety-active: #ffb703;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 26px;
	--radius-full: 9999px;

	--shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-subtle);
	--shadow-card-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.75), 0 0 25px var(--yellow-glow);
	--shadow-btn: 0 8px 20px -4px rgba(255, 183, 3, 0.4);

	--hazard-pattern: repeating-linear-gradient(
		-45deg,
		rgba(255, 183, 3, 0.12),
		rgba(255, 183, 3, 0.12) 10px,
		transparent 10px,
		transparent 20px
	);
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background-color: var(--bg-dark);
	color: var(--text-body);
	font-family: var(--font-main);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}

/* Background grid styling */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: 
		radial-gradient(circle at 50% 0%, rgba(29, 78, 216, 0.15), transparent 45%),
		radial-gradient(circle at 90% 40%, rgba(255, 183, 3, 0.08), transparent 35%),
		radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.06), transparent 30%),
		linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
	pointer-events: none;
	z-index: -1;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--text-title);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

p {
	margin-bottom: 1rem;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.2s ease;
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.section {
	padding: 5rem 0;
	position: relative;
}

.section-title-wrap {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 3.5rem auto;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 1rem;
	background: rgba(255, 183, 3, 0.12);
	border: 1px solid rgba(255, 183, 3, 0.3);
	border-radius: var(--radius-full);
	color: var(--yellow-safety);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1rem;
}

.section-badge-blue {
	background: rgba(59, 130, 246, 0.12);
	border-color: rgba(59, 130, 246, 0.3);
	color: var(--blue-siso-light);
}

.section-badge-green {
	background: rgba(16, 185, 129, 0.12);
	border-color: rgba(16, 185, 129, 0.3);
	color: var(--emerald-safe);
}

.section-title {
	font-size: clamp(2rem, 3.8vw, 2.75rem);
	margin-bottom: 1rem;
}

.section-desc {
	font-size: 1.1rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.hazard-bar {
	height: 4px;
	width: 80px;
	background: repeating-linear-gradient(
		-45deg,
		var(--yellow-safety),
		var(--yellow-safety) 8px,
		#111d31 8px,
		#111d31 16px
	);
	margin: 1.25rem auto 0;
	border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.85rem 1.65rem;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	border-radius: var(--radius-md);
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--yellow-safety), var(--yellow-amber));
	color: #070c14;
	box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -4px rgba(255, 183, 3, 0.6);
	filter: brightness(1.06);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-title);
	border: 1px solid var(--border-light);
	backdrop-filter: blur(8px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	color: #ffffff;
}

.btn-whatsapp {
	background: #25d366;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
	background: #20ba59;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -2px rgba(37, 211, 102, 0.45);
}

.btn-email {
	background: rgba(30, 58, 138, 0.7);
	color: #ffffff;
	border: 1px solid rgba(59, 130, 246, 0.4);
}

.btn-email:hover {
	background: rgba(37, 99, 235, 0.85);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -2px rgba(59, 130, 246, 0.4);
}

.btn-outline-safety {
	background: transparent;
	color: var(--yellow-safety);
	border: 1px solid var(--yellow-safety);
}

.btn-outline-safety:hover {
	background: rgba(255, 183, 3, 0.12);
	transform: translateY(-2px);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	border-radius: var(--radius-sm);
}

.btn-lg {
	padding: 1.05rem 2.15rem;
	font-size: 1.05rem;
	border-radius: var(--radius-md);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--bg-glass-nav);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.85rem;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.brand-icon-wrap {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--yellow-safety), var(--yellow-amber));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #070c14;
	box-shadow: 0 4px 14px rgba(255, 183, 3, 0.35);
}

.brand-info {
	display: flex;
	flex-direction: column;
}

.brand-name {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

.brand-tag {
	font-size: 0.725rem;
	color: var(--yellow-safety);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

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

.nav-link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-body);
	padding: 0.4rem 0.2rem;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.nav-link:hover,
.nav-link.active {
	color: var(--yellow-safety);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--yellow-safety);
	transition: width 0.25s ease;
}

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

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.menu-toggle-btn {
	display: none;
	background: transparent;
	border: 1px solid var(--border-light);
	color: #ffffff;
	padding: 0.6rem;
	border-radius: var(--radius-md);
	cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer {
	display: none;
	flex-direction: column;
	background: var(--bg-card);
	border-top: 1px solid var(--border-subtle);
	padding: 1.25rem;
	gap: 1rem;
}

.mobile-nav-drawer.open {
	display: flex;
}

.mobile-nav-link {
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-title);
	background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-link:hover {
	background: rgba(255, 183, 3, 0.1);
	color: var(--yellow-safety);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
	padding-top: 8.5rem;
	padding-bottom: 5.5rem;
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3.5rem;
	align-items: center;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 1rem;
	background: rgba(255, 183, 3, 0.1);
	border: 1px solid rgba(255, 183, 3, 0.35);
	border-radius: var(--radius-full);
	color: var(--yellow-safety);
	font-size: 0.85rem;
	font-weight: 700;
	width: fit-content;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--yellow-safety);
	box-shadow: 0 0 10px var(--yellow-safety);
	animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
	font-size: clamp(2.35rem, 4.4vw, 3.6rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.hero-title .highlight-yellow {
	color: var(--yellow-safety);
	position: relative;
	display: inline-block;
}

.hero-subtitle {
	font-size: 1.18rem;
	color: var(--text-body);
	line-height: 1.65;
	max-width: 600px;
}

.hero-quote-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.15rem 1.35rem;
	background: linear-gradient(135deg, rgba(255, 183, 3, 0.08), rgba(29, 78, 216, 0.06));
	border-left: 4px solid var(--yellow-safety);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.quote-icon {
	color: var(--yellow-safety);
	flex-shrink: 0;
	margin-top: 2px;
}

.hero-quote-text {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
	font-style: italic;
	margin: 0;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

/* Hero Visual Card / Showcase */
.hero-visual {
	position: relative;
}

.hero-visual-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 1.75rem;
	position: relative;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
	overflow: hidden;
}

.hero-visual-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: repeating-linear-gradient(
		-45deg,
		var(--yellow-safety),
		var(--yellow-safety) 12px,
		#070c14 12px,
		#070c14 24px
	);
}

.hero-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-top: 0.5rem;
}

.hero-avatar-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hero-avatar {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e3a8a, #0f172a);
	border: 2px solid var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	box-shadow: 0 0 20px var(--yellow-glow);
}

.hero-avatar-text h3 {
	font-size: 1.2rem;
	margin-bottom: 0.15rem;
}

.hero-avatar-text span {
	font-size: 0.825rem;
	color: var(--yellow-safety);
	font-weight: 600;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.75rem;
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: #34d399;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 700;
}

.hero-features-list {
	display: grid;
	gap: 0.85rem;
	margin-bottom: 1.5rem;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	transition: all 0.2s ease;
}

.hero-feature-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 183, 3, 0.25);
	transform: translateX(4px);
}

.hero-feature-icon {
	width: 2rem;
	height: 2rem;
	border-radius: var(--radius-sm);
	background: rgba(255, 183, 3, 0.12);
	color: var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero-feature-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-title);
}

.hero-feature-sub {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 400;
}

.hero-visual-footer {
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero-contact-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--yellow-safety);
	font-weight: 700;
	font-family: var(--font-mono);
}

/* ==========================================================================
   METRICS COUNTER STRIP
   ========================================================================== */
.stats-strip {
	background: var(--bg-card);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	padding: 2.5rem 0;
	margin-top: 1rem;
	position: relative;
}

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

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

.stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: var(--border-subtle);
}

.stat-number {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	font-weight: 800;
	color: var(--yellow-safety);
	line-height: 1;
	margin-bottom: 0.35rem;
}

.stat-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-title);
	margin-bottom: 0.15rem;
}

.stat-sub {
	font-size: 0.775rem;
	color: var(--text-muted);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
	background: linear-gradient(180deg, var(--bg-dark) 0%, #0a1322 100%);
}

.about-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 4rem;
	align-items: center;
}

.about-card-left {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	position: relative;
	box-shadow: var(--shadow-card);
}

.about-badge-floating {
	position: absolute;
	top: -15px;
	right: 25px;
	background: linear-gradient(135deg, var(--yellow-safety), var(--yellow-amber));
	color: #070c14;
	font-size: 0.775rem;
	font-weight: 800;
	padding: 0.35rem 0.9rem;
	border-radius: var(--radius-full);
	box-shadow: 0 4px 12px rgba(255, 183, 3, 0.4);
	text-transform: uppercase;
}

.about-profile-header {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.about-avatar-large {
	width: 5rem;
	height: 5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, #1e40af, #0f172a);
	border: 2px solid var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.about-name-title h3 {
	font-size: 1.45rem;
	margin-bottom: 0.25rem;
}

.about-name-title p {
	color: var(--yellow-safety);
	font-weight: 600;
	font-size: 0.9rem;
	margin: 0;
}

.about-pillars-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
	margin-top: 1.5rem;
}

.pillar-box {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 0.9rem;
	text-align: center;
}

.pillar-icon {
	color: var(--yellow-safety);
	margin-bottom: 0.35rem;
}

.pillar-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-title);
}

.about-content-right h2 {
	font-size: clamp(1.85rem, 3.2vw, 2.4rem);
	margin-bottom: 1.25rem;
}

.about-desc-lead {
	font-size: 1.1rem;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 1.25rem;
}

.about-values-list {
	display: grid;
	gap: 1rem;
	margin: 1.75rem 0;
}

.about-value-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.about-value-bullet {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: rgba(255, 183, 3, 0.15);
	color: var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.85rem;
	font-weight: 700;
	margin-top: 0.15rem;
}

.about-value-text strong {
	color: #ffffff;
	font-size: 0.975rem;
	display: block;
	margin-bottom: 0.15rem;
}

.about-value-text span {
	font-size: 0.875rem;
	color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION (CARDS & MODALS)
   ========================================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
	gap: 1.75rem;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: transparent;
	transition: background 0.3s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: var(--border-safety);
	background: var(--bg-card-hover);
	box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
	background: linear-gradient(90deg, var(--yellow-safety), var(--yellow-amber));
}

.service-top {
	margin-bottom: 1.5rem;
}

.service-icon-box {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: var(--radius-md);
	background: rgba(255, 183, 3, 0.1);
	border: 1px solid rgba(255, 183, 3, 0.25);
	color: var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
	background: var(--yellow-safety);
	color: #070c14;
	transform: scale(1.05);
	box-shadow: 0 0 20px var(--yellow-glow-strong);
}

.service-tag {
	font-size: 0.75rem;
	color: var(--yellow-safety);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
	display: block;
}

.service-title {
	font-size: 1.35rem;
	margin-bottom: 0.75rem;
}

.service-desc {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.55;
	margin-bottom: 1.25rem;
}

.service-bullets {
	list-style: none;
	display: grid;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
}

.service-bullet {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.85rem;
	color: var(--text-body);
}

.service-bullet svg {
	color: var(--yellow-safety);
	flex-shrink: 0;
	margin-top: 3px;
}

.service-btn {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-light);
	color: #ffffff;
	padding: 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.service-card:hover .service-btn {
	background: var(--yellow-safety);
	color: #070c14;
	border-color: var(--yellow-safety);
	box-shadow: 0 4px 14px rgba(255, 183, 3, 0.35);
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(4, 8, 14, 0.85);
	backdrop-filter: blur(8px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	max-width: 680px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9);
	position: relative;
	animation: slideUp 0.25s ease;
}

@keyframes slideUp {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.modal-header {
	padding: 1.75rem 2rem 1.25rem 2rem;
	border-bottom: 1px solid var(--border-subtle);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: sticky;
	top: 0;
	background: var(--bg-card);
	z-index: 2;
}

.modal-title-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.modal-icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-md);
	background: rgba(255, 183, 3, 0.15);
	color: var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.modal-close-btn {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.modal-body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.modal-syllabus-box {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.25rem;
}

.modal-syllabus-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--yellow-safety);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
}

.modal-syllabus-list {
	list-style: none;
	display: grid;
	gap: 0.6rem;
}

.modal-syllabus-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--text-body);
}

.modal-syllabus-item span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--yellow-safety);
}

.modal-footer {
	padding: 1.25rem 2rem 1.75rem 2rem;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	background: rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   MODALIDADES DE CAPACITACIÓN
   ========================================================================== */
.modalities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.modality-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2.25rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: var(--shadow-card);
}

.modality-card:hover {
	transform: translateY(-8px);
	border-color: var(--border-safety);
	background: var(--bg-card-hover);
	box-shadow: var(--shadow-card-hover);
}

.modality-icon-large {
	width: 4.75rem;
	height: 4.75rem;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 183, 3, 0.15), rgba(29, 78, 216, 0.15));
	border: 2px solid rgba(255, 183, 3, 0.3);
	color: var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.modality-card:hover .modality-icon-large {
	transform: scale(1.1) rotate(5deg);
	border-color: var(--yellow-safety);
	box-shadow: 0 0 25px var(--yellow-glow);
}

.modality-title {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.modality-desc {
	font-size: 0.95rem;
	color: var(--text-body);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.modality-perks {
	list-style: none;
	display: grid;
	gap: 0.6rem;
	width: 100%;
	text-align: left;
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.modality-perk-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.modality-perk-item svg {
	color: #10b981;
	flex-shrink: 0;
}

/* ==========================================================================
   PAQUETES DE CAPACITACIÓN
   ========================================================================== */
.packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: stretch;
}

.package-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2.25rem 2rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s ease;
}

.package-card.popular {
	background: linear-gradient(180deg, #132238 0%, #0d1726 100%);
	border: 2px solid var(--yellow-safety);
	box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 25px var(--yellow-glow);
	transform: scale(1.03);
}

.package-badge-top {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--yellow-safety), var(--yellow-amber));
	color: #070c14;
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.35rem 1.15rem;
	border-radius: var(--radius-full);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(255, 183, 3, 0.4);
}

.package-header {
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--border-subtle);
}

.package-level {
	font-size: 0.8rem;
	color: var(--yellow-safety);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.35rem;
}

.package-title {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

.package-subtitle {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.package-pricing-quote {
	background: rgba(255, 255, 255, 0.03);
	border: 1px dashed var(--border-light);
	border-radius: var(--radius-md);
	padding: 0.85rem;
	font-size: 0.825rem;
	color: var(--yellow-light);
	font-weight: 600;
	margin-bottom: 1.75rem;
	text-align: center;
}

.package-includes-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-title);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}

.package-includes-list {
	list-style: none;
	display: grid;
	gap: 0.75rem;
	margin-bottom: 2rem;
	flex-grow: 1;
}

.package-include-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--text-body);
}

.package-include-item svg {
	color: var(--yellow-safety);
	flex-shrink: 0;
	margin-top: 2px;
}

.package-card.popular .package-include-item svg {
	color: var(--yellow-safety);
}

.package-bottom-note {
	text-align: center;
	max-width: 650px;
	margin: 2.5rem auto 0;
	font-size: 0.95rem;
	color: var(--text-muted);
	padding: 1rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
}

/* ==========================================================================
   PAQUETE PUBLICITARIO (MARKETING PIECES & ADS)
   ========================================================================== */
.ads-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.ad-card {
	background: #09111c;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
}

.ad-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card-hover);
	border-color: var(--border-safety);
}

.ad-visual-header {
	padding: 2rem 1.75rem;
	background: linear-gradient(135deg, #0f1c30 0%, #0a111e 100%);
	position: relative;
	border-bottom: 1px solid var(--border-subtle);
	overflow: hidden;
}

.ad-visual-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: repeating-linear-gradient(
		-45deg,
		var(--yellow-safety),
		var(--yellow-safety) 10px,
		#0a111e 10px,
		#0a111e 20px
	);
}

.ad-piece-tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--yellow-safety);
	background: rgba(255, 183, 3, 0.15);
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-sm);
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.ad-headline {
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 0.85rem;
}

.ad-subheadline {
	font-size: 0.95rem;
	color: var(--yellow-safety);
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.ad-body-text {
	font-size: 0.85rem;
	color: var(--text-body);
	margin-bottom: 1.25rem;
}

.ad-cta-banner {
	background: var(--yellow-safety);
	color: #070c14;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 800;
	padding: 0.6rem 1rem;
	border-radius: var(--radius-sm);
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.ad-card-body {
	padding: 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: var(--bg-card);
	flex-grow: 1;
}

.ad-contact-strip {
	display: grid;
	gap: 0.5rem;
	padding: 0.85rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	font-size: 0.825rem;
}

.ad-contact-strip div {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-body);
}

.ad-contact-strip div span {
	font-family: var(--font-mono);
	color: var(--yellow-safety);
	font-weight: 600;
}

.ad-share-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
}

.ad-share-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.6rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	color: var(--text-title);
	font-size: 0.775rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ad-share-btn:hover {
	background: rgba(255, 183, 3, 0.12);
	border-color: var(--yellow-safety);
	color: var(--yellow-safety);
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
	max-width: 820px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
}

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.2s ease;
}

.faq-item.active {
	border-color: rgba(255, 183, 3, 0.4);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question-btn {
	width: 100%;
	padding: 1.35rem 1.75rem;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	text-align: left;
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	transition: color 0.2s ease;
}

.faq-item.active .faq-question-btn,
.faq-question-btn:hover {
	color: var(--yellow-safety);
}

.faq-chevron {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--yellow-safety);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
	transform: rotate(180deg);
	background: var(--yellow-safety);
	color: #070c14;
}

.faq-answer {
	padding: 0 1.75rem 1.5rem 1.75rem;
	color: var(--text-body);
	font-size: 0.95rem;
	line-height: 1.65;
	border-top: 1px solid transparent;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 183, 3, 0.3);
	box-shadow: var(--shadow-card-hover);
}

.testimonial-rating {
	display: flex;
	gap: 0.25rem;
	color: var(--yellow-safety);
	margin-bottom: 1rem;
	font-size: 1rem;
}

.testimonial-quote {
	font-size: 0.95rem;
	color: var(--text-title);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-style: italic;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-subtle);
}

.author-avatar-circle {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e3a8a, #0b192c);
	border: 1px solid var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #ffffff;
}

.author-details h4 {
	font-size: 0.95rem;
	margin-bottom: 0.15rem;
}

.author-details span {
	font-size: 0.775rem;
	color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-section {
	background: linear-gradient(180deg, #091220 0%, var(--bg-dark) 100%);
	border-top: 1px solid var(--border-subtle);
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 3.5rem;
	align-items: flex-start;
}

.contact-info-panel {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.contact-info-panel h2 {
	font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.contact-lead-text {
	font-size: 1.1rem;
	color: var(--text-body);
	line-height: 1.6;
}

.direct-contact-cards {
	display: grid;
	gap: 1rem;
}

.contact-direct-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.15rem 1.35rem;
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	transition: all 0.2s ease;
}

.contact-direct-item:hover {
	border-color: var(--yellow-safety);
	background: var(--bg-card-hover);
	transform: translateX(4px);
}

.contact-direct-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-icon-bubble {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-md);
	background: rgba(255, 183, 3, 0.12);
	color: var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.contact-icon-bubble.whatsapp {
	background: rgba(37, 211, 102, 0.15);
	color: #25d366;
}

.contact-icon-bubble.email {
	background: rgba(59, 130, 246, 0.15);
	color: #3b82f6;
}

.contact-direct-label {
	font-size: 0.775rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: block;
}

.contact-direct-value {
	font-family: var(--font-mono);
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
}

.contact-actions-row {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

/* Contact Form Card */
.contact-form-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden;
}

.contact-form-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--yellow-safety), var(--blue-siso-light));
}

.form-header {
	margin-bottom: 1.75rem;
}

.form-header h3 {
	font-size: 1.45rem;
	margin-bottom: 0.35rem;
}

.form-header p {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin: 0;
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.15rem;
}

.form-label {
	font-size: 0.825rem;
	font-weight: 600;
	color: var(--text-body);
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: #080f1a;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	color: #ffffff;
	font-family: var(--font-main);
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--yellow-safety);
	box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.2);
}

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

.form-success-banner {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 95, 70, 0.25));
	border: 1px solid #10b981;
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	animation: slideUp 0.3s ease;
}

.success-icon-wrap {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: #10b981;
	color: #070c14;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.success-title {
	font-size: 1.35rem;
	color: #ffffff;
	font-weight: 800;
}

.success-desc {
	font-size: 0.95rem;
	color: #e2e8f0;
	line-height: 1.55;
	margin: 0;
}

/* ==========================================================================
   FLOATING WHATSAPP & BACK TO TOP BUTTONS
   ========================================================================== */
.floating-actions-wrap {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.85rem;
	z-index: 1000;
}

.floating-whatsapp-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem 0.75rem 0.9rem;
	background: #25d366;
	color: #ffffff;
	border-radius: var(--radius-full);
	box-shadow: 0 10px 25px -4px rgba(37, 211, 102, 0.6);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-whatsapp-btn:hover {
	transform: scale(1.06) translateY(-3px);
	box-shadow: 0 14px 30px -4px rgba(37, 211, 102, 0.75);
}

.whatsapp-pulse-ring {
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border-radius: var(--radius-full);
	border: 2px solid #25d366;
	animation: pulse-border 2s infinite cubic-bezier(0.25, 0, 0, 1);
	pointer-events: none;
}

@keyframes pulse-border {
	0% { transform: scale(1); opacity: 0.8; }
	100% { transform: scale(1.25); opacity: 0; }
}

.btn-back-to-top {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	color: var(--yellow-safety);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
	transition: all 0.25s ease;
}

.btn-back-to-top:hover {
	background: var(--yellow-safety);
	color: #070c14;
	transform: translateY(-3px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
	background: #04080e;
	border-top: 1px solid var(--border-subtle);
	padding: 4.5rem 0 2rem 0;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: repeating-linear-gradient(
		-45deg,
		var(--yellow-safety),
		var(--yellow-safety) 10px,
		#04080e 10px,
		#04080e 20px
	);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
	gap: 3rem;
	margin-bottom: 3.5rem;
}

.footer-brand h3 {
	font-size: 1.45rem;
	margin-bottom: 0.25rem;
}

.footer-tagline {
	color: var(--yellow-safety);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.footer-pillars-text {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
}

.footer-desc {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.footer-col-title {
	font-size: 0.95rem;
	font-weight: 800;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.25rem;
}

.footer-nav-list {
	list-style: none;
	display: grid;
	gap: 0.6rem;
}

.footer-nav-link {
	font-size: 0.875rem;
	color: var(--text-body);
	transition: color 0.2s ease;
}

.footer-nav-link:hover {
	color: var(--yellow-safety);
	padding-left: 4px;
}

.footer-contact-list {
	list-style: none;
	display: grid;
	gap: 0.85rem;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--text-body);
}

.footer-contact-item svg {
	color: var(--yellow-safety);
	flex-shrink: 0;
	margin-top: 3px;
}

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

.social-icon-link {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	color: var(--text-body);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	transition: all 0.2s ease;
}

.social-icon-link:hover {
	background: var(--yellow-safety);
	color: #070c14;
	transform: translateY(-3px);
	border-color: var(--yellow-safety);
}

.footer-bottom-bar {
	padding-top: 2rem;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.seo-pill-wrap {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

.seo-mini-pill {
	font-size: 0.7rem;
	color: var(--text-dim);
	background: rgba(255, 255, 255, 0.02);
	padding: 0.15rem 0.45rem;
	border-radius: 4px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.packages-grid {
		grid-template-columns: 1fr;
	}

	.package-card.popular {
		transform: none;
	}

	.modalities-grid {
		grid-template-columns: 1fr;
	}

	.ads-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

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

	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	.stat-item:nth-child(2)::after {
		display: none;
	}
}

@media (max-width: 768px) {
	.nav-links,
	.nav-actions .btn-sm {
		display: none;
	}

	.menu-toggle-btn {
		display: flex;
	}

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

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

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

	.stat-item::after {
		display: none !important;
	}

	.floating-actions-wrap {
		bottom: 1.25rem;
		right: 1.25rem;
	}

	.floating-whatsapp-btn span {
		display: none;
	}

	.floating-whatsapp-btn {
		padding: 0.85rem;
		border-radius: 50%;
	}
}
