/* ============================================
   SERLIMPIN S.L. — Conversion-Optimized Landing Page
   Mobile-first, lightweight, professional
   ============================================ */

:root {
    /* Color Palette — Dark navy + vibrant amber for trust & action */
    --primary: #0c1829;
    --primary-light: #162340;
    --primary-medium: #1e3152;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: rgba(245, 158, 11, 0.12);
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-light: rgba(34, 197, 94, 0.1);
    --bg-main: #f8fafc;
    --bg-soft: #f1f5f9;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: rgba(255, 255, 255, 0.85);
    --white: #ffffff;
    --border: #e2e8f0;
    --border-light: rgba(255, 255, 255, 0.1);

    /* Tokens */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.08);
    --shadow-md: 0 4px 16px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 12px 40px rgb(0 0 0 / 0.12);
    --shadow-xl: 0 20px 60px rgb(0 0 0 / 0.15);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);

    /* Fluid Typography */
    --text-sm: clamp(0.875rem, 0.85rem + 0.13vw, 0.9375rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.38vw, 1.3125rem);
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
    --text-3xl: clamp(2rem, 1.6rem + 2vw, 3.25rem);
    --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-main);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

address {
    font-style: normal;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}

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

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent-light);
    color: var(--accent-hover);
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-label-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.section-header h2 {
    font-size: var(--text-2xl);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn svg,
.btn i {
    width: 20px;
    height: 20px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
    border-radius: var(--radius-md);
}

.btn-lg svg,
.btn-lg i {
    width: 22px;
    height: 22px;
}

.btn-cta-phone {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-cta-phone:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-cta-whatsapp {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.btn-cta-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: var(--text-light);
    font-size: var(--text-sm);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-left span,
.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.top-bar-left i,
.top-bar-right i {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.top-bar-right a {
    color: var(--accent);
    font-weight: 700;
    font-size: var(--text-base);
}

.top-bar-right a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(12, 24, 41, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

#navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    color: var(--white);
}

.logo-text .accent {
    color: var(--accent);
}

#navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

#navbar.scrolled .nav-links li a {
    color: var(--text-body);
}

.nav-links li a:hover {
    color: var(--accent) !important;
}

#navbar.scrolled .nav-links li a:hover {
    color: var(--accent-hover) !important;
}

.nav-phone {
    font-weight: 700 !important;
    color: var(--accent) !important;
}

.nav-phone i {
    width: 16px;
    height: 16px;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    color: var(--white);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

#navbar.scrolled .mobile-toggle {
    color: var(--text-dark);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 24, 41, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.mobile-menu-header .logo-text {
    color: var(--text-dark);
}

.close-menu {
    cursor: pointer;
    color: var(--text-body);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 50%;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-links li a {
    font-size: 1.375rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    display: block;
    padding: 0.25rem 0;
}

.mobile-phone {
    color: var(--accent-hover) !important;
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu-footer .social-links .social-icon {
    background: var(--bg-soft);
    color: var(--text-body);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background-image: url('assets/img/mainimage.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding: 140px 0 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(12, 24, 41, 0.92) 0%,
            rgba(12, 24, 41, 0.78) 40%,
            rgba(12, 24, 41, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 1.25rem;
    line-height: 1.08;
}

.hero-subtitle {
    font-size: var(--text-xl);
    max-width: 550px;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-subtitle strong {
    color: var(--accent);
}

.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.trust-point i {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

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

.hero-phone-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-lg);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.hero-phone-display i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.hero-phone-display a {
    color: var(--white);
}

.hero-phone-display a:hover {
    color: var(--accent);
}

/* ===== TRUST BANNER ===== */
.trust-section {
    background: var(--primary);
    padding: 0;
    position: relative;
    margin-top: -3rem;
    z-index: 10;
}

.trust-banner {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-xl);
}

.trust-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.trust-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== ABOUT / TRUST SECTION ===== */
.about-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

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

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 1/1;
    width: 100%;
}

.about-text h2 {
    font-size: var(--text-2xl);
    margin-bottom: 1rem;
}

.about-text>p {
    color: var(--text-body);
    margin-bottom: 2rem;
    font-size: var(--text-base);
    line-height: 1.7;
}

.about-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-service-item:hover {
    background: var(--accent-light);
    transform: translateX(4px);
}

.about-service-item i {
    width: 24px;
    height: 24px;
    color: var(--accent-hover);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-service-item strong {
    display: block;
    font-size: var(--text-base);
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}

.about-service-item span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.about-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-dark);
}

.trust-badge-item i {
    width: 20px;
    height: 20px;
    color: var(--green);
}

/* ===== SERVICES ===== */
.services-section {
    padding: 6rem 0;
    background: var(--bg-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-icon-wrap i {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
    color: var(--primary);
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-link {
    color: var(--accent-hover);
    font-weight: 700;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-link:hover {
    color: var(--primary);
    gap: 0.5rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.how-it-works .section-header h2 {
    color: var(--white);
}

.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3.5rem;
    justify-content: center;
}

.step-card {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    max-width: 340px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
}

.step-icon {
    margin-bottom: 1.25rem;
}

.step-icon i {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.step-card h3 {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
    padding-top: 4rem;
}

.step-connector i {
    width: 32px;
    height: 32px;
}

.steps-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

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

.review-stars {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-quote {
    color: var(--text-body);
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-dark);
}

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

.reviews-google {
    margin-top: 2.5rem;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-body);
    transition: var(--transition);
}

.google-reviews-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.google-reviews-link img {
    flex-shrink: 0;
}

.google-rating {
    color: var(--accent-hover);
    font-weight: 700;
}

/* ===== GALLERY / BEFORE & AFTER ===== */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.gallery-caption {
    padding: 1rem 1.25rem;
    background: var(--white);
}

.gallery-caption span {
    font-size: var(--text-sm);
    color: var(--text-body);
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
    color: var(--white);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: var(--text-3xl);
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-content>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-lg);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.final-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-lg);
    font-weight: 600;
}

.final-cta-phone i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.final-cta-phone a {
    color: var(--white);
}

.final-cta-phone a:hover {
    color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
    padding: 4rem 0 1.5rem;
    background: var(--primary);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info>.logo-text {
    margin-bottom: 1rem;
    display: block;
}

.footer-info p {
    margin: 1rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.7;
}

footer strong {
    color: var(--accent);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--accent);
}

.footer-col ul li {
    margin-bottom: 0.625rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
}

.footer-col ul li i {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #25d366;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    font-size: var(--text-sm);
}

.whatsapp-float i {
    width: 22px;
    height: 22px;
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: #1db954;
}

.phone-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    color: var(--primary);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-phone 2s infinite;
}

.phone-float i {
    width: 24px;
    height: 24px;
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

@keyframes pulse-phone {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(245, 158, 11, 0.7), 0 0 0 12px rgba(245, 158, 11, 0.1);
    }
}

/* ===== ANIMATIONS ===== */
.animate-up,
.animate-left,
.animate-right {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-up {
    transform: translateY(24px);
}

.animate-left {
    transform: translateX(-24px);
}

.animate-right {
    transform: translateX(24px);
}

.animate-up.active,
.animate-left.active,
.animate-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.service-card,
.step-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.service-card.active,
.step-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .about-image {
        order: -1;
    }

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

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

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .trust-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-trust-points {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .hero-cta-group .btn {
        width: 100%;
    }

    .trust-banner {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }

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

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 360px;
    }

    .steps-cta {
        flex-direction: column;
        align-items: center;
    }

    .steps-cta .btn {
        width: 100%;
        max-width: 360px;
    }

    .phone-float {
        display: flex;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 0.875rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* ===== SUBPAGE STYLES (kept for compatibility) ===== */
.hero-subpage {
    height: 40vh;
    background: linear-gradient(rgba(12, 24, 41, 0.9), rgba(12, 24, 41, 0.7)), url('assets/img/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-subpage h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    color: var(--white);
}

.content-section {
    padding: 6rem 0;
}

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

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.main-content h2 {
    font-size: 2.25rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary);
}

.main-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.main-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.main-content ul {
    margin-bottom: 2rem;
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.main-content ul li {
    margin-bottom: 0.75rem;
}

.sidebar {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    margin-bottom: 1rem;
}

.sidebar h4 {
    margin: 2rem 0 1rem;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 0.75rem;
}

.sidebar ul li a {
    color: var(--accent-hover);
    font-weight: 600;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.link-more {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    color: var(--accent-hover);
    font-weight: 700;
    transition: var(--transition);
}

.link-more:hover {
    gap: 0.75rem;
}

strong {
    color: inherit;
    font-weight: 700;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 120px 0 80px;
    background: var(--bg-main);
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.legal-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.legal-content a {
    color: var(--accent-hover);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary);
}

/* ===== GLASS CARD (legacy compat) ===== */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* bg-soft compat */
.bg-soft {
    background: var(--bg-soft);
}

/* ===== CONTACT SECTION (for subpages) ===== */
.contact {
    padding: 6rem 0;
}

.narrow {
    max-width: 800px;
}

.container.narrow {
    max-width: 800px;
}

.contact-quick {
    padding: 2.5rem;
    margin-top: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    background: var(--white);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info h3 {
    margin-bottom: 0.25rem;
    color: var(--primary);
    font-size: var(--text-lg);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.375rem;
    font-size: var(--text-base);
    font-weight: 500;
}

.contact-badge {
    display: inline-block;
    padding: 0.2rem 0.625rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-light);
    color: var(--accent-hover);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-accent {
    background: var(--accent-light);
    color: var(--accent-hover);
}

/* Check list */
.check-list {
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.check-list i {
    color: var(--accent-hover);
}