:root {
    --primary: #0a7b6c;
    --primary-dark: #065a4f;
    --primary-light: #e6f5f2;
    --primary-glow: rgba(10, 123, 108, 0.15);
    --accent: #c9a227;
    --accent-light: #f5edd4;
    --text: #1c2331;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f4f8f7;
    --bg-dark: #0f1f1c;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 2px 8px rgba(15, 31, 28, 0.06);
    --shadow: 0 8px 30px rgba(15, 31, 28, 0.1);
    --shadow-lg: 0 20px 60px rgba(15, 31, 28, 0.14);
    --shadow-primary: 0 8px 24px rgba(10, 123, 108, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 90px;
    --topbar-h: 40px;
}

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

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Top Bar ─── */
.top-bar {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

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

.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    transition: color var(--transition);
}
.top-bar-item:hover { color: #fff; }
.top-bar-item svg { flex-shrink: 0; opacity: 0.7; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 123, 108, 0.35);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    box-shadow: var(--shadow);
}
.btn-white:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ─── Header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}
.logo-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-img {
    height: 78px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-nav-header,
.mobile-only,
.nav-cta-mobile {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
    position: relative;
}
.main-nav a:hover { color: var(--primary); background: var(--primary-light); }
.main-nav a.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.header-cta { flex-shrink: 0; }
.nav-cta-mobile { display: none; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--primary-light);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    z-index: 1002;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-overlay {
    visibility: hidden;
    position: fixed;
    inset: 0;
    background: rgba(15, 31, 28, 0.45);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* ─── Sections ─── */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark {
    background: var(--bg-dark);
    color: #fff;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: var(--primary-light);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.75;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Hero ─── */
.hero {
    padding: 60px 0 0;
    background: linear-gradient(160deg, #f0faf8 0%, #fff 40%, var(--bg-alt) 100%);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--topbar-h) - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero--video {
    background: #0a3d35;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video--portrait {
    display: none;
}

@media (max-width: 768px) {
    .hero-video--landscape {
        display: none;
    }

    .hero-video--portrait {
        display: block;
    }
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 38, 34, 0.72) 0%,
        rgba(10, 55, 48, 0.45) 40%,
        rgba(255, 255, 255, 0.18) 70%,
        rgba(255, 255, 255, 0.1) 100%
    );
    pointer-events: none;
}

.hero--video::before,
.hero--video::after {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .hero--video {
        background: linear-gradient(160deg, #f0faf8 0%, #fff 40%, var(--bg-alt) 100%);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 40px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 22px;
    color: var(--text);
    letter-spacing: -1px;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-trust-avatars {
    display: flex;
}
.hero-trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.hero-trust-avatars img:first-child { margin-left: 0; }

.hero-trust-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}
.hero-trust-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.hero-trust-text .stars { color: var(--accent); }

.hero-image {
    position: relative;
}
.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,123,108,0.15) 100%);
    z-index: 1;
    border-radius: var(--radius-xl);
}
.hero-image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 1px solid var(--border-light);
}
.hero-float-card.rating {
    bottom: 30px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-float-card.rating .score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.hero-float-card.rating .label { font-size: 0.78rem; color: var(--text-muted); }
.hero-float-card.rating .stars { color: var(--accent); font-size: 0.85rem; }

.hero-float-card.experience {
    top: 30px;
    right: -20px;
    text-align: center;
    padding: 20px;
}
.hero-float-card.experience .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.hero-float-card.experience .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero info cards */
.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.info-card:hover::before { transform: scaleX(1); }

.info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.info-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.info-card p, .info-card li {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.info-card ul { list-style: none; }
.info-card li { margin-bottom: 6px; }
.info-card li strong { color: var(--text); font-weight: 600; }

.review-badge { display: flex; align-items: flex-start; gap: 12px; }
.review-badge img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.review-badge .stars { color: var(--accent); font-weight: 700; font-size: 1rem; }

/* ─── About ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: var(--shadow);
}
.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    color: #fff;
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-primary);
}
.about-experience-badge .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.about-experience-badge .label { font-size: 0.78rem; opacity: 0.9; margin-top: 4px; }

.about-content ul { list-style: none; margin: 28px 0; }
.about-content li {
    padding: 12px 0 12px 36px;
    position: relative;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}
.about-content li:last-child { border-bottom: none; }
.about-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--primary-light);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a7b6c' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ─── Stats ─── */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item { padding: 16px; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-number span { font-size: 0.6em; opacity: 0.8; }
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-top: 10px;
    font-weight: 500;
}

/* ─── Services ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    group: service;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    position: relative;
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.06); }

.service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,123,108,0.4) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover .service-card-img::after { opacity: 1; }

.service-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 1;
}

.service-card-body { padding: 28px; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}
.service-card-link svg { transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ─── Why Choose ─── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.feature-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.feature-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateX(6px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Process ─── */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.process-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.process-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.process-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}
.process-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.process-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.process-list li:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 36px 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.cta-banner p { font-size: 1.15rem; position: relative; }
.cta-banner strong { font-weight: 700; }
.cta-banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ─── Steps ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    padding: 40px 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 20px;
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.help-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
    padding: 36px 48px;
    border-radius: var(--radius-lg);
    margin-top: 56px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.help-banner-content { display: flex; align-items: center; gap: 20px; }
.help-banner-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.help-banner h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.help-banner p { font-size: 0.875rem; color: var(--text-muted); }
.help-banner a.phone-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* ─── Benefits ─── */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.benefit-item {
    padding: 22px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.benefit-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.benefit-item-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.benefit-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.benefit-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.benefits-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.benefits-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* ─── Gallery ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: 'Before & After';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover::after { transform: translateY(0); }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.faq-item.active { box-shadow: var(--shadow); border-color: var(--primary); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.975rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--text);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { color: var(--primary); }

.faq-question .icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all var(--transition);
}
.faq-item.active .faq-question .icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.75;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* ─── Testimonials ─── */
.testimonials-wrapper { position: relative; }

.testimonials-slider { overflow: hidden; border-radius: var(--radius-xl); }

.testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.testimonial-card {
    flex: 0 0 100%;
    padding: 56px 48px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--primary-light);
    line-height: 0.5;
    margin-bottom: 20px;
    display: block;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.testimonial-author span { font-size: 0.82rem; color: var(--primary); font-weight: 500; }

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ─── Client logos ─── */
.brands-section { padding: 60px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

.brands-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.client-logos img {
    height: 36px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--transition);
}
.client-logos img:hover { opacity: 1; filter: none; }

/* ─── Team ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-img { position: relative; overflow: hidden; }
.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover img { transform: scale(1.05); }

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,123,108,0.85) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-specialty {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.team-card-body {
    padding: 22px 24px;
    text-align: center;
}
.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.team-card span {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
}

/* ─── Blog ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.blog-card-img { overflow: hidden; }
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover img { transform: scale(1.05); }

.blog-card-body { padding: 28px; }
.blog-card-date {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.45;
    color: var(--text);
}
.blog-card a.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
}

/* ─── Appointment ─── */
.appointment-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3d36 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    position: relative;
    overflow: hidden;
}
.appointment-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,123,108,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.appointment-info .section-label {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}
.appointment-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}
.appointment-info > p { color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.75; }

.appointment-info .contact-detail {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 12px;
    line-height: 1.55;
    font-size: 0.95rem;
}

.appointment-info .contact-detail a {
    color: #fff;
    text-decoration: none;
}

.appointment-info .contact-detail a:hover {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-details-list { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.contact-detail-item .icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-item a { color: #fff; }
.contact-detail-item a:hover { color: var(--accent-light); }

.appointment-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

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

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.925rem;
    transition: all var(--transition);
    background: var(--bg-alt);
    color: var(--text);
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 0.875rem;
    display: none;
    font-weight: 500;
}
.form-message.success { display: block; background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-message.error { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ─── Page Hero ─── */
.page-hero {
    padding: 80px 0 70px;
    background: linear-gradient(160deg, var(--primary-light) 0%, #fff 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* ─── Contact page ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}

.contact-info-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all var(--transition);
}
.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.contact-info-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-info-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info-card p, .contact-info-card a { font-size: 1rem; font-weight: 600; color: var(--text); }

.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--bg-dark);
    color: #fff;
    margin-top: 0;
}

.footer-cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 0;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.footer-cta-inner h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.footer-cta-inner p { opacity: 0.85; font-size: 0.95rem; }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 48px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    line-height: 0;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    min-width: 160px;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.social-links { display: flex; gap: 10px; }
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer-contact h3,
.footer-location h3,
.footer-links h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
}

.footer-list { list-style: none; }
.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-list li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-list a { color: rgba(255,255,255,0.8); }
.footer-list a:hover { color: #fff; }

.hours-list li {
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 8px;
}
.hours-list li span:first-child { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

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

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

.footer-legal-links a:hover {
    color: #fff;
}

/* Floating action buttons */
.whatsapp-fab {
    display: flex;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform var(--transition);
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    color: #fff;
}

.mobile-fab {
    display: none;
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    z-index: 998;
    transition: transform var(--transition);
}
.mobile-fab:hover { transform: scale(1.08); color: #fff; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .hero-grid, .about-grid, .why-grid, .process-grid, .benefits-grid,
    .appointment-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .hero-image { order: -1; }
    .hero-float-card.rating { left: 10px; bottom: 10px; }
    .hero-float-card.experience { right: 10px; top: 10px; }

    .about-img-secondary { right: 10px; bottom: -20px; width: 160px; height: 160px; }
    .about-experience-badge { left: 10px; }

    .hero-info-cards { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-list { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .why-image img, .benefits-image img, .process-image img { height: 380px; }
}

@media (max-width: 768px) {
    :root {
        --header-h: 72px;
        --topbar-h: 0px;
    }

    .top-bar { display: none; }

    .container { padding: 0 18px; }
    .section { padding: 72px 0; }

    .logo-img {
        height: 44px;
        max-width: 180px;
    }

    .mobile-toggle { display: flex; }
    .header-cta { display: none; }
    .mobile-fab { display: flex; }

    .mobile-only,
    .mobile-nav-header {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 85vw);
        height: 100dvh;
        height: 100vh;
        flex: none;
        flex-direction: column;
        justify-content: flex-start;
        background: #fff;
        padding: 20px 20px 32px;
        padding-top: max(20px, env(safe-area-inset-top));
        padding-bottom: max(32px, env(safe-area-inset-bottom));
        box-shadow: -8px 0 40px rgba(0,0,0,0.18);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1051;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }

    .main-nav.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .mobile-nav-header {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-nav-logo {
        height: 40px;
        width: auto;
        max-width: 140px;
        object-fit: contain;
    }

    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: none;
        background: var(--primary-light);
        color: var(--primary-dark);
        font-size: 1.5rem;
        line-height: 1;
        border-radius: 8px;
        cursor: pointer;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-cta-mobile {
        display: flex;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { min-height: auto; padding-top: 20px; }
    .hero-grid { padding: 20px 0 40px; gap: 32px; }
    .hero-content h1 { font-size: 2rem; letter-spacing: -0.5px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }

    .hero-info-cards { grid-template-columns: 1fr; gap: 14px; padding-bottom: 40px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item { padding: 12px; }

    .services-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gallery-item img { height: 180px; }

    .benefits-list { grid-template-columns: 1fr; }
    .benefits-grid { gap: 40px; }
    .benefits-image img { height: 300px; }

    .process-list { grid-template-columns: 1fr; }
    .about-img-main { height: 320px; }
    .about-img-secondary { display: none; }
    .about-experience-badge { position: static; display: inline-block; margin-bottom: 20px; }

    .form-row { grid-template-columns: 1fr; }
    .appointment-section { padding: 36px 24px; border-radius: var(--radius-lg); }
    .appointment-form { padding: 24px; }

    .help-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
    .help-banner-content { flex-direction: column; }

    .testimonial-card { padding: 36px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-inner .btn { width: 100%; justify-content: center; }

    .contact-form-wrap { padding: 24px; }
    .cta-banner { padding: 28px 24px; }

    .page-hero { padding: 60px 0 50px; }
}

@media (max-width: 380px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-float-card { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Homepage Redesign ─── */
.hero--home {
    min-height: calc(100vh - var(--topbar-h) - var(--header-h));
    padding-bottom: 0;
}

.hero--video.hero--home .hero-video-overlay {
    background: linear-gradient(
        100deg,
        rgba(5, 32, 28, 0.84) 0%,
        rgba(8, 48, 42, 0.62) 32%,
        rgba(10, 61, 53, 0.28) 52%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0.04) 100%
    );
}

.hero--video.hero--home .hero-content h1 {
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero--video.hero--home .hero-content h1 em {
    color: #8ee4d8;
}

.hero--video.hero--home .hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

.hero--video.hero--home .hero-trust {
    border-top-color: rgba(255, 255, 255, 0.22);
}

.hero--video.hero--home .hero-trust-text strong {
    color: #fff;
}

.hero--video.hero--home .hero-trust-text span {
    color: rgba(255, 255, 255, 0.78);
}

.hero--video.hero--home .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.hero--video.hero--home .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

.hero-home-grid {
    max-width: 720px;
    padding: 48px 0 32px;
    position: relative;
    z-index: 1;
}

.hero-quick-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-bottom: 48px;
    position: relative;
    z-index: 1;
}

.hero-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 18px 20px;
    color: var(--text-muted);
    font-size: 0.82rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-decoration: none;
}

a.hero-quick-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-quick-item svg {
    flex-shrink: 0;
    color: var(--primary);
    opacity: 0.8;
}

.hero-quick-item strong {
    display: block;
    color: var(--text);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stats-grid--4,
.stats-section .stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.steps-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover img {
    transform: scale(1.06);
}

.showcase-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.blog-date {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

@media (max-width: 1100px) {
    .hero-quick-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero--home {
        min-height: auto;
    }

    .hero-home-grid {
        padding: 24px 0 20px;
    }

    .hero-quick-strip {
        grid-template-columns: 1fr;
        padding-bottom: 32px;
    }

    .steps-grid--4 {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .showcase-item {
        aspect-ratio: 1;
    }
}

/* ─── Utilities & inner pages ─── */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin: 32px 0 12px;
    color: var(--text);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.map-wrap iframe {
    display: block;
    width: 100%;
}

.blog-article {
    max-width: 800px;
}

.blog-article-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

