:root {
    --primary: #0F172A;
    --secondary: #8D1812;
    --accent: #e5e5e5;
    --text: #212529;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --focus-ring: 0 0 0 3px rgba(141, 24, 18, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Accessible focus states for keyboard users */
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

button:focus-visible,
.cta-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    box-shadow: var(--focus-ring);
}

/* Skip-to-content link (accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--secondary);
}

/* Screen-reader-only utility */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    .slider-track {
        animation: none !important;
    }
}

body {
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    z-index: 1001;
    /* Ensure logo stays above mobile menu */
    position: relative;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1001;
    background: transparent;
    border: 0;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

/* ===== Language switcher ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
}

.lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #555;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.lang-switcher a:hover {
    color: var(--primary);
}

.lang-switcher a.active,
.lang-switcher a[aria-current="true"] {
    background: var(--primary);
    color: white;
}

.lang-switcher--footer {
    background: rgba(255, 255, 255, 0.08);
}

.lang-switcher--footer a {
    color: rgba(255, 255, 255, 0.7);
}

.lang-switcher--footer a:hover {
    color: white;
}

.lang-switcher--footer a.active {
    background: var(--secondary);
    color: white;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 3.5rem;
    }
    .nav-actions {
        gap: 0.5rem;
    }
}

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

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

.hero-eyebrow {
    display: inline-block;
    background: rgba(141, 24, 18, 0.08);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-button {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Services */
.services {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Featured (most popular) variant */
.service-card--featured {
    border: 2px solid var(--secondary);
    box-shadow: 0 15px 40px rgba(141, 24, 18, 0.15);
}
.service-card--featured::before {
    transform: scaleX(1);
}

/* Card badges */
.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
}
.service-badge--popular {
    background: var(--secondary);
    color: white;
}
.service-badge--fast {
    background: #fef3c7;
    color: #92400e;
}
.service-badge--local {
    background: #dbeafe;
    color: #1e40af;
}

/* Service tagline */
.service-tagline {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Feature checklist */
.service-features {
    list-style: none;
    margin: 0.5rem 0 1.25rem;
    padding: 0;
    color: #444;
    font-size: 0.92rem;
    flex-grow: 1;
}
.service-features li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.6rem;
    line-height: 1.45;
}
.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
}

/* Time / availability meta */
.service-meta {
    font-size: 0.85rem;
    color: #666;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Service CTA — text-link with arrow */
.service-cta {
    margin-top: auto;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.service-cta span {
    transition: transform 0.2s ease;
    display: inline-block;
}
.service-card:hover .service-cta span {
    transform: translateX(4px);
}
.service-card:hover .service-cta {
    color: var(--primary);
}

/* Service stats banner under section title */
.services-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(141, 24, 18, 0.04), rgba(15, 23, 42, 0.04));
    border-radius: 16px;
    max-width: 800px;
}
.services-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.services-stats strong {
    font-size: 1.75rem;
    color: var(--secondary);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}
.services-stats span {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.4rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(141, 24, 18, 0.1);
    /* Light secondary color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary);
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

.service-card h3 {
    margin: 1.5rem 0 1rem;
}


.buy-button {
    margin-top: auto;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Section padding helper */
.section-padding {
    padding: 6rem 0;
}

.section-eyebrow {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ===== About section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #6d120d 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.12;
}

.about-image__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.about-image__badge strong {
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1;
}
.about-image__badge span {
    color: #444;
    font-size: 0.85rem;
    line-height: 1.3;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.about-lead {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-content p {
    color: #555;
    line-height: 1.7;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.about-credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
}
.about-credential__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.about-credential strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}
.about-credential span {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 5rem;
}

.value-card {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.value-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary), #6d120d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.value-card__icon svg {
    width: 28px;
    height: 28px;
}
.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.value-card p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image__badge {
        right: 1rem;
    }
    .about-content h2 {
        font-size: 2rem;
    }
}

/* ===== Process / Cómo Funciona ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    counter-reset: step;
}

.process-step {
    background: white;
    padding: 2.5rem 2rem 2rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-step__number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(141, 24, 18, 0.12);
    line-height: 1;
}

.process-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary), #6d120d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.process-step__icon svg {
    width: 28px;
    height: 28px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.process-step p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.process-step__time {
    display: inline-block;
    background: rgba(141, 24, 18, 0.08);
    color: var(--secondary);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.process-cta {
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.process-cta p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: #444;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-item[open] {
    border-color: var(--secondary);
    background: #fdfcfb;
}

.faq-item summary {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(141, 24, 18, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary::after {
    content: "−";
    background: var(--secondary);
    color: white;
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 1rem;
    color: #555;
    line-height: 1.65;
    font-size: 0.95rem;
}

.faq-help {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-help p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
}

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

/* ===== Resources / Lead magnets ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #6d120d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(141, 24, 18, 0.2);
}

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

.resource-card__type {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.resource-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(141, 24, 18, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.resource-card__icon svg {
    width: 26px;
    height: 26px;
}

.resource-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.resource-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.resource-card__cta {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: transform 0.2s ease;
    display: inline-block;
}

.resource-card:hover .resource-card__cta {
    transform: translateX(4px);
}

/* ===== Contact section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-method:not(.contact-method--static):hover {
    border-color: var(--secondary);
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-method__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(141, 24, 18, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-method:hover .contact-method__icon {
    background: var(--secondary);
    color: white;
}

.contact-method__icon--whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}
.contact-method:hover .contact-method__icon--whatsapp {
    background: #25d366;
    color: white;
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
}

.contact-method__label {
    display: block;
    font-size: 0.78rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-method strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.contact-method__sub {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

.contact-map {
    margin-top: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Contact form (modernized) */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form__title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.contact-form__subtitle {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.85rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 3px rgba(141, 24, 18, 0.08);
}

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

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

.form-submit {
    margin-top: 0.5rem;
    text-align: center;
    border: 0;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #888;
    margin: 0;
}
.form-note svg {
    color: var(--secondary);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 1.75rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Bio page (sobre-jannis) ===== */
.bio-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.bio-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.bio-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.bio-hero__lead {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bio-hero__stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bio-hero__stats > div {
    display: flex;
    flex-direction: column;
}

.bio-hero__stats strong {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary);
    line-height: 1;
}

.bio-hero__stats span {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.bio-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bio-story__block {
    margin-bottom: 3rem;
}

.bio-story__block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.bio-story__block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.bio-story__block p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.bio-story__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.bio-story__list li {
    padding: 1rem 1.25rem 1rem 3rem;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.bio-story__list li::before {
    content: "✓";
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.credential-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.credential-item:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.credential-item__icon {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.credential-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.credential-item span {
    color: #666;
    font-size: 0.85rem;
}

.bio-quote {
    background: var(--primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.bio-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.bio-quote blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: white;
    font-style: italic;
    margin-bottom: 1rem;
}

.bio-quote cite {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .bio-hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .bio-hero__stats {
        gap: 1.5rem;
    }
    .bio-hero__stats strong {
        font-size: 1.5rem;
    }
}

/* ===== Legal pages (Privacy / Terms) ===== */
.legal-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef0f3 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.legal-hero__subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 2rem;
}

.legal-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: stretch;
}

.legal-hero__meta-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    display: flex;
    flex-direction: column;
    min-width: 130px;
}

.legal-hero__meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 2px;
    font-weight: 600;
}

.legal-hero__meta-item strong {
    color: var(--primary);
    font-size: 0.95rem;
}

.legal-hero__print {
    background: var(--primary);
    color: white;
    border: 0;
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
}
.legal-hero__print:hover {
    background: var(--secondary);
}

.legal-page {
    padding: 3rem 0 5rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sticky Table of Contents */
.legal-toc {
    position: sticky;
    top: 6rem;
}

.legal-toc__inner {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
}

.legal-toc__title {
    font-size: 0.78rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin: 0 0 1rem 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

.legal-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}

.legal-toc__list li {
    counter-increment: toc;
    margin-bottom: 0.4rem;
}

.legal-toc__list a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    line-height: 1.4;
    border-left: 2px solid transparent;
}

.legal-toc__list a::before {
    content: counter(toc) ". ";
    color: var(--secondary);
    font-weight: 600;
}

.legal-toc__list a:hover {
    background: rgba(141, 24, 18, 0.05);
    color: var(--secondary);
    border-left-color: var(--secondary);
}

.legal-toc__cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.legal-toc__cta p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-toc__cta a {
    display: inline-block;
    padding: 0.6rem 1rem;
    background: #25d366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.legal-toc__cta a:hover {
    background: #1ea851;
}

/* Main content */
.legal-page__content {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-page__intro {
    font-size: 1.1rem;
    color: #444;
    padding: 1.5rem 1.75rem;
    background: white;
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.legal-notice {
    padding: 1.25rem 1.5rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #78350f;
}

.legal-notice--prominent {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 0;
    border-left: 6px solid #d97706;
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
}

.legal-notice--prominent strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #78350f;
}

.legal-notice--prominent p {
    margin: 0;
    color: #78350f;
}

/* Sections with icon */
.legal-section {
    margin-bottom: 3rem;
    scroll-margin-top: 6rem;
}

.legal-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), #6d120d);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page__content h2 {
    font-size: 1.5rem;
    margin: 0 0 1.25rem 0;
    color: var(--primary);
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.legal-page__content p {
    margin-bottom: 1rem;
}

.legal-page__content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.25rem;
}

.legal-page__content ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
    position: relative;
    line-height: 1.6;
}

.legal-page__content ul li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.legal-page__content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* Inline cards / highlights */
.legal-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.legal-card p {
    margin: 0;
    line-height: 1.8;
}

.legal-highlight {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    line-height: 1.6;
}
.legal-highlight--success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #064e3b;
}
.legal-highlight--warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #78350f;
}

/* Rights grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.right-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 1rem;
    transition: var(--transition);
}
.right-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}
.right-card strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}
.right-card span {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Services split (terms page) */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}
.service-included,
.service-not-included {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
}
.service-included {
    background: #d1fae5;
    border-left: 4px solid #10b981;
}
.service-not-included {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
}
.service-included h3,
.service-not-included h3 {
    font-size: 0.95rem;
    margin: 0 0 0.75rem 0;
    font-family: 'Inter', sans-serif;
}
.service-included h3 { color: #064e3b; }
.service-not-included h3 { color: #7f1d1d; }
.service-included ul,
.service-not-included ul {
    margin: 0;
}
.service-included ul li,
.service-not-included ul li {
    padding-left: 1.25rem;
    font-size: 0.9rem;
}
.service-included ul li::before { color: #10b981; }
.service-not-included ul li::before { color: #ef4444; }

/* Refund table (terms page) */
.refund-table {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin: 1.5rem 0;
}
.refund-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
}
.refund-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.refund-stage strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
}
.refund-stage span {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.refund-percent {
    text-align: center;
    min-width: 100px;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    line-height: 1.1;
}
.refund-percent strong {
    display: block;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
}
.refund-percent span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.refund-percent--high { background: #d1fae5; color: #064e3b; }
.refund-percent--mid { background: #fef3c7; color: #78350f; }
.refund-percent--none { background: #fee2e2; color: #7f1d1d; }

/* Mini contact grid */
.contact-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.contact-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    text-decoration: none !important;
    color: inherit !important;
    transition: var(--transition);
}
.contact-mini:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.contact-mini__icon {
    font-size: 1.4rem;
}
.contact-mini strong {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-mini span:not(.contact-mini__icon) {
    color: #555;
    font-size: 0.9rem;
}

.legal-page__footer-cta {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--primary), #1e293b);
    color: white;
    border-radius: 20px;
    text-align: center;
}
.legal-page__footer-cta p {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}
.legal-page__footer-cta .cta-button {
    background: white;
    color: var(--primary);
    border-color: white;
}
.legal-page__footer-cta .cta-button:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Footer credit */
.footer-credit {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-credit a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.footer-credit a:hover {
    color: white;
    text-decoration: underline;
}

/* Print styles */
@media print {
    header, footer, .breadcrumb, .legal-toc, .legal-hero__print,
    .legal-page__footer-cta, .skip-link, .mobile-cta-bar,
    .whatsapp-float, .back-to-top, .chat-widget {
        display: none !important;
    }
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .legal-section__icon {
        display: none;
    }
    body {
        padding: 0 !important;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .legal-toc {
        position: static;
    }
    .services-split {
        grid-template-columns: 1fr;
    }
    .refund-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .legal-hero__meta-item {
        min-width: 110px;
        flex: 1 1 calc(50% - 0.5rem);
    }
}

/* ===== Breadcrumb (service pages) ===== */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb a:hover {
    color: var(--secondary);
}
.breadcrumb__sep {
    margin: 0 0.6rem;
    color: #bbb;
}
.breadcrumb__current {
    color: var(--primary);
    font-weight: 600;
}

/* ===== Related services (internal linking) ===== */
.related-services {
    padding: 4rem 0;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.related-services__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.related-services h2 {
    font-size: 1.75rem;
    margin: 0;
}

.related-services__all {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.related-services__all:hover {
    text-decoration: underline;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.related-card {
    position: relative;
    display: block;
    background: white;
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.related-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.related-card__meta {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--secondary);
    font-weight: 600;
}

.related-card__arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--secondary);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.related-card:hover .related-card__arrow {
    transform: translateX(4px);
}

/* CTA strip — sits above the footer to drive conversions */
.cta-strip {
    background: linear-gradient(135deg, var(--secondary) 0%, #6d120d 100%);
    color: white;
    padding: 3.5rem 0;
}
.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-strip h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.cta-strip p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
}
.cta-strip__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-button--whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.cta-button--whatsapp:hover {
    background: #1ea851;
    color: white;
    border-color: #1ea851;
}
.cta-button--outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.cta-button--outline:hover {
    background: white;
    color: var(--secondary);
}

/* ===== Footer ===== */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-col h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--secondary);
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-tagline {
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
}
.footer-rating__stars {
    color: #fbbf24;
    letter-spacing: 1px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: var(--transition);
}

.footer-social__link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-payment-pill {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.88rem;
}

.footer-disclaimer {
    text-align: center;
    opacity: 0.75;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

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

.footer-bottom__row p {
    margin: 0;
    opacity: 0.75;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin: 0 0.4rem;
    transition: var(--transition);
}
.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}
.footer-legal-links span {
    opacity: 0.4;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .cta-strip__inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-strip h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 560px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom__row {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile: keep floating buttons from covering footer content */
@media (max-width: 768px) {
    footer {
        padding-bottom: 6rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float .whatsapp-icon-logo {
        width: 28px !important;
        height: 28px !important;
    }
    .chat-widget {
        bottom: 20px;
        left: 20px;
    }
    .chat-bubble {
        width: 52px;
        height: 52px;
    }
    .hero-trust {
        gap: 0.75rem 1.25rem;
        font-size: 0.88rem;
    }
    .hero-btns .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

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

.hero-image::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #6d120d 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
    transform: rotate(3deg);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.zelle-box h3 {
    margin-bottom: 0.5rem;
}

.zelle-box strong {
    color: var(--primary);
}

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

    .hamburger {
        display: flex;
        /* Show hamburger on mobile */
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        /* Hide off-screen */
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .nav-links a {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
        /* Adjusted for readability */
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-image::after {
        display: none;
    }

    /* Hide CTA in nav on mobile to prevent crowding */
    nav .cta-button {
        display: none;
    }

    /* Service Pages Specifics */
    .service-page-grid {
        grid-template-columns: 1fr !important;
        /* Force single column */
        gap: 2rem !important;
    }

    .service-page-title {
        font-size: 2rem !important;
    }
}



/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary);
    background: transparent;
    border: 0;
    line-height: 1;
    padding: 0.25rem 0.5rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.badge-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 0.5rem;
    fill: var(--secondary);
}

@media (max-width: 768px) {


    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 2rem;
    }

}

/* AI Assistant Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2000;
}

.chat-bubble {
    background-color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 0;
    padding: 0;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.chat-window {
    display: none;
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.close-chat {
    cursor: pointer;
    font-size: 1.5rem;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.9rem;
}

.message.support {
    background: #f0f2f5;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.message.loading {
    opacity: 0.7;
    font-style: italic;
}

.message.user {
    background: var(--secondary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.chat-input button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .chat-window {
        width: 300px;
        height: 400px;
        bottom: 70px;
        left: 0;
    }
}

/* Search Box Styles */
#serviceSearch:focus {
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(141, 24, 18, 0.15);
}

.service-card.hidden {
    display: none !important;
}

.no-results {
    text-align: center;
    grid-column: 1 / -1;
    padding: 2rem;
    color: #666;
    font-size: 1.1rem;
    display: none;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}
.testimonial-card__stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Testimonial Slider Animation — content is duplicated in JS, so -50% loops seamlessly */
.slider-track {
    animation: scroll 50s linear infinite;
}

.slider-track:hover,
.slider-track:focus-within {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Google reviews badge */
.reviews-badge svg {
    flex-shrink: 0;
}

/* ===== Back-to-top button ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 1500;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--secondary);
}

/* ===== Mobile sticky CTA bar ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1900;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    gap: 0.5rem;
}

.mobile-cta-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.65rem 0.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}
.mobile-cta-bar__btn:active {
    transform: scale(0.96);
    background: rgba(0, 0, 0, 0.04);
}
.mobile-cta-bar__btn svg {
    width: 22px;
    height: 22px;
    color: var(--secondary);
}
.mobile-cta-bar__btn--whatsapp {
    background: #25d366;
    color: white;
}
.mobile-cta-bar__btn--whatsapp svg {
    color: white;
}
.mobile-cta-bar__btn--whatsapp:active {
    background: #1ea851;
}

/* Show on mobile, hide floating WhatsApp/chat to avoid duplication */
@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
    body {
        padding-bottom: 70px;
    }
    .whatsapp-float,
    .chat-widget {
        display: none !important;
    }
    .back-to-top {
        bottom: 85px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}