/* ===== STUNNING IMMERSIVE DESIGN ===== */

/* ===== Cursor Follower Overlays ===== */
/* These fixed-position elements must never capture mouse/scroll events */
.cursor-aurora,
.cursor-ring,
.cursor-dot,
.cursor-particles {
    pointer-events: none;
}

:root {
    --bg-dark: #050508;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);

    --gradient-1: #667eea;
    --gradient-2: #764ba2;
    --gradient-3: #f093fb;
    --gradient-4: #f5576c;
    --gradient-5: #4facfe;

    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-muted: #6a6a6a;

    --glow-primary: rgba(102, 126, 234, 0.5);
    --glow-secondary: rgba(245, 87, 108, 0.5);

    --font: 'Sora', sans-serif;
}

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

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
    width: 0;
    height: 0;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
    width: 0;
    height: 0;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: var(--gradient-1);
    color: white;
}

/* ===== Animated Background ===== */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--gradient-3), var(--gradient-4));
    bottom: -150px;
    right: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--gradient-5), var(--gradient-1));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(80px, -60px) scale(1.1);
    }

    50% {
        transform: translate(-40px, 80px) scale(0.9);
    }

    75% {
        transform: translate(60px, 40px) scale(1.05);
    }
}

.grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Shooting Star */
.shooting-star {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), rgba(255, 255, 255, 0.9));
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 4px rgba(102, 126, 234, 0.8)) drop-shadow(0 0 12px rgba(240, 147, 251, 0.4));
    animation: shootingStar var(--duration, 4s) linear forwards;
    transform-origin: right center;
}

@keyframes shootingStar {
    0% {
        opacity: 0;
        transform: rotate(var(--angle, -35deg)) translateX(0) scaleX(0.3);
    }

    5% {
        opacity: 1;
        transform: rotate(var(--angle, -35deg)) translateX(0) scaleX(1);
    }

    70% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: rotate(var(--angle, -35deg)) translateX(var(--travel, 800px)) scaleX(1.2);
    }
}

/* ===== Typography ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3), var(--gradient-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-animated {
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3), var(--gradient-4), var(--gradient-5), var(--gradient-1));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.nav {
    max-width: 1400px;
    max-height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 32px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.5));
}

.logo-icon {
    width: 40px;
    height: 40px;
    perspective: 100px;
}

.logo-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 8s linear infinite;
}

@keyframes cubeRotate {
    0% {
        transform: rotateX(0) rotateY(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gradient-1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
}

.cube-face.front {
    transform: translateZ(20px);
}

.cube-face.back {
    transform: translateZ(-20px) rotateY(180deg);
}

.cube-face.left {
    transform: translateX(-20px) rotateY(-90deg);
}

.cube-face.right {
    transform: translateX(20px) rotateY(90deg);
}

.cube-face.top {
    transform: translateY(-20px) rotateX(90deg);
}

.cube-face.bottom {
    transform: translateY(20px) rotateX(-90deg);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    position: relative;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--glow-primary);
}

.mobile-menu-btn {
    display: none;
    order: 3;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===== Hero Section ===== */
.hero-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-title .line {
    display: block;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-3), var(--gradient-4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px var(--glow-primary);
}

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

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

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 40px;
}

.metric {
    text-align: left;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.metric-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ===== Hero Visual ===== */
.hero-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-accent {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
            rgba(102, 126, 234, 0.12) 0%,
            rgba(139, 92, 246, 0.06) 40%,
            transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-anim {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== Sections ===== */
section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gradient-1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 0.1;
}

.service-card.featured {
    border-color: rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
}

.card-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    margin-bottom: 16px;
}

.card-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    color: var(--gradient-1);
}

.card-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-tags span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* ===== About Full Section ===== */
.about-full {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text-lead {
    font-size: 1.3rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlight-box {
    position: relative;
    padding: 28px 32px;
    margin: 32px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.about-highlight-box .highlight-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gradient-1), var(--gradient-3));
    border-radius: 4px 0 0 4px;
}

.about-highlight-box p {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.8;
    margin: 0;
}

.about-highlight-box strong {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature {
    padding: 28px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Tech Stack Orbit ===== */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-stack-orbit {
    position: relative;
    width: 400px;
    height: 400px;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbit-ring:nth-child(1) {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
}

.orbit-ring:nth-child(2) {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
}

.orbit-ring:nth-child(3) {
    width: 360px;
    height: 360px;
    margin: -180px 0 0 -180px;
}

.tech-badge {
    position: absolute;
    padding: 10px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: orbitFloat 20s linear infinite;
}

.t1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.t2 {
    top: 25%;
    right: 0;
    animation-delay: -3.3s;
}

.t3 {
    bottom: 25%;
    right: 0;
    animation-delay: -6.6s;
}

.t4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
}

.t5 {
    bottom: 25%;
    left: 0;
    animation-delay: -13.3s;
}

.t6 {
    top: 25%;
    left: 0;
    animation-delay: -16.6s;
}

.t7 {
    top: 10%;
    right: 15%;
    animation-delay: -2s;
}

.t8 {
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    animation-delay: -5s;
}

.t9 {
    bottom: 10%;
    right: 15%;
    animation-delay: -8s;
}

.t10 {
    bottom: 10%;
    left: 15%;
    animation-delay: -11s;
}

.t11 {
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    animation-delay: -14s;
}

.t12 {
    top: 10%;
    left: 15%;
    animation-delay: -17s;
}

@keyframes orbitFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 10px 40px var(--glow-primary);
}

/* ===== Vision & Mission ===== */
.vision-mission {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    position: relative;
    padding: 48px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3), var(--gradient-4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vm-card:hover::before {
    opacity: 1;
}

.vm-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vm-card:hover .vm-card-glow {
    opacity: 0.08;
}

.vision-card {
    border-color: rgba(102, 126, 234, 0.15);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.mission-card {
    border-color: rgba(236, 72, 153, 0.15);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
}

.vm-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--gradient-1);
}

.vm-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.vm-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gradient-1);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vm-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.vm-sub-text {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 8px !important;
}

/* ===== Core Values ===== */
.core-values {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.value-card:hover .value-card-glow {
    opacity: 0.08;
}

.value-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    margin-bottom: 8px;
    position: absolute;
    top: 16px;
    right: 24px;
}

.value-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Founder's Message ===== */
.founder-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.founder-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 60px 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 32px;
    overflow: hidden;
}

.founder-card-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.founder-quote-mark {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

.founder-content {
    position: relative;
    z-index: 1;
}

.founder-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.founder-highlight {
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 1.15rem !important;
    padding: 20px 24px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 12px;
    border-left: 3px solid var(--gradient-1);
    margin-top: 20px !important;
    margin-bottom: 24px !important;
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.signature-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
}

.founder-name {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Brand Tagline Strip ===== */
.tagline-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 60px;
    padding: 28px 40px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.tagline-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.tagline-item:hover span {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-divider {
    width: 4px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Careers & Work Culture ===== */
.careers-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.careers-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
}

.careers-lead {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 16px;
    margin-top: 16px;
}

.careers-lead strong {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.culture-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.culture-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.culture-badge:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    font-size: 1.4rem;
}

.culture-badge span:not(.badge-icon) {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
}

.careers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-values-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.careers-value-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.4s ease;
}

.careers-value-pill:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    color: var(--text-white);
}

.pill-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== Process ===== */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3), var(--gradient-4));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-marker {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--bg-glass);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gradient-1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-marker {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 40px var(--glow-primary);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== Contact ===== */
.contact {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 40px;
    padding: 80px;
    margin-bottom:28px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gradient-1);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    padding: 12px 24px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gradient-1);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236a6a6a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border: none;
    border-radius: 12px;
    color: white;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px var(--glow-primary);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* ===== Footer ===== */
.footer {
    padding: 15px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    /* Always visible — never hidden by scroll or animation effects */
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

/* Footer children always visible */
.footer-brand,
.footer-links,
.footer-copy,
.footer-links a,
.footer-logo-wrapper,
.footer-logo-image {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo-image {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(102, 126, 234, 0.2));
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    color: var(--text-white);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Multi-layered Mouse Follow Animation ===== */

/* Layer 1: Soft Aurora Glow – large ambient light */
.cursor-aurora {
    position: fixed;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9990;
    background: radial-gradient(circle,
            rgba(102, 126, 234, 0.08) 0%,
            rgba(118, 75, 162, 0.04) 40%,
            transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
    will-change: transform;
}

/* Layer 2: Gradient Ring – orbiting border */
.cursor-ring {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3), var(--gradient-4));
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease;
    will-change: transform;
    -webkit-mask:
        radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
    mask:
        radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
}

.cursor-ring.active {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-5), var(--gradient-1), var(--gradient-3));
}

/* Layer 3: Center Dot – bright, pulsing core */
.cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    box-shadow:
        0 0 6px rgba(102, 126, 234, 0.5),
        0 0 14px rgba(102, 126, 234, 0.2);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.25s ease,
        height 0.25s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform;
}

.cursor-dot.active {
    width: 4px;
    height: 4px;
    box-shadow:
        0 0 8px rgba(245, 87, 108, 0.5),
        0 0 18px rgba(245, 87, 108, 0.2);
    background: linear-gradient(135deg, var(--gradient-4), var(--gradient-3));
}

/* Layer 4: Particle Trail Canvas */
.cursor-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9989;
    opacity: 1;
}

/* ===== Hide custom cursor on touch & small devices ===== */
@media (hover: none),
(max-width: 768px) {

    .cursor-aurora,
    .cursor-ring,
    .cursor-dot,
    .cursor-particles {
        display: none !important;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .timeline-line {
        display: none;
    }

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

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

@media (max-width: 992px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #0a0a0f !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: none !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 48px !important;
        z-index: 99999 !important;
        padding: 0 !important;
        margin: 0 !important;
        padding-bottom: 80px !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        font-size: 1.75rem !important;
        font-weight: 600 !important;
        color: var(--text-white) !important;
        text-decoration: none !important;
        padding: 16px 32px !important;
        transition: all 0.3s ease !important;
    }

    .nav-links a:hover {
        color: var(--gradient-1) !important;
        transform: translateX(10px) !important;
    }

    .nav-links a::after {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        background: transparent;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        padding: 10px;
        z-index: 100000;
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--text-white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-cta {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .about-visual {
        order: -1;
        height: 300px;
    }

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

    .careers-grid {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .careers-visual {
        order: -1;
    }

    .culture-badges {
        justify-items: center;
    }

    .founder-card {
        padding: 44px 36px;
    }

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

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 16px;
    }

    .nav {
        padding: 12px 16px;
    }

    section {
        padding: 50px 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-desc {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

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

    .service-card {
        padding: 28px 24px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 24px 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-full,
    .vision-mission,
    .core-values,
    .founder-section,
    .careers-section {
        padding: 50px 16px;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-text-lead {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 28px 24px;
    }

    .vm-card {
        padding: 32px 24px;
    }

    .founder-card {
        padding: 36px 24px;
    }

    .founder-quote-mark {
        font-size: 5rem;
    }

    .tagline-strip {
        flex-direction: column;
        gap: 16px;
        border-radius: 24px;
        padding: 24px;
    }

    .tagline-divider {
        display: none;
    }

    .careers-grid {
        padding: 28px 20px;
    }

    .culture-badges {
        grid-template-columns: 1fr;
    }

    .tech-orbit {
        width: 250px;
        height: 250px;
    }

    .orbit-center {
        font-size: 0.9rem;
    }

    .tech-item {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .contact {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .contact-form {
        padding: 28px 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px;
    }

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

    .hero-metrics {
        flex-direction: column;
        gap: 24px;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
    }

    .logo span {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 32px;
    }

    .footer-logo-image {
        height: 24px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 16px;
    }

    section {
        padding: 40px 12px;
    }

    .about-full,
    .vision-mission,
    .core-values,
    .founder-section,
    .careers-section {
        padding: 40px 12px;
    }

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

    .hero-desc {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .vm-card h3 {
        font-size: 1.2rem;
    }

    .founder-content p {
        font-size: 1rem;
    }

    .careers-value-pill {
        font-size: 0.9rem;
        padding: 18px 20px;
    }

    .about-highlight-box {
        padding: 20px 20px 20px 24px;
    }

    .contact {
        padding: 24px 16px;
        margin: 0 -4px;
    }

    .contact-form {
        padding: 24px 16px;
    }

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