:root {
    --color-primary: #00D9FF;
    --color-secondary: #0066FF;
    --color-accent: #7B61FF;
    --color-dark: #0A0E27;
    --color-dark-light: #151932;
    --color-muted: #8B9DC3;
    --color-light: #F0F4FF;
    --color-success: #00FF88;
    --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-dark);
    background-color: #fff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background System */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Circuit Pattern Overlay */
.circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 217, 255, 0.08) 25%, rgba(0, 217, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(123, 97, 255, 0.08) 75%, rgba(123, 97, 255, 0.08) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 217, 255, 0.08) 25%, rgba(0, 217, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(123, 97, 255, 0.08) 75%, rgba(123, 97, 255, 0.08) 76%, transparent 77%, transparent);
    background-size: 60px 60px;
    opacity: 0.6;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* Animated Grid */
.grid-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.03) 2px,
            rgba(0, 217, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.03) 2px,
            rgba(0, 217, 255, 0.03) 4px
        );
    background-size: 100px 100px;
    animation: gridPulse 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Floating Orbs */
.animated-background::before,
.animated-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.animated-background::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.animated-background::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, -30px) scale(0.9);
    }
}

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

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

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 14, 39, 0.95);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 217, 255, 0.3);
}

.logo-img[style*="display: none"] {
    display: none !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    display: block;
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: 2px;
    text-transform: uppercase;
}

.language-selector {
    position: relative;
    margin-right: 1rem;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#currentLangFlag {
    font-size: 1.1rem;
    display: inline-block;
}

.lang-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 150px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.lang-flag {
    font-size: 1.2rem;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

.lang-name {
    flex: 1;
}

.lang-dropdown a:hover {
    background: rgba(0, 217, 255, 0.2);
    color: var(--color-primary);
    padding-left: 1.25rem;
}

.lang-dropdown a:hover .lang-flag {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

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

.site-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

.site-nav a:hover {
    color: var(--color-primary);
}

.site-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    color: var(--color-primary);
}

.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0A0E27 0%, #151932 50%, #1A1F3A 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero .container {
    display: grid;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
    margin-bottom: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    max-width: 540px;
    font-size: 1.1rem;
    color: var(--color-muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
}

.btn.secondary {
    border: 1px solid rgba(0, 217, 255, 0.4);
    color: var(--color-primary);
    background-color: transparent;
    backdrop-filter: blur(10px);
}

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

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

.hero-highlights div {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-highlights div:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

.metric {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.label {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.credibility {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #0A0E27 0%, #151932 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    z-index: 2;
}

.credibility h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
    margin-bottom: 1rem;
    color: #fff;
}

.credibility p {
    color: var(--color-muted);
}

.trusted-clients {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-light) 0%, #fff 100%);
    position: relative;
    z-index: 2;
}

.trusted-clients header {
    text-align: center;
    margin-bottom: 3rem;
}

.trusted-clients h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.trusted-clients p {
    color: var(--color-muted);
    font-size: 1.1rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.2);
}

.client-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo:hover .client-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.client-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    padding: 1rem;
}

.client-img[style*="display: none"] ~ .client-placeholder {
    display: flex;
}

.services {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

.services header {
    text-align: center;
    margin-bottom: 3rem;
}

.services h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
    color: var(--color-dark);
}

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

.service-grid article {
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-grid article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-grid article:hover::before {
    left: 100%;
}

.service-grid article:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: -1rem 0 1rem -1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-grid article:hover .service-icon::before {
    animation: shine 1.5s infinite;
}

.service-grid article:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.4);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-icon i {
    position: relative;
    z-index: 1;
}

.service-grid h3 {
    margin-top: 0;
    color: var(--color-dark);
}

.service-grid ul {
    padding-left: 1.25rem;
    color: var(--color-muted);
}

.expertise {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A0E27 0%, #151932 100%);
    position: relative;
    z-index: 2;
}

.expertise .container {
    display: grid;
    gap: 2rem;
    grid-template-columns: 2fr 1fr;
    align-items: start;
}

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

.expertise-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    background: rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.expertise-columns > div:hover .expertise-icon {
    background: rgba(0, 217, 255, 0.3);
    transform: scale(1.1);
    border-color: var(--color-primary);
}

.expertise h2,
.expertise h3 {
    color: #fff;
}

.expertise p {
    color: var(--color-muted);
}

.expertise-card {
    background: linear-gradient(160deg, rgba(0, 217, 255, 0.2), rgba(123, 97, 255, 0.2));
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.process {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

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

.step {
    position: relative;
    border-left: 3px solid var(--color-primary);
    padding-left: 1.5rem;
}

.step-number {
    position: absolute;
    left: -1.9rem;
    top: -0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 102, 255, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

.insights {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-light) 100%);
    position: relative;
    z-index: 2;
}

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

.insight-cards article {
    background-color: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 217, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.insight-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 97, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.insight-cards article:hover .insight-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-primary);
}

.insight-cards article:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.15);
}

.founder {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--color-light) 100%);
    position: relative;
    z-index: 2;
}

.founder header {
    text-align: center;
    margin-bottom: 3rem;
}

.founder h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.founder-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
    border: 4px solid var(--color-primary);
    display: block;
}

.founder-photo[style*="display: none"] ~ .founder-image-placeholder {
    display: flex;
}

.founder-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.founder-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.founder-image-placeholder i {
    position: relative;
    z-index: 1;
}

.founder-badge {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 97, 255, 0.1));
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.founder-badge i {
    font-size: 1rem;
}

.founder-info h3 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-description {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-links {
    margin-top: 1.5rem;
}

.founder-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-links .btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image-wrapper {
        margin: 0 auto;
    }
}

.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(123, 97, 255, 0.15));
    color: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 217, 255, 0.03) 10px,
        rgba(0, 217, 255, 0.03) 20px
    );
}

.cta h2,
.cta p {
    position: relative;
    z-index: 1;
}

.cta p {
    max-width: 520px;
    margin: 0.75rem auto 2rem;
}

.contact {
    padding: 4rem 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.contact .container {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    color: var(--color-muted);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-secondary);
}

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

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

input,
textarea {
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    font: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--color-success);
    color: var(--color-success);
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.site-footer {
    background: linear-gradient(180deg, var(--color-dark) 0%, #050810 100%);
    color: #fff;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
    z-index: 2;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .logo-wrapper {
        gap: 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-name {
        font-size: 1.25rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .language-selector {
        margin-right: 0.5rem;
    }

    .lang-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .lang-dropdown {
        right: 0;
        min-width: 140px;
    }

    .site-nav ul {
        position: absolute;
        top: 100%;
        right: 1rem;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(0, 217, 255, 0.2);
        border-radius: 12px;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        min-width: 220px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
        display: none;
    }

    .site-nav ul.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .expertise .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 5rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
