/* =========================================================
   I Connect Apple Service Center — Main Stylesheet
   Ported from React/Vite source (HSL design tokens preserved)
   ========================================================= */

:root {
	--background: 0 0% 100%;
	--foreground: 0 0% 7%;
	--card: 0 0% 100%;
	--card-foreground: 0 0% 7%;
	--primary: 211 100% 50%;
	--primary-foreground: 0 0% 100%;
	--secondary: 0 0% 96%;
	--secondary-foreground: 0 0% 7%;
	--muted: 0 0% 96%;
	--muted-foreground: 0 0% 45%;
	--accent: 0 0% 96%;
	--accent-foreground: 0 0% 7%;
	--destructive: 0 84% 60%;
	--border: 0 0% 90%;
	--input: 0 0% 90%;
	--ring: 211 100% 50%;
	--radius: 0.75rem;
	--hero-gradient: linear-gradient(135deg, hsl(0 0% 0%) 0%, hsl(0 0% 15%) 100%);
	--section-alt: 0 0% 97.5%;
	--apple-blue: 211 100% 50%;
	--apple-green: 142 70% 45%;
	--apple-gray: 0 0% 55%;
	--gold: 40 80% 55%;
	--shadow-sm: 0 1px 2px hsl(0 0% 0% / 0.05);
	--shadow-md: 0 4px 12px hsl(0 0% 0% / 0.08);
	--shadow-lg: 0 12px 40px hsl(0 0% 0% / 0.12);
	--shadow-xl: 0 24px 60px hsl(0 0% 0% / 0.15);
}

/* =================== Reset & Base =================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: hsl(var(--foreground));
	background: hsl(var(--background));
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: hsl(var(--primary)); }

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: hsl(var(--foreground)); }

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

::selection { background: hsl(var(--primary) / 0.2); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb { background: hsl(var(--muted-foreground) / 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--muted-foreground) / 0.5); }

/* =================== Layout helpers =================== */
.container-narrow { max-width: 72rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container-narrow { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container-narrow { padding-left: 2rem; padding-right: 2rem; } }

.section-padding { padding: 4rem 1rem; }
@media (min-width: 640px) { .section-padding { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .section-padding { padding: 6rem 2rem; } }

.section-alt { background: hsl(var(--section-alt)); }

.hero-gradient { background: var(--hero-gradient); color: hsl(var(--primary-foreground)); }

.glass-card {
	background: hsl(var(--card) / 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid hsl(var(--border) / 0.5);
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
}

.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.text-gradient {
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	background-image: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(211 80% 65%) 100%);
}

/* =================== Buttons =================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: 9999px; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; white-space: nowrap; }
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-primary:hover { background: hsl(var(--primary) / 0.9); color: hsl(var(--primary-foreground)); }
.btn-dark { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.btn-dark:hover { background: hsl(var(--foreground) / 0.9); color: hsl(var(--background)); }
.btn-outline { background: transparent; color: hsl(var(--foreground)); border: 1px solid hsl(var(--border)); }
.btn-outline:hover { background: hsl(var(--secondary)); }
.btn-whatsapp { background: hsl(var(--apple-green)); color: white; }
.btn-whatsapp:hover { background: hsl(var(--apple-green) / 0.9); color: white; }
.btn-ghost-light { background: hsl(0 0% 100% / 0.1); border: 1px solid hsl(0 0% 100% / 0.2); color: white; }
.btn-ghost-light:hover { background: hsl(0 0% 100% / 0.2); color: white; }

.btn svg { width: 1.1em; height: 1.1em; }

/* =================== Header / Sticky Navbar =================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: hsl(var(--background) / 0.85);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid hsl(var(--border) / 0.5);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
	gap: 1rem;
}
@media (min-width: 1024px) { .site-header__inner { height: 4.5rem; } }

.site-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; color: hsl(var(--foreground)); }
.site-brand:hover { color: hsl(var(--foreground)); }
.site-brand__mark { width: 2rem; height: 2rem; border-radius: 0.5rem; background: hsl(var(--foreground)); color: hsl(var(--background)); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; }
.site-brand__name { display: none; }
@media (min-width: 480px) { .site-brand__name { display: inline; } }

.primary-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .primary-nav { display: flex; } }
.primary-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.primary-nav a {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: hsl(var(--muted-foreground));
	transition: all 0.2s;
}
.primary-nav a:hover { color: hsl(var(--foreground)); background: hsl(var(--secondary) / 0.5); }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a { color: hsl(var(--foreground)); background: hsl(var(--secondary)); }

/* Dropdowns (services) */
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .menu-item-has-children > a::after {
	content: ''; width: 0.5rem; height: 0.5rem;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg); margin-left: 0.25rem; margin-top: -0.2rem;
	transition: transform 0.2s;
}
.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 0.25rem);
	left: 0;
	min-width: 14rem;
	background: hsl(var(--background));
	border: 1px solid hsl(var(--border));
	border-radius: 0.75rem;
	box-shadow: var(--shadow-lg);
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	opacity: 0; visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .sub-menu a {
	display: block; width: 100%;
	padding: 0.625rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.9rem;
	color: hsl(var(--foreground));
}
.primary-nav .sub-menu a:hover { background: hsl(var(--secondary)); }

/* Header CTAs */
.header-actions { display: flex; align-items: center; gap: 0.625rem; }
.header-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.header-actions .btn-call { display: none; }
@media (min-width: 768px) { .header-actions .btn-call { display: inline-flex; } }
.header-actions .btn-book { display: none; }
@media (min-width: 1024px) { .header-actions .btn-book { display: inline-flex; } }

.menu-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
	transition: background 0.2s;
}
.menu-toggle:hover { background: hsl(var(--secondary)); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-nav {
	display: none;
	border-top: 1px solid hsl(var(--border) / 0.5);
	background: hsl(var(--background));
	padding: 1rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
	display: block;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: hsl(var(--muted-foreground));
}
.mobile-nav a:hover, .mobile-nav .current-menu-item > a { color: hsl(var(--foreground)); background: hsl(var(--secondary)); }
.mobile-nav .sub-menu { padding-left: 0.75rem; margin-top: 0.25rem; border-left: 2px solid hsl(var(--border)); }
.mobile-nav .mobile-cta { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* =================== Hero =================== */
.hero {
	position: relative;
	overflow: hidden;
	background: hsl(var(--foreground));
	color: white;
	padding: 4rem 1rem 5rem;
}
@media (min-width: 768px) { .hero { padding: 6rem 1.5rem 7rem; } }
@media (min-width: 1024px) { .hero { padding: 7rem 2rem 8rem; } }

.hero::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at top right, hsl(var(--primary) / 0.18), transparent 60%),
	            radial-gradient(ellipse at bottom left, hsl(211 80% 50% / 0.12), transparent 60%);
	pointer-events: none;
}
.hero__inner { position: relative; max-width: 64rem; margin: 0 auto; text-align: center; }

.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	background: hsl(0 0% 100% / 0.08);
	border: 1px solid hsl(0 0% 100% / 0.15);
	padding: 0.4rem 0.9rem;
	border-radius: 9999px;
	font-size: 0.8rem;
	color: hsl(0 0% 100% / 0.85);
	margin-bottom: 1.5rem;
}
.hero__eyebrow .star { color: hsl(var(--gold)); }

.hero__title {
	font-size: clamp(2rem, 5vw, 3.75rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin-bottom: 1.25rem;
	color: white;
}
.hero__title em { font-style: normal; color: hsl(211 90% 65%); }

.hero__sub {
	font-size: 1.05rem;
	color: hsl(0 0% 100% / 0.75);
	max-width: 42rem;
	margin: 0 auto 2rem;
	line-height: 1.6;
}
@media (min-width: 768px) { .hero__sub { font-size: 1.15rem; } }

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

.hero__chips { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: center; font-size: 0.85rem; color: hsl(0 0% 100% / 0.7); }
.hero__chips span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__chips .dot { width: 0.4rem; height: 0.4rem; border-radius: 50%; background: hsl(var(--apple-green)); }

/* =================== Trust Badges =================== */
.trust-badges { border-bottom: 1px solid hsl(var(--border)); }
.trust-badges__inner { padding: 2rem 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 1024px) { .trust-badges__inner { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item__icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: hsl(var(--secondary)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item__icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--foreground)); }
.trust-item__label { font-size: 0.875rem; font-weight: 600; }
.trust-item__sub { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* =================== Section Headings =================== */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; margin-bottom: 1rem; }
.section-head p { color: hsl(var(--muted-foreground)); max-width: 42rem; margin: 0 auto; }

/* =================== Services Grid =================== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card { display: block; padding: 1.5rem; height: 100%; color: inherit; transition: all 0.3s; }
.service-card:hover { color: inherit; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon {
	width: 3rem; height: 3rem; border-radius: 1rem;
	background: hsl(var(--secondary));
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 1rem;
	transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-card__icon { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.service-card__icon svg { width: 1.5rem; height: 1.5rem; }
.service-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; line-height: 1.5; }
.service-card__cta { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary)); transition: gap 0.2s; }
.service-card:hover .service-card__cta { gap: 0.5rem; }
.service-card__cta svg { width: 0.9rem; height: 0.9rem; }

/* =================== How It Works =================== */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; counter-reset: step; }
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-grid { grid-template-columns: repeat(4, 1fr); } }

.how-step { position: relative; padding: 2rem 1.5rem; background: hsl(var(--background)); border: 1px solid hsl(var(--border)); border-radius: 1rem; }
.how-step__num {
	position: absolute; top: -1rem; left: 1.5rem;
	width: 2.5rem; height: 2.5rem; border-radius: 9999px;
	background: hsl(var(--foreground)); color: hsl(var(--background));
	display: flex; align-items: center; justify-content: center;
	font-size: 0.95rem; font-weight: 800;
}
.how-step__icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); display: flex; align-items: center; justify-content: center; margin: 0.5rem 0 1rem; }
.how-step__icon svg { width: 1.4rem; height: 1.4rem; }
.how-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.how-step p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.55; }

/* =================== Common Issues =================== */
.issues-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .issues-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .issues-grid { grid-template-columns: repeat(3, 1fr); } }

.issue-item {
	display: flex; align-items: flex-start; gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: hsl(var(--background));
	border: 1px solid hsl(var(--border));
	border-radius: 0.75rem;
	font-size: 0.9rem;
	transition: all 0.2s;
}
.issue-item:hover { border-color: hsl(var(--primary) / 0.4); transform: translateY(-2px); }
.issue-item__check { color: hsl(var(--apple-green)); flex-shrink: 0; margin-top: 0.15rem; }
.issue-item__check svg { width: 1.1rem; height: 1.1rem; }
.issue-item__text strong { display: block; font-weight: 600; margin-bottom: 0.15rem; }
.issue-item__text span { color: hsl(var(--muted-foreground)); font-size: 0.8rem; }

/* =================== Lead Capture Form =================== */
.lead-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .lead-section { padding: 6rem 1.5rem; } }

.lead-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .lead-grid { grid-template-columns: 1fr 1fr; } }

.lead-info h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 900; margin-bottom: 1rem; }
.lead-info p { color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }
.lead-info__list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.lead-info__item { display: flex; align-items: flex-start; gap: 0.875rem; }
.lead-info__icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: hsl(var(--secondary)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lead-info__icon svg { width: 1.15rem; height: 1.15rem; }
.lead-info__item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.lead-info__item a, .lead-info__item div { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.lead-info__item a:hover { color: hsl(var(--primary)); }

.lead-form-wrap { padding: 2rem; }
@media (min-width: 768px) { .lead-form-wrap { padding: 2.5rem; } }
.lead-form-wrap h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.4rem; }
.lead-form-wrap p.lead-sub { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }

.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.lead-form label { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.4rem; display: block; }
.lead-form input, .lead-form select, .lead-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid hsl(var(--border));
	background: hsl(var(--background));
	font-size: 0.9rem;
	transition: border 0.2s, box-shadow 0.2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
	outline: none;
	border-color: hsl(var(--ring));
	box-shadow: 0 0 0 3px hsl(var(--ring) / 0.15);
}
.lead-form textarea { resize: vertical; min-height: 6rem; }
.lead-form button[type="submit"] {
	background: hsl(var(--foreground)); color: hsl(var(--background));
	padding: 0.9rem 1.5rem;
	border-radius: 9999px;
	font-weight: 600;
	transition: background 0.2s;
}
.lead-form button[type="submit"]:hover { background: hsl(var(--foreground) / 0.9); }
.lead-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

.lead-form .form-success {
	background: hsl(var(--apple-green) / 0.08);
	border: 1px solid hsl(var(--apple-green) / 0.3);
	border-radius: 0.75rem;
	padding: 1.25rem;
	color: hsl(140 60% 25%);
	font-size: 0.9rem;
	display: none;
}
.lead-form .form-error {
	background: hsl(var(--destructive) / 0.08);
	border: 1px solid hsl(var(--destructive) / 0.3);
	border-radius: 0.75rem;
	padding: 1rem 1.25rem;
	color: hsl(var(--destructive));
	font-size: 0.875rem;
	display: none;
}

/* =================== Map Section =================== */
.map-wrap { border-radius: 1rem; overflow: hidden; border: 1px solid hsl(var(--border)); box-shadow: var(--shadow-lg); }
.map-wrap iframe { display: block; width: 100%; }

/* =================== Testimonials =================== */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { padding: 1.75rem; }
.testimonial-card__stars { color: hsl(var(--gold)); margin-bottom: 0.875rem; font-size: 0.95rem; letter-spacing: 0.1em; }
.testimonial-card__text { color: hsl(var(--muted-foreground)); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid hsl(var(--border)); }
.testimonial-card__avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: hsl(var(--secondary)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: hsl(var(--foreground)); }
.testimonial-card__name { font-size: 0.9rem; font-weight: 600; }
.testimonial-card__role { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* =================== Final CTA =================== */
.final-cta { background: var(--hero-gradient); color: white; }
.final-cta h2 { color: white; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; margin-bottom: 1rem; text-align: center; }
.final-cta p { color: hsl(0 0% 100% / 0.75); max-width: 36rem; margin: 0 auto 2rem; text-align: center; font-size: 1.05rem; }
.final-cta__buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =================== Footer =================== */
.site-footer { background: hsl(var(--foreground)); color: hsl(0 0% 100% / 0.85); }
.site-footer .container-narrow { padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand .site-brand { color: white; margin-bottom: 1rem; }
.footer-brand .site-brand__mark { background: white; color: hsl(var(--foreground)); }
.footer-brand p { font-size: 0.875rem; color: hsl(0 0% 100% / 0.6); line-height: 1.6; margin-bottom: 1rem; }
.footer-brand__rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(0 0% 100% / 0.6); }
.footer-brand__rating .stars { color: hsl(var(--gold)); letter-spacing: 0.1em; }

.site-footer h3 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: hsl(0 0% 100% / 0.85); margin-bottom: 1rem; }
.site-footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer ul a { font-size: 0.875rem; color: hsl(0 0% 100% / 0.6); transition: color 0.2s; }
.site-footer ul a:hover { color: white; }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: hsl(0 0% 100% / 0.6); }
.footer-contact svg { width: 1rem; height: 1rem; margin-top: 0.2rem; flex-shrink: 0; color: hsl(0 0% 100% / 0.4); }
.footer-contact a:hover { color: white; }
.footer-hours { font-size: 0.875rem; color: hsl(0 0% 100% / 0.6); }
.footer-hours div { margin-bottom: 0.25rem; }

.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid hsl(0 0% 100% / 0.1); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: 0.85rem; color: hsl(0 0% 100% / 0.4); }

/* =================== Floating Buttons =================== */
.floating-buttons {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	z-index: 50;
}
@media (min-width: 768px) { .floating-buttons { right: 1.5rem; bottom: 1.5rem; } }
.floating-btn {
	width: 3.5rem; height: 3.5rem;
	border-radius: 9999px;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-lg);
	transition: transform 0.2s, box-shadow 0.2s;
	color: white;
}
.floating-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-xl); color: white; }
.floating-btn--whatsapp { background: hsl(var(--apple-green)); }
.floating-btn--call { background: hsl(var(--primary)); animation: pulse-call 2s infinite; }
.floating-btn svg { width: 1.5rem; height: 1.5rem; }
@keyframes pulse-call {
	0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 hsl(var(--primary) / 0.4); }
	50% { box-shadow: var(--shadow-lg), 0 0 0 12px hsl(var(--primary) / 0); }
}

/* =================== Service Detail Page =================== */
.service-hero { background: var(--hero-gradient); color: white; padding: 5rem 1rem 4rem; }
.service-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.service-hero .breadcrumb { font-size: 0.85rem; color: hsl(0 0% 100% / 0.6); margin-bottom: 1rem; }
.service-hero .breadcrumb a { color: hsl(0 0% 100% / 0.85); }
.service-hero p { color: hsl(0 0% 100% / 0.75); max-width: 42rem; font-size: 1.05rem; margin-bottom: 1.75rem; }

.service-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
@media (min-width: 1024px) { .service-layout { grid-template-columns: 2fr 1fr; gap: 3rem; } }

.service-content h2 { font-size: 1.5rem; font-weight: 900; margin: 2.5rem 0 1.25rem; }
.service-content > h2:first-child { margin-top: 0; }
.service-content p { color: hsl(var(--muted-foreground)); margin-bottom: 1rem; line-height: 1.7; }

.service-list { display: flex; flex-direction: column; gap: 0.75rem; }
.service-list li { display: flex; align-items: flex-start; gap: 0.625rem; color: hsl(var(--muted-foreground)); }
.service-list svg { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.25rem; width: 1rem; height: 1rem; }

.service-process { display: flex; flex-direction: column; gap: 1rem; }
.service-process li { display: flex; align-items: flex-start; gap: 1rem; }
.service-process .num { width: 2rem; height: 2rem; border-radius: 9999px; background: hsl(var(--foreground)); color: hsl(var(--background)); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.service-process p { color: hsl(var(--muted-foreground)); padding-top: 0.25rem; margin: 0; }

.service-issues-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .service-issues-grid { grid-template-columns: repeat(2, 1fr); } }
.service-issues-grid li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.service-issues-grid svg { color: hsl(var(--apple-green)); width: 1rem; height: 1rem; flex-shrink: 0; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid hsl(var(--border)); border-radius: 0.75rem; overflow: hidden; background: hsl(var(--background)); }
.faq-item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1.1rem 1.25rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: hsl(var(--muted-foreground));
	transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid hsl(var(--border)); }
.faq-item .faq-body { padding: 1rem 1.25rem 1.25rem; color: hsl(var(--muted-foreground)); font-size: 0.9rem; line-height: 1.6; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 6rem; }
@media (max-width: 1023px) { .service-sidebar { position: static; } }
.sidebar-card { padding: 1.5rem; }
.sidebar-card h3 { font-weight: 700; margin-bottom: 1rem; font-size: 1.05rem; }
.sidebar-card .actions { display: flex; flex-direction: column; gap: 0.625rem; }
.sidebar-card .actions .btn { width: 100%; padding: 0.75rem 1.25rem; font-size: 0.9rem; }
.sidebar-card__address { display: flex; align-items: flex-start; gap: 0.5rem; padding-top: 1rem; margin-top: 1rem; border-top: 1px solid hsl(var(--border)); font-size: 0.85rem; color: hsl(var(--muted-foreground)); }
.sidebar-card__address svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; }

.rating-card { text-align: center; padding: 1.5rem; }
.rating-card .stars { color: hsl(var(--gold)); font-size: 1.25rem; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.rating-card .num { font-size: 2rem; font-weight: 900; }
.rating-card .label { font-size: 0.85rem; color: hsl(var(--muted-foreground)); }

/* =================== Generic Pages =================== */
.page-hero { background: var(--hero-gradient); color: white; padding: 5rem 1rem 4rem; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
.page-hero p { color: hsl(0 0% 100% / 0.75); max-width: 42rem; margin-top: 1rem; font-size: 1.05rem; }

.entry-content { padding: 4rem 0; max-width: 48rem; margin: 0 auto; }
.entry-content p { margin-bottom: 1rem; line-height: 1.7; color: hsl(var(--foreground) / 0.85); }
.entry-content h2 { font-size: 1.75rem; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.35rem; margin: 1.5rem 0 0.75rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content ul li { list-style: disc; margin-bottom: 0.5rem; }
.entry-content ol li { list-style: decimal; margin-bottom: 0.5rem; }
.entry-content a { color: hsl(var(--primary)); }
.entry-content a:hover { text-decoration: underline; }
.entry-content blockquote { border-left: 3px solid hsl(var(--primary)); padding-left: 1rem; margin: 1.5rem 0; color: hsl(var(--muted-foreground)); font-style: italic; }
.entry-content img { border-radius: 0.75rem; margin: 1.5rem 0; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 4rem 0; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: block; color: inherit; transition: all 0.3s; overflow: hidden; padding: 0; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__thumb { aspect-ratio: 16/10; overflow: hidden; background: hsl(var(--secondary)); }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1.25rem; }
.blog-card__meta { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }

/* Pagination */
.pagination { display: flex; gap: 0.5rem; justify-content: center; padding: 2rem 0 4rem; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 0.5rem 0.875rem; border-radius: 0.5rem; font-size: 0.9rem; border: 1px solid hsl(var(--border)); }
.pagination .current { background: hsl(var(--foreground)); color: hsl(var(--background)); border-color: hsl(var(--foreground)); }
.pagination a:hover { background: hsl(var(--secondary)); }

/* Visually hidden */
.screen-reader-text { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Spacing utilities */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }

/* Print */
@media print {
	.site-header, .site-footer, .floating-buttons, .lead-section { display: none !important; }
}

/* Archive / page hero header */
.page-hero {
	padding: 5rem 1rem 3rem;
	background: var(--hero-gradient);
	color: hsl(var(--primary-foreground));
}
@media (min-width: 768px) { .page-hero { padding: 7rem 2rem 4rem; } }
.page-hero h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 0.75rem;
	color: #fff;
}
.page-hero p {
	font-size: 1.05rem;
	max-width: 60ch;
	color: rgba(255,255,255,0.85);
	margin: 0;
}

/* =================================================================
 * Hero video background
 * ============================================================== */
.hero { position: relative; overflow: hidden; }
.hero__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero__video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0,0,0,0.55) 0%,
		rgba(0,0,0,0.65) 60%,
		rgba(0,0,0,0.85) 100%
	);
}
.hero .container-narrow { position: relative; z-index: 1; }

/* =================================================================
 * Page hero CTA buttons (services landing)
 * ============================================================== */
.page-hero__lead { color: rgba(255,255,255,0.85); margin: 0 0 1.75rem; max-width: 60ch; }
.page-hero__lead p { color: inherit; margin: 0 0 0.5rem; }
.page-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

/* =================================================================
 * Services Landing — large 2-column cards (matches Lovable design)
 * ============================================================== */
.services-grid--2col {
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.services-grid--2col { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.service-card-lg {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: transform 0.25s, box-shadow 0.25s;
}
.service-card-lg:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-lg__icon {
	width: 3.5rem;
	height: 3.5rem;
	background: hsl(var(--secondary));
	border-radius: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: hsl(var(--foreground));
}
.service-card-lg__icon svg { width: 1.75rem; height: 1.75rem; }
.service-card-lg h2 { font-size: 1.5rem; margin: 0; font-weight: 700; }
.service-card-lg__desc { color: hsl(var(--muted-foreground)); margin: 0; line-height: 1.55; }
.service-card-lg__issues h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0.25rem 0 0.5rem;
}
.service-card-lg__issues ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.4rem;
}
@media (min-width: 480px) {
	.service-card-lg__issues ul { grid-template-columns: 1fr 1fr; }
}
.service-card-lg__issues li {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}
.service-card-lg__issues svg {
	width: 1rem;
	height: 1rem;
	color: hsl(var(--apple-green));
	flex-shrink: 0;
}
.service-card-lg__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: hsl(var(--primary));
	font-weight: 600;
	font-size: 0.95rem;
	margin-top: auto;
	padding-top: 0.5rem;
}
.service-card-lg__link:hover { gap: 0.65rem; }
.service-card-lg__link svg { width: 1rem; height: 1rem; }

.section-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* =================================================================
 * Service Detail page
 * ============================================================== */
.service-hero {
	padding: 5rem 1rem 3.5rem;
	background: var(--hero-gradient);
	color: #fff;
}
@media (min-width: 768px) { .service-hero { padding: 6.5rem 2rem 4.5rem; } }
.breadcrumb {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
}
.breadcrumb a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current="page"] { color: #fff; font-weight: 500; }
.service-hero__icon {
	width: 4rem;
	height: 4rem;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}
.service-hero__icon svg { width: 2rem; height: 2rem; color: #fff; }
.service-hero h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
	color: #fff;
}
.service-hero__lead {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.85);
	margin: 0 0 2rem;
	max-width: 60ch;
	line-height: 1.55;
}
.service-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.service-body__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 1024px) {
	.service-body__grid { grid-template-columns: 1fr 22rem; align-items: start; }
}
.service-body__intro p { line-height: 1.65; color: hsl(var(--foreground)); margin: 0 0 1rem; }
.service-body__block { margin-top: 2.5rem; }
.service-body__block h2 { font-size: 1.5rem; margin: 0 0 1rem; font-weight: 700; }

.check-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.6rem;
}
@media (min-width: 640px) { .check-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; } }
.check-grid li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.95rem;
	line-height: 1.5;
}
.check-grid svg {
	width: 1.1rem;
	height: 1.1rem;
	color: hsl(var(--apple-green));
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.process-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	counter-reset: step;
}
.process-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 0.95rem;
	line-height: 1.5;
}
.process-list__num {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	background: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
}

.pricing-block {
	background: hsl(var(--secondary));
	padding: 1.5rem;
	border-radius: 1rem;
	border-left: 4px solid hsl(var(--primary));
}
.pricing-block h2 { margin-top: 0; }

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.faq-item {
	border: 1px solid hsl(var(--border));
	border-radius: 0.75rem;
	padding: 0.5rem 1rem;
	background: #fff;
	transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
	cursor: pointer;
	font-weight: 600;
	padding: 0.75rem 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 400;
	color: hsl(var(--primary));
	transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
	margin: 0 0 0.75rem;
	color: hsl(var(--muted-foreground));
	line-height: 1.6;
}

/* Sidebar quote card */
.service-body__sidebar { position: sticky; top: 6rem; }
.quote-card {
	background: hsl(var(--background));
	border: 1px solid hsl(var(--border));
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}
.quote-card h3 { margin: 0 0 1rem; font-size: 1.15rem; }
.quote-card .btn-block {
	width: 100%;
	justify-content: center;
	margin-bottom: 0.625rem;
}
.btn-success {
	background: hsl(var(--apple-green));
	color: #fff;
}
.btn-success:hover { background: hsl(var(--apple-green) / 0.9); color: #fff; }
.quote-card__addr {
	display: flex;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: hsl(var(--muted-foreground));
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid hsl(var(--border));
	line-height: 1.5;
}
.quote-card__addr svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; }

.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; }
