/* IT Integral Service — Modern Design System */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --navy: #0a1142;
    --navy-mid: #121a52;
    --blue: #1e3a8a;
    --blue-light: #2563eb;
    --accent: #f0b429;
    --accent-soft: #fef3c7;
    --accent-glow: rgba(240, 180, 41, 0.35);
    --white: #ffffff;
    --bg: #050508;
    --bg-alt: #0c0c14;
    --surface: #111118;
    --surface-elevated: #181820;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-light: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --footer-bg: #020204;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 76px;
    --chat-width: 340px;
    --chat-height: 480px;

    /* Legacy aliases */
    --primary-blue: var(--navy);
    --secondary-blue: var(--blue);
    --primary-yellow: var(--accent);
    --light-yellow: var(--accent-soft);
    --text-dark: var(--text);
    --gray-light: var(--bg-alt);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 17, 66, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 48px;
    height: auto;
}

.logo-text h1 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2px;
}

.logo-text span {
    color: var(--accent);
}

.logo-text p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-style: normal;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-menu li a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu li.active a {
    color: var(--navy);
    background: var(--accent);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.header-social.social-media a,
.social-media a {
    color: rgba(255, 255, 255, 0.65);
    margin-left: 12px;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.header-social.social-media a:hover,
.social-media a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Legacy header support */
header:not(.site-header) {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 17, 66, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 1px solid rgba(240, 180, 41, 0.35);
}

.btn-service:hover {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ─── Section titles ─── */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(240, 180, 41, 0.12);
    border: 1px solid rgba(240, 180, 41, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title h2::after {
    display: none;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto;
}

.section-title.left {
    text-align: left;
}

.section-title.left p {
    margin: 0;
}

/* ─── Hero Carousel ─── */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: clamp(420px, 65vh, 620px);
}

.carousel-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 clamp(24px, 6vw, 80px);
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 17, 66, 0.92) 0%,
        rgba(10, 17, 66, 0.65) 45%,
        rgba(30, 58, 138, 0.35) 100%
    );
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(240, 180, 41, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.carousel-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    color: var(--white);
    animation: fadeUp 0.7s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-content .hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(240, 180, 41, 0.15);
    border: 1px solid rgba(240, 180, 41, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.carousel-content h2 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.carousel-content h2 span {
    color: var(--accent);
}

.carousel-content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 32px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
}

.carousel-navigation {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 32px;
    height: 4px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent);
    width: 48px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
}

.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }

/* ─── Services (home cards) ─── */
.services {
    padding: 96px 0;
    background: var(--bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 180, 41, 0.2), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(240, 180, 41, 0.4);
}

.service-card--featured {
    border-color: rgba(240, 180, 41, 0.45);
    box-shadow: var(--shadow-md), 0 0 24px rgba(240, 180, 41, 0.08);
}

.service-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--accent);
    padding: 6px 12px;
    border-radius: 100px;
}

.service-card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.service-card-price span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Vendo Systems card */
.service-card--vendo {
    border-color: rgba(196, 30, 42, 0.45);
    box-shadow: var(--shadow-md), 0 0 24px rgba(196, 30, 42, 0.1);
}

.service-card-badge--vendo {
    background: #c41e2a;
    color: var(--white);
}

.service-img--brand {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.service-img--brand img {
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 140px;
    object-fit: contain;
}

.service-card-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #e85d6a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.btn-service--vendo {
    color: #ff6b7a;
    border-color: rgba(196, 30, 42, 0.5);
    background: rgba(196, 30, 42, 0.1);
}

.btn-service--vendo:hover {
    background: #c41e2a;
    color: var(--white);
    border-color: #c41e2a;
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 66, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-img::after {
    opacity: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img--repair img {
    object-position: center 35%;
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.65;
    color: var(--text-muted);
    font-size: 0.9375rem;
    flex: 1;
}

/* ─── Standalone plan / Vendo pages ─── */
.page-plan-section {
    padding: 48px 0 80px;
    background: var(--bg);
}

.page-plan-section .container {
    max-width: 1100px;
}

.page-plan-section .it-plan-card,
.page-plan-section .vendo-showcase {
    display: none;
    margin-top: 24px;
}

.page-plan-section .it-plan-card.active,
.page-plan-section .vendo-showcase.active {
    display: grid;
}

.page-plan-section .language-selector {
    margin-bottom: 8px;
}

/* ─── Featured offerings (services page) ─── */
.featured-offerings {
    padding: 0 0 64px;
    background: var(--bg);
}

.featured-offerings-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.featured-offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.featured-offer-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
}

.featured-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-offer-card--it {
    border-color: rgba(240, 180, 41, 0.35);
}

.featured-offer-card--it:hover {
    border-color: rgba(240, 180, 41, 0.6);
}

.featured-offer-card--vendo {
    border-color: rgba(196, 30, 42, 0.35);
}

.featured-offer-card--vendo:hover {
    border-color: rgba(196, 30, 42, 0.6);
}

.featured-offer-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
    width: fit-content;
}

.featured-offer-card--it .featured-offer-label {
    background: rgba(240, 180, 41, 0.15);
    color: var(--accent);
}

.featured-offer-card--vendo .featured-offer-label {
    background: rgba(196, 30, 42, 0.15);
    color: #e85d6a;
}

.featured-offer-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.featured-offer-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.featured-offer-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-offer-card--vendo .featured-offer-link {
    color: #e85d6a;
}

@media (max-width: 640px) {
    .featured-offerings-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Let Me Be Your IT Plan ─── */
.it-plan-section {
    padding: 0 0 80px;
    background: var(--bg);
}

.it-plan-section .container {
    max-width: 1100px;
}

.it-plan-section .it-plan-card {
    display: none;
}

.it-plan-section .it-plan-card.active {
    display: grid;
}

.it-plan-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    margin-top: 48px;
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(240, 180, 41, 0.35);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(240, 180, 41, 0.08);
}

.it-plan-visual {
    position: relative;
    min-height: 320px;
}

.it-plan-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.it-plan-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.5) 0%, rgba(10, 17, 66, 0.35) 100%);
}

.it-plan-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--accent);
    padding: 8px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.it-plan-body {
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.it-plan-body h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.it-plan-price {
    margin-bottom: 16px;
}

.it-plan-amount {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.it-plan-period {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.it-plan-intro {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.it-plan-includes {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px 16px;
    margin-bottom: 20px;
}

.it-plan-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 500;
}

.it-plan-includes li i {
    color: var(--accent);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.it-plan-clause {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(240, 180, 41, 0.08);
    border: 1px solid rgba(240, 180, 41, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.it-plan-clause > i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.it-plan-clause p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.it-plan-clause strong {
    color: var(--text);
}

.it-plan-body .btn-primary {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .it-plan-card {
        grid-template-columns: 1fr;
    }

    .it-plan-visual {
        min-height: 220px;
    }

    .it-plan-visual img {
        min-height: 220px;
    }

    .it-plan-includes {
        grid-template-columns: 1fr;
    }
}

/* ─── Vendo Systems showcase ─── */
.vendo-section {
    padding: 0 0 80px;
    background: var(--bg);
}

.vendo-section .container {
    max-width: 1100px;
}

.vendo-section .vendo-showcase {
    display: none;
}

.vendo-section .vendo-showcase.active {
    display: grid;
}

.vendo-showcase {
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(196, 30, 42, 0.35);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 32px rgba(196, 30, 42, 0.08);
}

.vendo-showcase-brand {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    gap: 24px;
    position: relative;
}

.vendo-showcase-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(196, 30, 42, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.vendo-showcase-brand img {
    position: relative;
    z-index: 1;
    max-width: 280px;
    width: 100%;
    height: auto;
}

.vendo-badge {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.vendo-showcase-body {
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label--vendo {
    color: #ff6b7a;
    background: rgba(196, 30, 42, 0.12);
    border-color: rgba(196, 30, 42, 0.3);
}

.vendo-showcase-body h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.vendo-intro {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.vendo-capabilities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px 16px;
    margin-bottom: 20px;
}

.vendo-capabilities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 500;
}

.vendo-capabilities li i {
    color: #c41e2a;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.vendo-note {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.btn-primary--vendo {
    background: #c41e2a;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 30, 42, 0.35);
    align-self: flex-start;
}

.btn-primary--vendo:hover {
    background: var(--white);
    color: #c41e2a;
}

@media (max-width: 768px) {
    .vendo-showcase {
        grid-template-columns: 1fr;
    }

    .vendo-showcase-brand {
        padding: 36px 24px;
    }

    .vendo-showcase-brand img {
        max-width: 220px;
    }

    .vendo-capabilities {
        grid-template-columns: 1fr;
    }
}

/* ─── About (home) ─── */
.about {
    padding: 96px 0;
    background: var(--bg-alt);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), var(--blue-light));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--text-muted);
}

.about-content p strong {
    color: var(--text);
}

.about-content .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: rgba(240, 180, 41, 0.4);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-number::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 8px auto 0;
}

.stat-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── CTA ─── */
.cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 96px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(240, 180, 41, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta p {
    max-width: 620px;
    margin: 0 auto 36px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Footer ─── */
footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 72px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 10px;
}

.footer-col p {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--accent);
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    list-style: none;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    padding: 24px 0;
    margin-top: 56px;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
}

footer .social-media a {
    margin-left: 0;
    margin-right: 12px;
}

/* ─── Page title (inner pages) ─── */
.page-title {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
    color: var(--white);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(240, 180, 41, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
}

.page-title h1 span {
    color: var(--accent);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.35);
}

/* ─── About page ─── */
.about-section {
    padding: 64px 0;
}

.about-section .about-content {
    display: flex;
    align-items: center;
    gap: 56px;
}

.about-section .about-text {
    flex: 1;
}

.about-section .about-image {
    flex: 1;
    max-width: 480px;
}

.about-section .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--blue-light));
    border-radius: 2px;
    margin-top: 12px;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--text-muted);
}

.about-text strong {
    color: var(--text);
}

.about-content-spanish,
.about-content-english {
    display: none;
}

.about-content-spanish.active,
.about-content-english.active {
    display: block;
}

/* ─── Services page / about services grid ─── */
.services-section {
    padding: 80px 0;
    background: var(--bg);
}

.services-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-section .section-title {
    margin-bottom: 0;
}

.services-section .services-grid,
#services-grid-es,
#services-grid-en {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--surface-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 180, 41, 0.35);
}

.service-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: var(--accent);
    font-size: 1.25rem;
}

.service-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.service-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Goal section ─── */
.goal-section {
    padding: 72px 0;
    background: var(--bg);
}

.goal-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.goal-text {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.goal-text strong {
    color: var(--text);
}

.signature {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
}

/* ─── Language selector ─── */
.language-selector {
    margin-bottom: 32px;
    text-align: right;
    padding-top: 24px;
}

.lang-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-left: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
}

.lang-btn.active {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
}

.lang-btn:hover:not(.active) {
    border-color: rgba(240, 180, 41, 0.4);
    color: var(--text);
}

.content-es, .content-en {
    display: none;
}

.content-es.active, .content-en.active {
    display: block;
}

/* ─── Services content page ─── */
.services-content {
    padding: 64px 0 80px;
    background: var(--bg);
}

.services-container {
    max-width: 960px;
    margin: 0 auto;
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: clamp(28px, 5vw, 48px);
}

.services-content .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.services-content .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--blue-light));
    border-radius: 2px;
    margin-top: 12px;
}

.services-list {
    margin-top: 24px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.services-list li {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: var(--transition);
}

.services-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(240, 180, 41, 0.35);
    background: var(--surface-elevated);
}

.services-list li strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    border-bottom: none;
    padding-bottom: 0;
}

.services-list li strong::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 1rem;
}

.services-list li p {
    margin-bottom: 0;
    line-height: 1.65;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.intro-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.intro-text strong {
    color: var(--text);
}

.commitment-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.services-content .signature {
    margin-top: 24px;
    text-align: right;
}

/* ─── Contact page ─── */
.contact-section {
    padding: 64px 0 80px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: var(--surface-elevated);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-title,
.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-title::after,
.form-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-list li > i {
    width: 44px;
    height: 44px;
    background: var(--surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1rem;
    border: 1px solid var(--border);
}

.info-content h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-content p {
    color: var(--text);
    font-weight: 600;
}

.social-icons {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.social-icons h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--border);
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
}

.contact-form {
    background: var(--surface-elevated);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--surface);
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: rgba(240, 180, 41, 0.5);
    background: var(--bg-alt);
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.map-section {
    padding-bottom: 80px;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ─── Thank you page ─── */
.thank-you {
    padding: 100px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    background: var(--surface-elevated);
    padding: 56px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.thank-you-content i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 24px;
}

.thank-you h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.thank-you p {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thank-you .btn-primary {
    margin-top: 24px;
}

/* ─── Chat widget ─── */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.chat-button {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffc94d);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px var(--accent-glow);
    transition: var(--transition);
    position: relative;
    border: none;
}

.chat-button i {
    font-size: 1.35rem;
}

.chat-button:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    border: 2px solid var(--white);
}

.chat-box {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: var(--chat-width);
    height: var(--chat-height);
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
}

.chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
    background: var(--navy-mid);
}

.chat-header h3 {
    font-size: 0.9375rem;
    font-weight: 700;
}

.status-indicator {
    font-size: 0.75rem;
    color: #86efac;
}

.chat-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg);
}

.message {
    max-width: 85%;
}

.message.received { align-self: flex-start; }
.message.sent { align-self: flex-end; }

.message-content {
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.5;
}

.message.received .message-content {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    color: var(--text);
}

.message.sent .message-content {
    background: var(--navy);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.6875rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    text-align: right;
}

.message.sent .message-time {
    color: rgba(255, 255, 255, 0.6);
}

.chat-user-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px 0;
    background: var(--surface-elevated);
}

.chat-name,
.chat-email {
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    background: var(--surface);
    outline: none;
    font-size: 0.8125rem;
    font-family: inherit;
    color: var(--text);
}

.chat-name:focus,
.chat-email:focus {
    border-color: rgba(240, 180, 41, 0.5);
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.1);
}

.chat-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.chat-input-container {
    display: flex;
    align-items: center;
    padding: 12px;
    border-top: 1px solid var(--border);
    background: var(--surface-elevated);
    gap: 8px;
}

.chat-input {
    flex: 1;
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: var(--surface);
    outline: none;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text);
}

.chat-input:focus {
    border-color: rgba(240, 180, 41, 0.5);
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.1);
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--accent);
    color: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chat-send:hover {
    background: var(--navy);
    color: var(--accent);
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .about-container,
    .about-section .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-section .about-image {
        max-width: 100%;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 68px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-inner {
        flex-wrap: wrap;
        position: relative;
    }

    .main-nav {
        order: 3;
        flex: 1 1 100%;
        justify-content: flex-end;
        position: static;
    }

    .main-nav .nav-menu {
        position: absolute;
        top: calc(100% + 4px);
        left: 24px;
        right: 24px;
        flex-direction: column;
        background: var(--navy-mid);
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        gap: 4px;
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.35s ease, max-height 0.35s ease;
        overflow: hidden;
        max-height: 0;
        z-index: 1001;
    }

    .main-nav .nav-menu.active {
        clip-path: inset(0 0 0 0);
        max-height: 320px;
    }

    .main-nav .nav-menu li {
        width: 100%;
    }

    .header-social {
        display: none;
    }

    .nav-menu li a {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .hero-carousel {
        height: clamp(360px, 55vh, 480px);
    }

    .carousel-content {
        text-align: left;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .page-title {
        padding: 56px 0;
    }

    .contact-info,
    .contact-form {
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 40px;
    }

    .logo-text h1 {
        font-size: 0.95rem;
    }

    .logo-text p {
        font-size: 0.625rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow.prev { left: 12px; }
    .carousel-arrow.next { right: 12px; }

    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-box {
        width: calc(100vw - 32px);
        right: -8px;
    }

    .chat-user-fields {
        grid-template-columns: 1fr;
    }
}
