/* Admin link badge */
.admin-badge{
    display:inline-flex;
    align-items:center;
    margin-left:8px;
    padding:2px 8px;
    font-size:12px;
    letter-spacing:.08em;
    text-transform:uppercase;
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    color:rgba(255,255,255,.75);
    background:rgba(255,255,255,.06);
    line-height:1.6;
}
@media (prefers-color-scheme: light){
    .admin-badge{
        border-color:rgba(0,0,0,.12);
        color:rgba(0,0,0,.6);
        background:rgba(0,0,0,.04);
    }
}

/* Language change notification animations */
@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.language-notification {
    animation: slideInUp 0.3s ease-out;
}

:root {
    --color-bg: #05061a;
    --color-surface: #0b1030;
    --color-surface-dark: #060a24;
    --color-card: rgba(16, 21, 48, 0.9);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-primary: #1d1c8f;
    --color-primary-light: #5858ff;
    --color-secondary: #111444;
    --color-text: #eef1ff;
    --color-text-muted: #a6b1e0;
    --grad-hero: radial-gradient(circle at 12% 18%, rgba(88, 88, 255, 0.32), transparent 55%), radial-gradient(circle at 82% 10%, rgba(52, 90, 255, 0.28), transparent 62%), linear-gradient(140deg, #05061a 0%, #11163f 52%, #05061a 100%);
    --shadow-soft: 0 24px 60px rgba(18, 30, 110, 0.4);
    --transition-base: 0.25s ease;
    --header-height: 88px;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background: #02030a;
    min-height: 100vh;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.skip-link:focus {
    position: fixed;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    clip: auto;
    clip-path: none;
    z-index: 1100;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--color-primary-light);
}

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

main {
    padding-top: calc(var(--header-height, 88px) + 1rem);
}

.section {
    padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0.5rem 0;
}

.section-heading p {
    color: var(--color-text-muted);
    margin: 0.5rem auto 0;
}

.tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(43, 109, 255, 0.12);
    color: var(--color-primary);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.btn.primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    box-shadow: 0 12px 30px rgba(43, 109, 255, 0.4);
    color: #fff;
}

.btn.primary:hover,
.btn.primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(43, 109, 255, 0.5);
}

.btn.secondary {
    background: var(--color-secondary);
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem clamp(1rem, 4vw, 4rem);
    background: rgba(5, 9, 21, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    min-height: 70px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 100%;
}

.brand-logo {
    display: block;
    height: clamp(32px, 5vw, 46px);
    width: auto;
    max-width: min(220px, 60vw);
    filter: drop-shadow(0 18px 40px rgba(0, 112, 255, 0.35));
    transition: transform 0.35s ease, filter 0.3s ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
    transform: translateY(-1px);
}

.brand-logo--compact {
    height: clamp(28px, 4.5vw, 38px);
}

.brand-logo--large {
    height: clamp(38px, 6vw, 52px);
    max-width: min(280px, 70vw);
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.625rem clamp(1rem, 3vw, 1.5rem);
        min-height: 60px;
    }
    
    .brand-logo {
        height: clamp(28px, 4.5vw, 38px);
        max-width: min(180px, 55vw);
    }

    .brand-logo--large {
        height: clamp(32px, 5vw, 44px);
        max-width: min(200px, 60vw);
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.5rem 1rem;
        min-height: 56px;
    }
    
    .brand-logo {
        height: clamp(26px, 4vw, 32px);
        max-width: min(160px, 50vw);
    }
    
    .brand-logo--large {
        height: clamp(28px, 4.5vw, 36px);
        max-width: min(180px, 55vw);
    }
}

.main-nav {
    display: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding-bottom: 0.2rem;
}

.main-nav a[aria-current="true"] {
    color: #fff;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    width: 100%;
}


.language-switcher {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(5, 9, 21, 0.65);
    color: var(--color-text-muted);
    font-weight: 500;
    padding: 0.35rem 2.35rem 0.35rem 0.85rem;
    min-width: 110px;
    max-width: 160px;
    flex: 0 1 140px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23e9eefc' d='M1.146.854a.5.5 0 0 1 .708-.708L5 3.293 8.146.146a.5.5 0 1 1 .708.708l-3.5 3.5a.5.5 0 0 1-.708 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem;
}

.language-switcher:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    color: #fff;
}

.language-switcher option {
    color: #0b0f1c;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.header-admin {
    flex: 0 0 auto;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: rgba(43, 109, 255, 0.16);
    border: 1px solid rgba(43, 109, 255, 0.4);
    font-size: 0.85rem;
    color: #fff;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.header-admin:hover,
.header-admin:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(43, 109, 255, 0.35);
}


.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 0.3rem;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ========================================
   HERO CB VENTURES - Impact Design
   ======================================== */

.hero-venture {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

.hero-venture__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: rgba(88, 88, 255, 0.12);
    border: 1px solid rgba(88, 88, 255, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a0b0ff;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(88, 88, 255, 0.2);
}

.hero-venture__badge svg {
    color: #ffd700;
}

.hero-venture__title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #5858ff 0%, #a0b0ff 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-venture__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-venture__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 0 0 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item strong {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a0b0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-venture__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 0 0 3rem;
}

.btn-venture {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-venture--primary {
    background: linear-gradient(135deg, #5858ff 0%, #7b7bff 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(88, 88, 255, 0.4);
}

.btn-venture--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7b7bff 0%, #9d9dff 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-venture--primary:hover::before {
    opacity: 1;
}

.btn-venture--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(88, 88, 255, 0.5);
}

.btn-venture--primary span,
.btn-venture--primary svg {
    position: relative;
    z-index: 1;
}

.btn-venture--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-venture--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-venture__proof {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.proof-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.proof-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.proof-tags span {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.proof-tags span:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(88, 88, 255, 0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-venture {
        padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
    }

    .hero-venture__title {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
    }

    .hero-venture__subtitle {
        font-size: 1rem;
    }

    .hero-venture__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-item strong {
        font-size: 1.8rem;
    }

    .hero-venture__ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-venture {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   OLD HERO STYLES - Keep for other pages
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.75) contrast(1.15) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(88, 88, 255, 0.15) 0%, transparent 70%),
        linear-gradient(
            135deg,
            rgba(10, 14, 39, 0.88) 0%,
            rgba(26, 31, 58, 0.80) 50%,
            rgba(10, 14, 39, 0.88) 100%
        );
    z-index: 1;
    backdrop-filter: blur(0.5px);
}

/* Container */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, rgba(88, 88, 255, 0.15) 0%, rgba(88, 88, 255, 0.08) 100%);
    border: 1.5px solid rgba(88, 88, 255, 0.4);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(88, 88, 255, 0.1);
}

.hero-trust-badge svg {
    color: #5858ff;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(88, 88, 255, 0.4));
}

/* Main Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, #5858ff 0%, #7b7bff 50%, #5858ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 20px rgba(88, 88, 255, 0.2));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Trust Points */
.hero-trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(88, 88, 255, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.trust-point:hover {
    background: rgba(88, 88, 255, 0.12);
    border-color: rgba(88, 88, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(88, 88, 255, 0.2);
}

.trust-point svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.trust-point strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.trust-point span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA */
.hero-cta-wrapper {
    margin-bottom: 3rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.35rem 2.75rem;
    background: linear-gradient(135deg, #5858ff 0%, #7b7bff 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 15px 50px rgba(88, 88, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hero-cta-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(88, 88, 255, 0.5);
    background: linear-gradient(135deg, #6868ff 0%, #8b8bff 100%);
}

.hero-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta-note svg {
    color: #5858ff;
}

/* Social Proof */
.hero-social-proof {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.proof-stats > div {
    text-align: center;
}

.proof-stats strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #5858ff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.proof-stats span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* World Map Background */
.hero-world-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.15;
    filter: brightness(0.6) contrast(1.3) saturate(0.8);
}

.world-map-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1400px;
    opacity: 0.6;
    z-index: 1;
}

/* Animated Connection Paths */
.path-animate {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 4s ease-in-out infinite;
}

@keyframes drawPath {
    0%, 100% {
        stroke-dashoffset: 1000;
        opacity: 0.2;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
}

/* Pulse Markers */
.pulse-marker {
    filter: drop-shadow(0 0 8px rgba(88, 88, 255, 0.8));
}

.pulse-ring {
    animation: pulseRing 3s ease-out infinite;
    transform-origin: center;
}

@keyframes pulseRing {
    0% {
        r: 8;
        opacity: 0.8;
    }
    100% {
        r: 30;
        opacity: 0;
    }
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.75) 0%,
        rgba(26, 31, 58, 0.65) 50%,
        rgba(10, 14, 39, 0.75) 100%
    );
    backdrop-filter: blur(1px);
    z-index: 2;
}

/* Container */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 6vw, 4rem);
    width: 100%;
    display: block;
}

.hero-cb {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 40%),
                linear-gradient(135deg, rgba(4, 8, 18, 0.95), rgba(11, 20, 46, 0.92));
    padding: clamp(2.5rem, 5vw, 4.5rem);
    border-radius: 32px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-content .hero-tag {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(249, 155, 40, 0.95);
    margin-bottom: 1rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
}

.hero-content--compact {
    max-width: 620px;
}

.hero-content--compact {
    max-width: 720px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: #f99b28;
}

.hero-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.75rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero-benefits li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.6;
}

.hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f99b28;
    box-shadow: 0 0 12px rgba(249, 155, 40, 0.6);
}

.hero-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.hero-highlight-grid article {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.hero-highlight-grid h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: #f99b28;
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary {
    background: #f99b28;
    color: #0a0f1c;
    box-shadow: 0 12px 30px rgba(249, 155, 40, 0.35);
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.proof-highlight {
    font-weight: 600;
    color: #f99b28;
}

.hero-proof-bar {
    align-items: center;
    justify-content: space-between;
}

.hero-proof-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.hero-proof-items span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-proof-logos {
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.hero-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-logos span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.hero-metric {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.hero-metric strong {
    display: block;
    font-size: 1.35rem;
    color: #f99b28;
}

.hero-metric span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-metrics--row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero-visual-card {
    display: flex;
    justify-content: center;
}

.hero-visual-card .globe-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1.75rem;
    background: rgba(5, 8, 18, 0.6);
    min-height: 320px;
    backdrop-filter: blur(12px);
}

.hero-visual-card p {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
}

.globe {
    width: 100%;
    height: 200px;
    border-radius: 24px;
    margin: 1.25rem 0;
    background: radial-gradient(circle at 30% 30%, rgba(249, 155, 40, 0.8), transparent 55%),
                radial-gradient(circle at 70% 70%, rgba(65, 133, 255, 0.7), transparent 50%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
    position: relative;
}

.globe::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.hero-visual-card ul {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .hero-cb {
        padding: clamp(1.5rem, 4vw, 2.5rem);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 5vw, 2.2rem);
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        padding: 0.85rem 1.5rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .hero-visual-card {
        display: none;
    }

    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-proof-bar {
        align-items: flex-start;
    }

    .hero-proof-logos {
        gap: 1rem;
    }

    .hero-logos {
        gap: 0.4rem;
    }

    .hero-benefits li {
        padding-left: 1.25rem;
    }

    .hero-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .hero-cb {
        padding: clamp(2rem, 4vw, 3.5rem);
    }

    .hero-grid {
        gap: clamp(2rem, 4vw, 2.5rem);
    }

    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}
    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-proof-bar {
        align-items: flex-start;
    }

    .hero-proof-logos {
        gap: 1rem;
    }

    .hero-logos {
        gap: 0.4rem;
    }

    .hero-benefits li {
        padding-left: 1.25rem;
    }
}

/* Stats Bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.stat-number {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a0b0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Main Content */
.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(88, 88, 255, 0.15);
    border: 1px solid rgba(88, 88, 255, 0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a0b0ff;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(88, 88, 255, 0.2);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #ffd700;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #5858ff 0%, #a0b0ff 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2.5rem;
    max-width: 680px;
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: #5858ff;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #5858ff 0%, #7b7bff 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(88, 88, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7b7bff 0%, #9d9dff 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(88, 88, 255, 0.5);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Social Proof */
.hero-social-proof {
    padding: 1.5rem 0;
}

.client-logos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-logos-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.client-logo {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* Interactive Globe Visualization */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.globe-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-pulse {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 88, 255, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(88, 88, 255, 0.8) 50%,
        transparent 100%
    );
    top: 50%;
    left: 50%;
    transform-origin: center;
    opacity: 0.6;
    animation: rotate-line 8s linear infinite;
    animation-delay: var(--delay, 0s);
}

.connection-line:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.connection-line:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg); }
.connection-line:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg); }
.connection-line:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg); }

@keyframes rotate-line {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.3; }
}

.location-markers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-latam {
    top: 60%;
    left: 20%;
}

.marker-europe {
    top: 25%;
    left: 50%;
}

.marker-china {
    top: 30%;
    right: 15%;
}

.marker-ping {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #5858ff;
    box-shadow: 0 0 0 0 rgba(88, 88, 255, 0.7);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(88, 88, 255, 0.7);
    }
    75%, 100% {
        transform: scale(1.5);
        box-shadow: 0 0 0 20px rgba(88, 88, 255, 0);
    }
}

.marker-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

/* ========================================
   ABOUT VIDEO SECTION
   ======================================== */

.about-video-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, #020510 0%, #0a0f2a 50%, #020510 100%);
    position: relative;
    overflow: hidden;
}

.about-video-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-video-container {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.about-video-content .tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(88, 88, 255, 0.15);
    border: 1px solid rgba(88, 88, 255, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a0b0ff;
    margin-bottom: 1.5rem;
}

.about-video-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.about-video-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.about-stats > div {
    flex: 1;
    min-width: 140px;
}

.about-stats strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.about-stats span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.about-video-features {
    display: grid;
    gap: 2rem;
}

.about-feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(88, 88, 255, 0.15), rgba(0, 212, 255, 0.15));
    border: 1px solid rgba(88, 88, 255, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon svg {
    color: #00d4ff;
}

.about-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.about-feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.about-video-wrapper {
    position: relative;
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 9;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 88, 255, 0.15), rgba(0, 212, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.video-frame:hover .video-overlay {
    opacity: 1;
}

.video-play-indicator {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-frame:hover .video-play-indicator {
    transform: scale(1);
}

.video-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-dot {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(88, 88, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.decoration-line {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

@media (max-width: 1023px) {
    .about-video-wrapper {
        order: -1;
    }
    
    .video-decoration {
        display: none;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-stats {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Animation delays for AOS */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

.insights {
    background: linear-gradient(180deg, #030711 0%, #040a18 100%);
}

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

.insight-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 22px 45px rgba(5, 12, 28, 0.35);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 109, 255, 0.35);
}

.insight-card span {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.insight-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.insight-card p {
    margin: 0;
    color: var(--color-text-muted);
    flex: 1;
}

.insight-card a {
    color: var(--color-primary-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.about-grid,
.services-grid,
.cases-grid,
.differentials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.section-visual-card {
    background: rgba(6, 10, 24, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(3, 10, 25, 0.45);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
}

.section-visual-card img {
    width: 100%;
    display: block;
}

.section-visual-card video {
    width: 100%;
    display: block;
}

.section-visual-card figcaption {
    padding: 1.1rem 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.section-visual-card figcaption {
    order: 1;
}

.section-visual-card img {
    order: 2;
}

.section-visual-card:nth-child(even) figcaption {
    order: 2;
}

.section-visual-card:nth-child(even) img {
    order: 1;
}

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

    .section-visual-card img,
    .section-visual-card figcaption {
        order: initial;
    }
}
}

.cases-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1.05fr);
    gap: clamp(2rem, 6vw, 3rem);
    align-items: start;
}

.cases-portfolio {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.cases-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.cases-kpi {
    background: rgba(10, 18, 36, 0.92);
    border: 1px solid rgba(43, 109, 255, 0.25);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    display: grid;
    gap: 0.45rem;
    box-shadow: 0 18px 40px rgba(4, 12, 32, 0.45);
    backdrop-filter: blur(8px);
}

.cases-kpi span {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(178, 200, 255, 0.75);
}

.cases-kpi strong {
    font-size: 1.6rem;
    color: #fff;
}

.case-hero-card {
    position: relative;
    display: grid;
    gap: 1.25rem;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(8, 15, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(3, 10, 28, 0.52);
}

.case-hero-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.case-hero-card__info {
    display: grid;
    gap: 1.25rem;
    padding: 0 1.8rem 1.8rem;
}

.case-hero-card__primary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.case-hero-card__primary span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(170, 192, 255, 0.78);
}

.case-hero-card__primary strong {
    font-size: clamp(2.2rem, 5vw, 2.6rem);
    color: #ffffff;
}

.case-hero-card__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.case-hero-card__stats li {
    background: rgba(15, 24, 48, 0.92);
    border: 1px solid rgba(43, 109, 255, 0.18);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.25rem;
}

.case-hero-card__stats span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(174, 198, 255, 0.65);
}

.case-hero-card__stats strong {
    font-size: 1rem;
    color: #fff;
}

.cases-grid--sectors .case-card {
    background: rgba(9, 16, 34, 0.9);
}

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

.footprint-card {
    background: rgba(8, 16, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    display: grid;
    gap: 0.6rem;
    box-shadow: 0 20px 45px rgba(3, 9, 24, 0.4);
}

.footprint-card header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.footprint-card header span {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(175, 199, 255, 0.7);
}

.footprint-card header strong {
    font-size: 1.1rem;
    color: #fff;
}

.footprint-card p {
    margin: 0;
    color: var(--color-text-muted);
}

.footprint-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(190, 205, 255, 0.75);
}

.case-highlight {
    background: rgba(9, 15, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 28px 60px rgba(3, 8, 22, 0.45);
    display: grid;
    gap: 1.5rem;
    position: sticky;
    top: 120px;
}

.case-highlight__content {
    display: grid;
    gap: 1.25rem;
}

.case-panel {
    background: rgba(15, 24, 48, 0.9);
    border: 1px solid rgba(43, 109, 255, 0.18);
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    display: grid;
    gap: 0.35rem;
}

.case-panel h4 {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(170, 196, 255, 0.75);
}

.case-panel p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.case-stat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.case-stat {
    background: rgba(18, 28, 52, 0.95);
    border: 1px solid rgba(43, 109, 255, 0.22);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.3rem;
    text-align: left;
}

.case-stat span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(174, 200, 255, 0.68);
}

.case-stat strong {
    font-size: 1.2rem;
    color: #ffffff;
}

.case-quote {
    margin: 0;
    padding: 1.1rem 1.3rem;
    border-left: 3px solid rgba(93, 182, 255, 0.6);
    background: rgba(12, 21, 44, 0.9);
    border-radius: 14px;
    color: rgba(200, 212, 255, 0.85);
    font-style: italic;
}

.case-highlight__header h3 {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
}

.case-highlight__header p {
    margin: 0;
    color: var(--color-text-muted);
}

.about-grid div,
.service-card,
.case-card,
.differentials-grid article,
.location-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 1.75rem;
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(5, 10, 25, 0.25);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.about-grid div:hover,
.service-card:hover,
.case-card:hover,
.differentials-grid article:hover,
.location-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43, 109, 255, 0.4);
    box-shadow: 0 30px 70px rgba(15, 32, 75, 0.35);
}

.about-grid h3,
.service-card h3,
.case-card h3,
.differentials-grid h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.about-grid p,
.service-card p,
.case-card ul,
.differentials-grid p {
    margin: 0;
    color: var(--color-text-muted);
}


.case-story {
    background: linear-gradient(180deg, #040914 0%, #03060e 100%);
}

.case-story__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
    gap: clamp(2rem, 6vw, 3rem);
    align-items: start;
}

.case-story__narrative {
    background: rgba(10, 18, 36, 0.92);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(2rem, 5vw, 2.5rem);
    box-shadow: 0 28px 60px rgba(3, 10, 28, 0.45);
    display: grid;
    gap: 1.5rem;
}

.case-story__narrative h3 {
    margin: 0;
    font-size: 1.4rem;
}

.case-story__pillars {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.case-story__pillars article {
    background: rgba(14, 24, 52, 0.92);
    border-radius: 18px;
    border: 1px solid rgba(43, 109, 255, 0.18);
    padding: 1.1rem 1.3rem;
    display: grid;
    gap: 0.45rem;
}

.case-story__pillars h4 {
    margin: 0;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(170, 196, 255, 0.8);
}

.case-story__pillars p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.case-story__timeline {
    background: rgba(9, 16, 34, 0.92);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(2rem, 5vw, 2.4rem);
    box-shadow: 0 26px 58px rgba(3, 9, 24, 0.48);
}

.case-story__timeline h3 {
    margin: 0 0 1.5rem;
}

.case-story__timeline ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.3rem;
}

.case-story__timeline li {
    background: rgba(14, 24, 52, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(43, 109, 255, 0.2);
    padding: 1.1rem 1.3rem;
    display: grid;
    gap: 0.4rem;
}

.case-story__timeline .step-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(176, 200, 255, 0.7);
}

.case-story__timeline h4 {
    margin: 0;
}

.case-story__timeline p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.case-story__metrics {
    margin-top: clamp(2.5rem, 6vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.case-story__metrics article {
    background: rgba(12, 20, 40, 0.92);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem;
    box-shadow: 0 24px 55px rgba(3, 8, 22, 0.42);
}

.case-story__metrics h4 {
    margin: 0 0 0.9rem;
}

.case-story__metrics ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}
.case-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.case-card .sector {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.case-card .icon {
    font-size: 1.25rem;
    color: var(--color-primary-light);
}

.case-card ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.methodology {
    background: linear-gradient(160deg, #040a18, #060d20);
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(180px, 1fr) );
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .timeline {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (min-width: 1200px) {
    .timeline {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

.timeline li {
    position: relative;
    padding: 1.75rem 1.5rem 1.75rem;
    border-radius: 18px;
    background: rgba(6, 11, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.timeline li:hover {
    border-color: rgba(43, 109, 255, 0.35);
    transform: translateY(-4px);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(43, 109, 255, 0.15);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.timeline h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.timeline p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.global {
    background: linear-gradient(180deg, #030713 0%, #030711 45%, #02040c 100%);
}

.map-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
}

.google-map {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(5, 12, 30, 0.48);
    background: radial-gradient(circle at 30% 30%, rgba(43, 109, 255, 0.18), transparent 70%), rgba(5, 10, 22, 0.9);
}

.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    background: rgba(6, 12, 24, 0.78);
}

.google-map.map--error {
    border: 1px solid rgba(255, 120, 120, 0.4);
    box-shadow: 0 32px 80px rgba(30, 8, 8, 0.4);
}

.google-map.map--error .map-placeholder {
    background: rgba(48, 12, 12, 0.85);
    color: #ffb8b8;
}


.global-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.global-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.map-instruction {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    max-width: 320px;
}

.map-info-window {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    max-width: 220px;
}

.map-info-window strong {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #fff;
}

.map-info-window span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}


.global-sidebar-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    flex: 1;
    align-content: flex-start;
}

.global-grid {
    display: contents;
}

.location-card h3 {
    margin-top: 0;
}

.location-card {
    background: rgba(8, 14, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 0.75rem 1rem;
    display: grid;
    gap: 0.35rem;
}

.location-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.location-card.is-active {
    border-color: rgba(43, 109, 255, 0.45);
    box-shadow: 0 28px 60px rgba(4, 18, 45, 0.45);
}

.location-card:focus-visible {
    outline: none;
    border-color: rgba(43, 109, 255, 0.45);
    box-shadow: 0 28px 60px rgba(4, 18, 45, 0.45);
}

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

.global-sidebar .center-action {
    text-align: left;
    margin-top: 0;
}

.differentials-grid article {
    min-height: 160px;
}

.contact {
    position: relative;
    background: linear-gradient(160deg, #060b18, #071327);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 100% 0%, rgba(88, 88, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(88, 88, 255, 0.05) 0%, transparent 50%);
    opacity: 1;
    z-index: 0;
}

.contact > * {
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    gap: 2rem;
    align-items: stretch;
    grid-template-columns: minmax(340px, 0.9fr) minmax(320px, 1.1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 1rem;
    background: rgba(10, 15, 31, 0.9);
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(3, 10, 30, 0.6);
    width: 100%;
}

.contact-form .required {
    color: var(--color-primary-light);
    margin-left: 0.25rem;
    font-weight: 700;
}

.contact-form .field.is-invalid input,
.contact-form .field.is-invalid select,
.contact-form .field.is-invalid textarea {
    border-color: rgba(255, 122, 122, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 122, 122, 0.2);
}

.contact-form .field.is-valid input,
.contact-form .field.is-valid select,
.contact-form .field.is-valid textarea {
    border-color: rgba(120, 255, 228, 0.7);
    box-shadow: 0 0 0 3px rgba(120, 255, 228, 0.18);
}

.field-error {
    color: rgba(255, 192, 192, 0.95);
    font-size: 0.85rem;
    display: none;
}

.contact-form .field.is-invalid .field-error {
    display: block;
}

.form-alert,
.form-success {
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    display: none;
}

.form-alert {
    background: rgba(255, 99, 99, 0.15);
    border: 1px solid rgba(255, 99, 99, 0.35);
    color: rgba(255, 220, 220, 0.95);
}

.form-success {
    background: rgba(79, 255, 218, 0.15);
    border: 1px solid rgba(79, 255, 218, 0.35);
    color: rgba(214, 255, 245, 0.95);
}

.form-next {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
}

.form-helper {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-next strong {
    color: rgba(255, 255, 255, 0.95);
}

.contact-side {
    display: grid;
    gap: 1.5rem;
}

.contact-illustration {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 280px;
    background: linear-gradient(160deg, rgba(43, 109, 255, 0.25), rgba(116, 79, 255, 0.2));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(3, 10, 30, 0.45);
}

.contact-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(88, 88, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.contact-illustration__content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 260px;
    display: grid;
    gap: 0.75rem;
}

.contact-illustration__content span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-illustration__content strong {
    font-size: 1.45rem;
}

.contact-illustration__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.contact-illustration__list li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.contact-stats article {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.contact-stats strong {
    display: block;
    font-size: 1.2rem;
    color: #f99b28;
}

.contact-stats span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.field-checkbox {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: color var(--transition-base), transform var(--transition-base);
}

.social-links a:hover,
.social-links a:focus-visible {
    color: var(--color-primary-light);
    transform: translateX(2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

    .contact-illustration {
        min-height: 260px;
    }
}

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

label {
    font-weight: 500;
    color: #d2daf7;
}

input,
textarea {
    background: rgba(3, 8, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input:focus,
textarea:focus {
    border-color: rgba(43, 109, 255, 0.55);
    outline: none;
    box-shadow: 0 0 0 3px rgba(43, 109, 255, 0.18);
}

textarea {
    resize: vertical;
}

.blog-page {
    background: linear-gradient(180deg, #02040c 0%, #040a16 45%, #050915 100%);
}

.blog-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 8vw, 6rem);
    align-items: center;
}

.hero-copy h1 {
    margin: 0.75rem 0 1rem;
    font-size: clamp(2.5rem, 5vw, 3.2rem);
}

.hero-copy p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    border-radius: 28px;
    min-height: 320px;
    background: url('assets/visuals/images/blog_hero.jpg') center/cover;
    box-shadow: 0 30px 70px rgba(4, 12, 30, 0.55);
    overflow: hidden;
}

.hero-visual video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-motion video {
    display: none !important;
}

.hero-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(6, 12, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 45px rgba(5, 10, 25, 0.45);
}

.hero-overlay-card span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-filter {
    padding: 0 clamp(1.5rem, 8vw, 6rem) 2rem;
}

.filter-controls {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid transparent;
    color: var(--color-text);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(43, 109, 255, 0.18);
    border-color: rgba(43, 109, 255, 0.45);
}

.blog-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 2rem;
    padding: 0 clamp(1.5rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem);
}

.blog-grid {
    display: grid;
    gap: 1.75rem;
}

.blog-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 0;
    box-shadow: 0 25px 60px rgba(4, 12, 28, 0.4);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43, 109, 255, 0.35);
}

.blog-card figure {
    margin: 0;
    position: relative;
    min-height: 220px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .tag-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(6, 12, 28, 0.7);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card .card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    color: var(--color-text-muted);
    transition: border-color var(--transition-base), background var(--transition-base);
}

.blog-card details[open] {
    background: rgba(43, 109, 255, 0.1);
    border-color: rgba(43, 109, 255, 0.35);
}

.blog-card summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary-light);
    outline: none;
}

.blog-card summary::-webkit-details-marker {
    color: var(--color-primary-light);
}

.blog-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.blog-card p {
    color: var(--color-text-muted);
    margin: 0;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-buttons button,
.share-buttons a {
    background: rgba(43, 109, 255, 0.12);
    border: 1px solid rgba(43, 109, 255, 0.35);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background var(--transition-base), transform var(--transition-base);
}

.share-buttons button:hover,
.share-buttons a:hover {
    background: rgba(43, 109, 255, 0.2);
    transform: translateY(-2px);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.newsletter-card,
.popular-card {
    background: rgba(7, 12, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 45px rgba(4, 10, 24, 0.4);
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form .field {
    display: grid;
    gap: 0.35rem;
}

.newsletter-form .required {
    color: var(--color-primary-light);
    margin-left: 0.25rem;
    font-weight: 700;
}

.newsletter-form .field.is-invalid input {
    border-color: rgba(255, 122, 122, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 122, 122, 0.2);
}

.newsletter-form .field.is-valid input {
    border-color: rgba(120, 255, 228, 0.7);
    box-shadow: 0 0 0 3px rgba(120, 255, 228, 0.18);
}

.newsletter-form .field.is-invalid .field-error {
    display: block;
}

.popular-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.popular-card a {
    color: var(--color-primary-light);
    font-weight: 500;
}

.admin-page {
    background: linear-gradient(180deg, #01030a 0%, #040a1a 45%, #050a14 100%);
}

.admin-main {
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem);
    display: grid;
    gap: 3rem;
}

.admin-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(6, 13, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    box-shadow: 0 24px 60px rgba(3, 10, 25, 0.45);
}

.admin-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.admin-info p {
    margin: 0.35rem 0;
    color: var(--color-text-muted);
}

.admin-form-section,
.admin-list-section {
    background: rgba(6, 12, 26, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    box-shadow: 0 25px 65px rgba(3, 10, 25, 0.5);
}

.admin-content-section {
    background: rgba(6, 12, 26, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    box-shadow: 0 25px 65px rgba(3, 10, 25, 0.5);
}

.site-content-form {
    display: grid;
    gap: 1.5rem;
}

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

.content-form-grid textarea {
    min-height: 120px;
}

.content-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.form-feedback {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}


.article-form {
    display: grid;
    gap: 1.5rem;
}

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

.language-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lang-tab {
    background: rgba(43, 109, 255, 0.08);
    border: 1px solid rgba(43, 109, 255, 0.25);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    transition: background var(--transition-base), transform var(--transition-base);
}

.lang-tab.active {
    background: rgba(43, 109, 255, 0.28);
    transform: translateY(-1px);
}

.lang-tab[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.lang-panels {
    display: grid;
    gap: 1.5rem;
}

.lang-panel {
    display: none;
    background: rgba(3, 8, 20, 0.75);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
}

.lang-panel.active {
    display: grid;
    gap: 1rem;
}

.admin-post-list {
    display: grid;
    gap: 1rem;
}

.admin-post-card {
    background: rgba(3, 8, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.admin-post-card header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.admin-login__card {
    width: min(420px, 100%);
    background: rgba(6, 12, 26, 0.92);
    border-radius: 28px;
    padding: clamp(2.5rem, 6vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 36px 80px rgba(4, 10, 28, 0.55);
    display: grid;
    gap: 1.5rem;
}

.admin-login__subtitle {
    margin: 0;
    color: var(--color-text-muted);
}

.admin-login__form {
    display: grid;
    gap: 1.1rem;
}

.admin-login__hint {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(200, 210, 255, 0.5);
}

.admin-login__error {
    margin: 0;
    font-size: 0.85rem;
    color: #ff9b9b;
    min-height: 1.1rem;
}

.admin-logout {
    margin-top: auto;
}

.post-actions {
    display: flex;
    gap: 0.75rem;
}

.post-actions button {
    background: rgba(255, 70, 70, 0.15);
    border: 1px solid rgba(255, 70, 70, 0.4);
    color: #ff9b9b;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    cursor: pointer;
}

.site-footer {
    padding: 3rem clamp(1.5rem, 6vw, 5rem) 2.5rem;
    background: #040712;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--color-text-muted);
    display: grid;
    gap: 2.5rem;
}

.footer-top {
    display: grid;
    gap: 2rem;
}

.footer-panels {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer-panel {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-branding {
    background: rgba(255, 255, 255, 0.02);
}

.footer-summary {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-branding-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-footer-primary {
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f99b28, #ffca7a);
    color: #0a0f1c;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(249, 155, 40, 0.35);
}

.footer-cert {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.footer-stats article {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.footer-stats strong {
    display: block;
    font-size: 1.2rem;
    color: #f99b28;
}

.footer-stats small {
    color: rgba(255, 255, 255, 0.65);
}

.footer-digital-panel {
    background: linear-gradient(160deg, rgba(0, 97, 255, 0.25), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-digital-heading h4 {
    margin: 0;
    color: #fff;
}

.footer-digital-tag {
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-digital-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
}

.btn-footer-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    text-decoration: none;
}

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

.footer-column h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-column a,
.footer-column span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--color-primary-light);
}

.footer-link-cta {
    display: inline-flex;
    margin-top: 0.75rem;
    font-weight: 600;
    color: #f99b28;
}

.footer-socials {
    margin-bottom: 0.75rem;
}

.footer-docs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(5, 9, 21, 0.95);
        backdrop-filter: blur(18px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateY(-100%);
        transition: transform 0.35s ease;
        pointer-events: none;
        padding: calc(var(--header-height, 88px) + 1.5rem) clamp(1.5rem, 8vw, 3rem) 2.5rem;
        overflow-y: auto;
        z-index: 1200;
        gap: 2rem;
    }

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

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        font-size: 1.4rem;
    }

    .language-switcher {
        margin-left: 0;
        width: 100%;
        flex: 1 1 100%;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .header-admin {
        flex: 1 1 160px;
        text-align: center;
    }

    .main-nav .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        width: min(360px, 100%);
    }

    .main-nav .header-actions .header-admin {
        width: 100%;
    }

    .main-nav .header-actions .language-switcher {
        width: 100%;
    }

    .blog-list {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: -1;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .global-sidebar .center-action {
        margin-top: 0;
        text-align: center;
        width: 100%;
    }
}

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

    .hero-gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .language-switcher {
        margin-left: auto;
    }

    .hero-visual {
        min-height: 260px;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .cases-layout {
        grid-template-columns: 1fr;
    }

    .case-highlight {
        position: static;
    }

    .case-story__layout {
        grid-template-columns: 1fr;
    }

    .case-story__timeline {
        position: static;
    }
}

@media (max-width: 1280px) {
    .case-highlight {
        position: static;
        top: auto;
    }
}

@media (min-width: 1025px) {
    .site-header {
        flex-wrap: nowrap;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .header-actions {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .language-switcher {
        width: auto;
    }

    .hero {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

    .hero-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(140px, 1fr));
    }

    .gallery-card:nth-child(1) { grid-column: 1; grid-row: span 2; }
    .gallery-card:nth-child(2) { grid-column: 2; grid-row: 1; }
    .gallery-card:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-card:nth-child(4) { display: none; }

    .global-layout {
        flex-direction: row;
        align-items: stretch;
        gap: 2.5rem;
    }

    .map-wrapper {
        flex: 0 0 72%;
    }

    .global-sidebar {
        flex: 1;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.7fr);
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 0.5rem;
    }

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

    .gallery-card {
        min-height: 140px;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading p {
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .site-footer {
        align-items: flex-start;
    }

    .language-switcher {
        border-radius: 14px;
        width: 100%;
    }

    .blog-hero {
        gap: 2rem;
    }

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

    .case-highlight {
        padding: 1.75rem;
    }

    .case-story__metrics article {
        padding: 1.5rem;
    }

    .header-actions {
        justify-content: center;
        gap: 0.75rem;
        flex-direction: column;
        align-items: stretch;
    }

    .header-admin {
        width: 100%;
        text-align: center;
    }

    .language-switcher {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 540px) {
    .hero-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlights li {
        width: 100%;
        text-align: center;
    }

    .timeline {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .timeline li {
        min-width: 240px;
        scroll-snap-align: start;
    }

    .global-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form button {
        width: 100%;
    }

    .admin-form-section,
    .admin-list-section {
        padding: 1.75rem;
    }

    .admin-hero {
        padding: 1.75rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body.nav-open {
    overflow: hidden;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.legal-page {
    background: linear-gradient(180deg, #02040c 0%, #04091a 45%, #050915 100%);
}

.legal-hero {
    padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 8vw, 6rem) clamp(3rem, 5vw, 4rem);
    background: var(--grad-hero);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-hero__content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-hero__content h1 {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    margin: 0;
}

.legal-hero__content p {
    margin: 0;
    color: var(--color-text-muted);
}

.legal-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-hero__meta span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
}

.legal-section {
    padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 8vw, 6rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.legal-section:last-of-type {
    border-bottom: none;
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.legal-section__header {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.legal-section__header h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.legal-section__header p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.legal-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}

.legal-grid--two {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.legal-card {
    background: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 48px rgba(8, 14, 36, 0.35);
}

/* ========================================
   PAGE NAVIGATION - Back to Home Buttons
   ======================================== */

.page-nav-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem clamp(1.5rem, 6vw, 4rem);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateX(-4px);
}

.btn-back svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

/* ========================================
   RESPONSIVE IMPROVEMENTS - All Resolutions
   ======================================== */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .hero-container,
    .section {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-container {
        padding: 4rem 3rem;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .hero-visual {
        min-height: 400px;
    }
    
    .site-header {
        padding: 1rem 1.5rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Small (320px - 575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        min-height: 280px;
    }
    
    .globe-container {
        max-width: 280px;
    }
    
    .marker-label {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .site-header {
        padding: 0.75rem 1rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 2.5rem 1rem;
    }
}

/* Ultra Small Devices (< 375px) */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .page-nav-top {
        padding: 1rem;
    }
    
    .btn-back {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-stats {
        padding: 1rem;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

.legal-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.legal-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.legal-card ul li + li {
    margin-top: 0.65rem;
}

.legal-card--highlight {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(35, 54, 120, 0.35);
    border: 1px solid rgba(88, 88, 255, 0.35);
    box-shadow: 0 30px 60px rgba(22, 38, 96, 0.4);
}

.legal-table {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(8, 14, 36, 0.3);
}

.legal-table__row {
    display: grid;
    grid-template-columns: minmax(240px, 2fr) minmax(200px, 1.5fr);
    gap: 0;
    background: rgba(8, 14, 36, 0.92);
}

.legal-table__row span {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.legal-table__header {
    background: rgba(35, 54, 120, 0.45);
}

.legal-table__header span {
    font-weight: 600;
    color: var(--color-text);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .legal-hero__meta {
        flex-direction: column;
    }

    .legal-table__row {
        grid-template-columns: 1fr;
    }

    .legal-table__row span {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .legal-table__row span:last-child {
        border-bottom: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.search-toggle svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.search-toggle:hover,
.search-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(88, 88, 255, 0.45);
    box-shadow: 0 12px 30px rgba(29, 28, 143, 0.35);
}

.search-toggle:focus-visible {
    outline: 2px solid rgba(88, 88, 255, 0.65);
    outline-offset: 2px;
}

.search-toggle[aria-expanded="true"] {
    background: rgba(88, 88, 255, 0.18);
    border-color: rgba(88, 88, 255, 0.35);
    box-shadow: 0 12px 30px rgba(29, 28, 143, 0.35);
}

@media (max-width: 1100px) {
    .search-toggle {
        padding: 0.55rem;
    }

    .search-toggle span {
        display: none;
    }
}

@media (min-width: 900px) {
    .site-header {
        flex-wrap: nowrap;
        column-gap: clamp(1rem, 3vw, 2.5rem);
    }

    .main-nav ul {
        gap: clamp(0.9rem, 2vw, 1.4rem);
    }

    .header-actions {
        flex-wrap: nowrap;
        gap: 0.65rem;
    }
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 20, 0.78);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.search-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay[hidden] {
    display: none;
}

.search-overlay__dialog {
    width: min(680px, 100%);
    background: rgba(12, 16, 40, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 40px 80px rgba(5, 8, 24, 0.55);
    position: relative;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base), transform var(--transition-base);
    font-size: 1.35rem;
    line-height: 1;
}

.search-close:hover,
.search-close:focus-visible {
    background: rgba(88, 88, 255, 0.25);
    transform: translateY(-1px);
}

.search-close:focus-visible {
    outline: 2px solid rgba(88, 88, 255, 0.65);
    outline-offset: 2px;
}

.search-field {
    margin-top: 1.5rem;
}

.search-field input {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 10, 28, 0.65);
    color: #fff;
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.search-field input:focus {
    outline: none;
    border-color: rgba(88, 88, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(88, 88, 255, 0.25);
}

.search-results {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    max-height: min(320px, 45vh);
    overflow-y: auto;
}

.search-results li + li {
    margin-top: 0.8rem;
}

.search-results a {
    display: block;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 20, 48, 0.85);
    color: #fff;
    text-decoration: none;
    transition: border-color var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

.search-results a strong {
    display: block;
    font-size: 1rem;
}

.search-results a span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.search-results a:hover,
.search-results a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(88, 88, 255, 0.45);
    background: rgba(35, 45, 110, 0.85);
}

.search-empty {
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    text-align: center;
}

body.search-open {
    overflow: hidden;
}

.cta-banner {
    margin: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 8vw, 6rem);
    padding: clamp(2.5rem, 6vw, 3.5rem);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(35, 54, 120, 0.6), rgba(11, 18, 50, 0.9));
    box-shadow: 0 28px 64px rgba(6, 10, 36, 0.55);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 3rem);
}

.cta-banner__content {
    flex: 1 1 260px;
}

.cta-banner__content h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.cta-banner__content p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.cta-banner__actions .btn {
    min-width: 0;
}

.cta-banner__actions .btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
}

.cta-banner__actions .btn.secondary:hover,
.cta-banner__actions .btn.secondary:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.floating-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 24px 45px rgba(18, 140, 126, 0.45);
    font-weight: 600;
    z-index: 1150;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.floating-chat svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: currentColor;
}

.floating-chat:hover,
.floating-chat:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(18, 140, 126, 0.55);
}

.floating-chat:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

body.search-open .floating-chat {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 900px) {
    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner__actions {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .search-overlay__dialog {
        border-radius: 24px;
        padding: 2rem;
    }

    .search-close {
        top: 0.75rem;
        right: 0.75rem;
    }

    .floating-chat {
        padding: 0.75rem;
        border-radius: 50%;
        width: 54px;
        height: 54px;
        justify-content: center;
    }

    .floating-chat span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-chat,
    .search-toggle,
    .search-close,
    .cta-banner,
    .search-results a {
        transition: none;
    }
}

/* ============================================
   CBDIGITAL SECTION
   ============================================ */

.cbdigital-section {
    background: linear-gradient(135deg, #0b0e27 0%, #1a1544 50%, #0b0e27 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cbdigital-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(88, 88, 255, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 123, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.cbdigital-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cbdigital-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #a8b5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cbdigital-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(88, 88, 255, 0.15);
    border: 1px solid rgba(88, 88, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a8b5ff;
    margin-bottom: 1.5rem;
}

.cbdigital-badge svg {
    color: #5858ff;
}

.cbdigital-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.cbdigital-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.cbdigital-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    color: var(--color-text);
    line-height: 1.6;
}

.cbdigital-features li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #5858ff;
}

.btn-cbdigital {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #5858ff 0%, #7b7bff 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(88, 88, 255, 0.3);
}

.btn-cbdigital:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(88, 88, 255, 0.4);
    background: linear-gradient(135deg, #6868ff 0%, #8b8bff 100%);
}

.btn-cbdigital svg:first-child {
    width: 24px;
    height: 24px;
}

.btn-cbdigital svg:last-child {
    width: 20px;
    height: 20px;
}

/* CBDigital Mockup */
.cbdigital-visual {
    position: relative;
}

.cbdigital-mockup {
    position: relative;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.mockup-screen {
    background: linear-gradient(135deg, #1a1d3f 0%, #0f1229 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.screen-header {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.screen-dots span:nth-child(1) { background: #ff5f56; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #27c93f; }

.screen-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.screen-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dashboard-widget {
    background: rgba(88, 88, 255, 0.1);
    border: 1px solid rgba(88, 88, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dashboard-widget:hover {
    transform: translateY(-4px);
    background: rgba(88, 88, 255, 0.15);
    border-color: rgba(88, 88, 255, 0.3);
}

.widget-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.widget-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Footer CBDigital Button */
.footer-cbdigital {
    margin-top: 1rem;
}

.btn-footer-cbdigital {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(88, 88, 255, 0.15) 0%, rgba(123, 123, 255, 0.1) 100%);
    border: 1px solid rgba(88, 88, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 280px;
}

.btn-footer-cbdigital:hover {
    background: linear-gradient(135deg, rgba(88, 88, 255, 0.25) 0%, rgba(123, 123, 255, 0.15) 100%);
    border-color: rgba(88, 88, 255, 0.5);
    transform: translateX(4px);
}

.cbdigital-logo {
    flex-shrink: 0;
}

.cbdigital-logo svg {
    color: #5858ff;
}

.cbdigital-info {
    flex: 1;
}

.cbdigital-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.cbdigital-desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Responsive - CBDigital Section */
@media (max-width: 992px) {
    .cbdigital-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cbdigital-content h2 {
        font-size: 2.5rem;
    }
    
    .cbdigital-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cbdigital-section {
        padding: 80px 0;
    }
    
    .cbdigital-container {
        padding: 0 1.5rem;
        gap: 40px;
    }
    
    .cbdigital-content h2 {
        font-size: 2rem;
    }
    
    .cbdigital-subtitle {
        font-size: 1.125rem;
    }
    
    .btn-cbdigital {
        width: 100%;
        justify-content: center;
    }
    
    .screen-content {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cbdigital-content h2 {
        font-size: 1.75rem;
    }
    
    .cbdigital-features li {
        font-size: 1rem;
    }
    
    .btn-cbdigital {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .btn-footer-cbdigital {
        max-width: 100%;
    }
}

/* ============================================
   HERO RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Large Desktops (1920px+) */
@media (min-width: 1920px) {
    .hero-container {
        max-width: 1600px;
    }
    
    .hero-stats {
        gap: 3rem;
    }
}

/* Desktop (1200px - 1919px) */
@media (max-width: 1919px) and (min-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-container {
        padding: 3rem 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 400px;
    }
    
    .world-map-svg {
        max-width: 100%;
        height: 80%;
    }
}

/* Mobile Landscape / Large Phone (640px - 767px) */
@media (max-width: 767px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-container {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }
    
    .hero-trust {
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .trust-item {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
    
    .trust-item svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .hero-visual {
        min-height: 300px;
    }
}

/* Mobile Portrait (480px - 639px) */
@media (max-width: 639px) {
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0.875rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .client-logos-grid {
        gap: 0.75rem;
    }
    
    .client-logo {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}

/* Small Mobile (375px - 479px) */
@media (max-width: 479px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.375rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .btn-large svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .hero-trust {
        gap: 0.5rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .hero-trust {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-actions {
        margin-bottom: 1rem;
    }
    
    .hero-visual {
        display: none;
    }
}

/* ==========================================
   SOCIAL PROOF SECTIONS
   ========================================== */

/* Clients Logos Section */
.clients-section {
    background: linear-gradient(135deg, rgba(11, 16, 48, 0.95) 0%, rgba(16, 21, 60, 0.95) 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.clients-carousel {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll-clients 30s linear infinite;
}

.client-logo {
    flex: 0 0 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(88, 88, 255, 0.3);
    transform: translateY(-4px);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 6 - 3rem * 6));
    }
}

.clients-track:hover {
    animation-play-state: paused;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--color-bg);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(88, 88, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(88, 88, 255, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial-card blockquote {
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(88, 88, 255, 0.3);
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, rgba(16, 21, 60, 0.95) 0%, rgba(11, 16, 48, 0.95) 100%);
    padding: 5rem 0;
}

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

.trust-stats h3,
.trust-badges h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
}

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

.stat-counter {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-counter:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(88, 88, 255, 0.3);
    transform: translateY(-4px);
}

.stat-counter strong {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #5858ff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-counter span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(88, 88, 255, 0.3);
    transform: scale(1.05);
}

.badge-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.badge-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.badge-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .clients-section {
        padding: 3rem 0;
    }

    .clients-track {
        gap: 2rem;
    }

    .client-logo {
        flex: 0 0 140px;
        height: 60px;
    }

    @keyframes scroll-clients {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 6 - 2rem * 6));
        }
    }

    .testimonials-section {
        padding: 3rem 0;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .trust-section {
        padding: 3rem 0;
    }

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

    .stat-counters {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-counter {
        padding: 1.5rem;
    }

    .stat-counter strong {
        font-size: 2.5rem;
    }

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

    .badge-item {
        padding: 1rem;
    }

    .badge-item img {
        width: 60px;
        height: 60px;
    }
}

/* Responsive: Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-trust-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-trust-badge span {
        display: none;
    }

    .hero-trust-badge::after {
        content: "15 anos • 8 países • 100% seguro";
    }

    .hero-trust-points {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .trust-point {
        padding: 1rem;
    }

    .hero-cta-primary {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }

    .hero-cta-note {
        font-size: 0.8rem;
        text-align: center;
        flex-direction: column;
        gap: 0.25rem;
    }

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .proof-stats strong {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .trust-point strong {
        font-size: 0.95rem;
    }

    .trust-point span {
        font-size: 0.85rem;
    }
}
