/* ═══════════════════════════════════════
           CSS CUSTOM PROPERTIES
           ═══════════════════════════════════════ */
:root {
    --primary-rust: #DE5C28;
    --primary-rust-light: #F07B4D;
    --primary-rust-dark: #B84A1F;
    --secondary-gunmetal: #1F2930;
    --accent-black: #0D0E10;
    --neutral-steel: #8E9598;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;

    --gradient-rust: linear-gradient(135deg, #DE5C28 0%, #F07B4D 100%);
    --gradient-rust-reverse: linear-gradient(135deg, #F07B4D 0%, #DE5C28 100%);
    --gradient-dark: linear-gradient(180deg, #1F2930 0%, #0D0E10 100%);
    --gradient-glow: radial-gradient(circle, rgba(222, 92, 40, 0.4) 0%, transparent 70%);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ═══════════════════════════════════════
           RESET & BASE STYLES
           ═══════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background: var(--accent-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Page Load Animation */
body.loading {
    overflow: hidden;
}

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-black);
    z-index: 99999;
    animation: pageReveal 1s ease 0.5s forwards;
}

@keyframes pageReveal {
    to {
        transform: translateY(-100%);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-gunmetal);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-rust);
    border-radius: 3px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-rust-light);
}

::selection {
    background: rgba(222, 92, 40, 0.4);
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════
           LOADING SCREEN
           ═══════════════════════════════════════ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-rust);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 24px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-rust);
    border-radius: 2px;
    animation: loaderProgress 1.5s ease forwards;
}

@keyframes loaderProgress {
    to {
        width: 100%;
    }
}

/* ═══════════════════════════════════════
           NOISE OVERLAY
           ═══════════════════════════════════════ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: noiseMove 0.5s steps(10) infinite;
}

@keyframes noiseMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-10%, -10%);
    }
}

/* ═══════════════════════════════════════
           WEBGL CANVAS
           ═══════════════════════════════════════ */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════
           FLOATING PARTICLES
           ═══════════════════════════════════════ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-rust);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 14s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 0.5s;
    animation-duration: 12s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    animation-duration: 16s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 4.5s;
    animation-duration: 13s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════
           MORPHING BLOBS
           ═══════════════════════════════════════ */
.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    opacity: 0.35;
    will-change: transform, border-radius;
}

.blob-1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(222, 92, 40, 0.6), rgba(240, 123, 77, 0.3));
    top: 5%;
    left: -8%;
    animation: morphBlob1 18s ease-in-out infinite, floatBlob1 12s ease-in-out infinite;
}

.blob-2 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(31, 41, 48, 0.8), rgba(222, 92, 40, 0.2));
    top: 35%;
    right: -12%;
    animation: morphBlob2 22s ease-in-out infinite, floatBlob2 14s ease-in-out infinite;
}

.blob-3 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(240, 123, 77, 0.5), rgba(142, 149, 152, 0.2));
    bottom: 12%;
    left: 8%;
    animation: morphBlob3 20s ease-in-out infinite, floatBlob3 16s ease-in-out infinite;
}

.blob-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(222, 92, 40, 0.4), transparent 70%);
    top: 60%;
    left: 50%;
    animation: morphBlob1 15s ease-in-out infinite reverse, floatBlob2 10s ease-in-out infinite;
}

@keyframes morphBlob1 {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    75% {
        border-radius: 60% 40% 50% 60% / 30% 70% 40% 70%;
    }
}

@keyframes morphBlob2 {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    33% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    66% {
        border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    }
}

@keyframes morphBlob3 {

    0%,
    100% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 60% 40% 50% 60% / 30% 70% 40% 70%;
    }
}

@keyframes floatBlob1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -20px) rotate(10deg) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) rotate(-5deg) scale(0.95);
    }

    75% {
        transform: translate(15px, 15px) rotate(8deg) scale(1.02);
    }
}

@keyframes floatBlob2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-25px, 20px) rotate(-8deg);
    }

    66% {
        transform: translate(20px, -25px) rotate(12deg);
    }
}

@keyframes floatBlob3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(25px, -30px) scale(1.1);
    }
}

/* ═══════════════════════════════════════
           PULL TO REFRESH
           ═══════════════════════════════════════ */
.pull-refresh {
    position: fixed;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-rust);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s var(--spring);
    box-shadow: 0 8px 32px rgba(222, 92, 40, 0.5);
}

.pull-refresh.active {
    top: 20px;
    opacity: 1;
    animation: pullBounce 0.5s var(--elastic);
}

@keyframes pullBounce {
    0% {
        transform: translateX(-50%) scale(0.5);
    }

    60% {
        transform: translateX(-50%) scale(1.2);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.pull-refresh i {
    color: white;
    font-size: 20px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ═══════════════════════════════════════
           RIPPLE EFFECT
           ═══════════════════════════════════════ */
.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    border-radius: inherit;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 92, 40, 0.4) 0%, transparent 70%);
    transform: scale(0);
    animation: rippleEffect 0.8s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 60px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--accent-black) 0%, var(--secondary-gunmetal) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(222, 92, 40, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

/* Badge with shimmer */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(222, 92, 40, 0.12);
    border: 1px solid rgba(222, 92, 40, 0.25);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-rust);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--spring) 0.3s forwards;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.hero-badge i {
    font-size: 12px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Logo with enhanced glitch */
.hero-logo {
    margin-bottom: 24px;
    cursor: pointer;
    perspective: 1000px;
}

.hero-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(38px, 10vw, 58px);
    font-weight: 800;
    background: var(--gradient-rust);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: fadeSlideUp 0.8s var(--spring) 0.5s forwards, gradientShift 8s ease infinite;
    opacity: 0;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-logo-text.glitch {
    animation: glitchText 0.5s ease;
}

.hero-logo-text.glitch::before,
.hero-logo-text.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-rust);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-logo-text.glitch::before {
    animation: glitchLayer1 0.5s ease;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.hero-logo-text.glitch::after {
    animation: glitchLayer2 0.5s ease;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchText {

    0%,
    100% {
        transform: translate(0) skew(0deg);
    }

    20% {
        transform: translate(-3px, 2px) skew(2deg);
    }

    40% {
        transform: translate(3px, -2px) skew(-2deg);
    }

    60% {
        transform: translate(-2px, -1px) skew(1deg);
    }

    80% {
        transform: translate(2px, 1px) skew(-1deg);
    }
}

@keyframes glitchLayer1 {

    0%,
    100% {
        transform: translate(0);
        opacity: 0;
    }

    20% {
        transform: translate(-4px, 0);
        opacity: 0.8;
    }

    40% {
        transform: translate(4px, 0);
        opacity: 0.8;
    }

    60% {
        transform: translate(-4px, 0);
        opacity: 0.8;
    }

    80% {
        transform: translate(4px, 0);
        opacity: 0.8;
    }
}

@keyframes glitchLayer2 {

    0%,
    100% {
        transform: translate(0);
        opacity: 0;
    }

    20% {
        transform: translate(4px, 0);
        opacity: 0.8;
    }

    40% {
        transform: translate(-4px, 0);
        opacity: 0.8;
    }

    60% {
        transform: translate(4px, 0);
        opacity: 0.8;
    }

    80% {
        transform: translate(-4px, 0);
        opacity: 0.8;
    }
}

/* Tagline with typewriter */
.hero-tagline {
    font-size: 15px;
    color: var(--neutral-steel);
    margin-bottom: 48px;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--spring) 0.7s forwards;
    min-height: 24px;
}

.scramble-text {
    display: inline-block;
}

.scramble-char {
    display: inline-block;
    color: var(--primary-rust);
    animation: charFlicker 0.1s ease;
}

@keyframes charFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Stats with enhanced animation */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--spring) 0.9s forwards;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--gradient-rust);
    transition: transform 0.5s var(--spring);
}

.stat-item.animated::after {
    transform: translateX(-50%) scaleX(1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(34px, 8vw, 50px);
    font-weight: 800;
    color: var(--primary-rust);
    line-height: 1;
    display: block;
    transition: transform 0.3s var(--spring);
}

.stat-number.pop {
    animation: numberPop 0.6s var(--elastic);
}

@keyframes numberPop {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.stat-label {
    font-size: 11px;
    color: var(--neutral-steel);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    display: block;
}

/* Scroll Indicator enhanced */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards, floatUpDown 3s ease-in-out infinite 1.5s;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.scroll-indicator span {
    font-size: 10px;
    color: var(--neutral-steel);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--neutral-steel);
    border-radius: 12px;
    position: relative;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover .scroll-mouse {
    border-color: var(--primary-rust);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-rust);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.2;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════
           SECTION COMMON STYLES
           ═══════════════════════════════════════ */
.section {
    position: relative;
    padding: 80px 20px;
    z-index: 5;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-rust);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--spring);
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-rust);
    transition: width 0.8s ease 0.3s;
}

.section-subtitle.visible::before,
.section-subtitle.visible::after {
    width: 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--spring) 0.1s;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title .highlight {
    background: var(--gradient-rust);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-rust);
    transition: width 0.8s ease 0.5s;
}

.section-title.visible .highlight::after {
    width: 100%;
}

/* Letter by letter animation */
.letter-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotate(10deg);
    transition: all 0.4s var(--spring);
}

.letter-animate.visible {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.section-desc {
    font-size: 14px;
    color: var(--neutral-steel);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--spring) 0.2s;
}

.section-desc.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll highlight effect */
.highlight-word {
    position: relative;
    display: inline;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2px;
    right: -2px;
    height: 35%;
    background: rgba(222, 92, 40, 0.25);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: -1;
}

.highlight-word.active::after {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════
           DEVELOPED SECTION
           ═══════════════════════════════════════ */
.developed-section {
    background: var(--secondary-gunmetal);
}

.developed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(222, 92, 40, 0.3), transparent);
}

.developed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.developed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s var(--spring);
    cursor: pointer;
}

.developed-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.developed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-rust);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--spring);
}

.developed-card:active::before {
    transform: scaleX(1);
}

.developed-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(222, 92, 40, 0.1) 0%, transparent 50%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.developed-card:active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Liquid hover effect */
.developed-card .liquid {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(222, 92, 40, 0.08));
    border-radius: 50% 50% 0 0;
    transition: bottom 0.6s var(--spring);
    pointer-events: none;
}

.developed-card:active .liquid {
    bottom: 0;
}

.developed-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-rust);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}

.developed-card:active .developed-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(222, 92, 40, 0.4);
}

.developed-icon i {
    font-size: 22px;
    color: white;
    transition: transform 0.4s var(--spring);
}

.developed-card:active .developed-icon i {
    transform: scale(1.1);
}

/* SVG Draw Animation */
.developed-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.developed-icon svg path,
.developed-icon svg line,
.developed-icon svg polyline,
.developed-icon svg circle,
.developed-icon svg rect {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s ease;
}

.developed-card.visible .developed-icon svg path,
.developed-card.visible .developed-icon svg line,
.developed-card.visible .developed-icon svg polyline,
.developed-card.visible .developed-icon svg circle,
.developed-card.visible .developed-icon svg rect {
    stroke-dashoffset: 0;
}

.developed-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.developed-card:active h3 {
    transform: translateX(4px);
}

.developed-card p {
    font-size: 13px;
    color: var(--neutral-steel);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════
           TEAM SECTION
           ═══════════════════════════════════════ */
.team-section {
    background: var(--accent-black);
}

.swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--neutral-steel);
    font-size: 12px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.5s forwards;
}

.swipe-hint i {
    color: var(--primary-rust);
}

.swipe-hint i:first-child {
    animation: swipeLeft 2s ease-in-out infinite;
}

.swipe-hint i:last-child {
    animation: swipeRight 2s ease-in-out infinite;
}

@keyframes swipeLeft {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

@keyframes swipeRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.team-carousel-wrapper {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.team-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 4px;
    scroll-behavior: smooth;
}

.team-carousel::-webkit-scrollbar {
    display: none;
}

/* Team Card with 3D flip */
.team-card {
    flex: 0 0 calc(100vw - 56px);
    max-width: 320px;
    height: 500px;
    scroll-snap-align: center;
    perspective: 2000px;
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s var(--spring) forwards;
}

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.team-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Front of Card */
.team-card-front {
    background: linear-gradient(180deg, var(--secondary-gunmetal) 0%, #151b20 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.team-photo-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: grayscale(20%);
}

.team-card:active .team-photo {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.team-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, #151b20);
    pointer-events: none;
}

/* Photo reveal mask */
.team-photo-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gunmetal);
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.team-card.revealed .team-photo-mask {
    transform: translateY(-100%);
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.3s;
}

.team-card.revealed .team-name {
    opacity: 1;
    transform: translateY(0);
}

.team-title {
    font-size: 12px;
    color: var(--primary-rust);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.4s;
}

.team-card.revealed .team-title {
    opacity: 1;
    transform: translateY(0);
}

.flip-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--neutral-steel);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.5s;
    animation: hintPulse 2s ease-in-out infinite 1s;
}

.team-card.revealed .flip-hint {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hintPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(222, 92, 40, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(222, 92, 40, 0);
    }
}

.flip-hint i {
    animation: rotateHint 3s ease-in-out infinite;
}

@keyframes rotateHint {

    0%,
    100% {
        transform: rotateY(0);
    }

    50% {
        transform: rotateY(180deg);
    }
}

/* Back of Card */
.team-card-back {
    background: linear-gradient(180deg, var(--secondary-gunmetal) 0%, #151b20 100%);
    border: 2px solid rgba(222, 92, 40, 0.3);
    transform: rotateY(180deg);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.back-header {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.back-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.back-role {
    font-size: 11px;
    color: var(--primary-rust);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
}

.back-content::-webkit-scrollbar {
    width: 3px;
}

.back-content::-webkit-scrollbar-thumb {
    background: var(--primary-rust);
    border-radius: 2px;
}

.back-section {
    margin-bottom: 16px;
}

.back-section h4 {
    font-size: 10px;
    color: var(--neutral-steel);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.back-section p {
    font-size: 13px;
    color: var(--white);
    line-height: 1.6;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-tag {
    padding: 5px 12px;
    background: rgba(222, 92, 40, 0.12);
    border: 1px solid rgba(222, 92, 40, 0.25);
    border-radius: 50px;
    font-size: 11px;
    color: var(--primary-rust);
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:active {
    background: var(--primary-rust);
    color: white;
    transform: scale(0.95);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    width: 46px;
    height: 46px;
    background: rgba(222, 92, 40, 0.15);
    border: 1px solid rgba(222, 92, 40, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-rust);
    text-decoration: none;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--spring);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-rust);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.social-link:active::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s var(--spring);
}

.social-link:active {
    transform: scale(0.9);
    border-color: var(--primary-rust);
}

.social-link:active i {
    color: white;
    transform: scale(1.1);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s var(--spring);
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--gradient-rust);
}

.carousel-dot.active::before {
    border-color: rgba(222, 92, 40, 0.3);
    width: 44px;
    height: 20px;
    border-radius: 10px;
}

/* ═══════════════════════════════════════
           TRUST SECTION
           ═══════════════════════════════════════ */
.trust-section {
    background: linear-gradient(180deg, var(--secondary-gunmetal) 0%, var(--accent-black) 100%);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(222, 92, 40, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s var(--spring);
    position: relative;
    overflow: hidden;
}

.trust-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.trust-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(222, 92, 40, 0.1), transparent 30%);
    animation: rotateBorder 6s linear infinite paused;
}

.trust-item:active::before {
    animation-play-state: running;
}

.trust-item::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(31, 41, 48, 0.95);
    border-radius: calc(var(--radius-md) - 1px);
    z-index: 0;
}

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

.trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    background: rgba(222, 92, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--spring);
}

.trust-item:active .trust-icon {
    transform: scale(1.15) rotate(-10deg);
    background: rgba(222, 92, 40, 0.2);
}

.trust-icon i {
    font-size: 20px;
    color: var(--primary-rust);
    transition: transform 0.4s var(--spring);
}

.trust-item:active .trust-icon i {
    transform: scale(1.1);
}

/* SVG Icon animation */
.trust-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-rust);
    stroke-width: 2;
    fill: none;
}

.trust-icon svg path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.2s ease;
}

.trust-item.visible .trust-icon svg path {
    stroke-dashoffset: 0;
}

.trust-item h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.trust-item p {
    font-size: 11px;
    color: var(--neutral-steel);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
           TECH SECTION
           ═══════════════════════════════════════ */
.tech-section {
    background: var(--accent-black);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px) rotateX(20deg);
    transition: all 0.5s var(--spring);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(222, 92, 40, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-card:active::before {
    left: 100%;
}

.tech-card:active {
    background: rgba(222, 92, 40, 0.1);
    border-color: rgba(222, 92, 40, 0.3);
    transform: scale(0.92) rotateY(10deg);
}

.tech-icon {
    font-size: 26px;
    color: var(--primary-rust);
    margin-bottom: 8px;
    transition: all 0.4s var(--elastic);
    display: inline-block;
}

.tech-card:active .tech-icon {
    transform: scale(1.3) rotate(360deg);
}

.tech-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
           PROCESS TIMELINE
           ═══════════════════════════════════════ */
.process-section {
    background: var(--secondary-gunmetal);
}

.timeline {
    position: relative;
    padding-left: 36px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-progress {
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--gradient-rust);
    transition: height 0.5s ease;
    box-shadow: 0 0 10px rgba(222, 92, 40, 0.5);
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s var(--spring);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--accent-black);
    border: 2px solid rgba(222, 92, 40, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--spring);
    z-index: 2;
}

.timeline-item.visible .timeline-dot {
    border-color: var(--primary-rust);
    box-shadow: 0 0 0 4px rgba(222, 92, 40, 0.2);
}

.timeline-dot span {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-rust);
}

/* Dot pulse animation */
.timeline-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-rust);
    animation: dotPulse 2s ease-in-out infinite;
    opacity: 0;
}

.timeline-item.visible .timeline-dot::before {
    opacity: 1;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.4s ease;
}

.timeline-item:active .timeline-content {
    background: rgba(222, 92, 40, 0.05);
    border-color: rgba(222, 92, 40, 0.2);
    transform: scale(0.98);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--neutral-steel);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
           SUPPORT SECTION
           ═══════════════════════════════════════ */
.support-section {
    background: var(--accent-black);
    position: relative;
    overflow: hidden;
}

.support-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.support-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.support-blob-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-rust);
    top: -100px;
    right: -100px;
    animation: supportFloat1 10s ease-in-out infinite;
}

.support-blob-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-gunmetal);
    bottom: -80px;
    left: -80px;
    animation: supportFloat2 12s ease-in-out infinite;
}

@keyframes supportFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 30px) scale(1.1);
    }

    66% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

@keyframes supportFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -30px) scale(1.1);
    }
}

.support-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--spring);
    animation: floatCard 6s ease-in-out infinite paused;
}

.support-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation-play-state: running;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.support-icon {
    width: 76px;
    height: 76px;
    background: var(--gradient-rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(222, 92, 40, 0.4);
    position: relative;
    transition: transform 0.4s var(--spring);
}

.support-card:active .support-icon {
    transform: scale(1.1) rotate(-5deg);
}

.support-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-rust);
    animation: iconPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.support-icon i {
    font-size: 30px;
    color: white;
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.support-card>p {
    font-size: 14px;
    color: var(--neutral-steel);
    line-height: 1.7;
    margin-bottom: 28px;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(222, 92, 40, 0.1);
    transition: width 0.4s ease;
}

.support-feature:active::before {
    width: 100%;
}

.support-feature i {
    color: var(--primary-rust);
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.support-feature span {
    font-size: 13px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
           ETHICS SECTION
           ═══════════════════════════════════════ */
.ethics-section {
    background: var(--secondary-gunmetal);
}

.ethics-card {
    background: rgba(222, 92, 40, 0.08);
    border: 1px solid rgba(222, 92, 40, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s var(--spring);
}

.ethics-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.ethics-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(222, 92, 40, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ethicsFloat 4s ease-in-out infinite;
}

@keyframes ethicsFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.ethics-icon i {
    font-size: 20px;
    color: var(--primary-rust);
}

.ethics-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.ethics-content p {
    font-size: 13px;
    color: var(--neutral-steel);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════ */
.footer {
    background: var(--accent-black);
    padding: 48px 20px 120px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-rust);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    background: var(--gradient-rust);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s var(--spring);
}

.footer-logo:active {
    transform: scale(0.95);
    animation: glitchText 0.4s ease;
}

.footer-tagline {
    font-size: 14px;
    color: var(--neutral-steel);
    margin-bottom: 20px;
}

.footer-tagline i {
    color: var(--primary-rust);
    animation: heartBeat 1.2s ease-in-out infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.25);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════
           CONTACT TRIGGER FAB
           ═══════════════════════════════════════ */
.contact-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--gradient-rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 6px 28px rgba(222, 92, 40, 0.5);
    transition: all 0.4s var(--spring);
    animation: fabAppear 0.6s var(--elastic) 1s backwards;
}

@keyframes fabAppear {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.contact-trigger:active {
    transform: scale(0.9);
}

.contact-trigger i {
    font-size: 24px;
    color: white;
    transition: transform 0.4s var(--spring);
}

.contact-trigger:active i {
    transform: rotate(20deg);
}

.contact-trigger .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-rust);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════
           BOTTOM SHEET
           ═══════════════════════════════════════ */
.bottom-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.bottom-sheet-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--secondary-gunmetal) 0%, var(--accent-black) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 12px 24px 44px;
    z-index: 201;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.bottom-sheet.active {
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    margin: 0 auto 24px;
    cursor: grab;
    transition: background 0.3s ease, width 0.3s ease;
}

.bottom-sheet-handle:active {
    background: var(--primary-rust);
    width: 60px;
}

.bottom-sheet h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}

.bottom-sheet>p {
    font-size: 14px;
    color: var(--neutral-steel);
    text-align: center;
    margin-bottom: 28px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.4s var(--spring);
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-rust);
    transition: height 0.4s ease;
}

.contact-option:active::before {
    height: 100%;
}

.contact-option:active {
    background: rgba(222, 92, 40, 0.1);
    border-color: rgba(222, 92, 40, 0.3);
    transform: scale(0.98) translateX(4px);
}

.contact-option-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-rust);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--spring);
    box-shadow: 0 4px 16px rgba(222, 92, 40, 0.3);
}

.contact-option:active .contact-option-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-option-icon i {
    font-size: 22px;
    color: white;
}

.contact-option-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-option-content span {
    font-size: 12px;
    color: var(--neutral-steel);
}

.contact-option-arrow {
    margin-left: auto;
    color: var(--neutral-steel);
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-option:active .contact-option-arrow {
    transform: translateX(4px);
    color: var(--primary-rust);
}

/* ═══════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════ */
@media (min-width: 480px) {
    .team-card {
        flex: 0 0 320px;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 100px 40px;
    }

    .developed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .tech-grid {
        gap: 16px;
    }

    .team-card {
        flex: 0 0 340px;
        height: 520px;
    }

    .contact-options {
        flex-direction: row;
    }

    .contact-option {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 120px 40px;
    }

    .container {
        max-width: 1100px;
    }

    .developed-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .swipe-hint {
        display: none;
    }

    .team-carousel {
        justify-content: center;
        overflow: visible;
    }

    .team-card {
        flex: 0 0 300px;
    }

    .timeline {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Hover effects for desktop */
    .developed-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(222, 92, 40, 0.2);
    }

    .developed-card:hover::before {
        transform: scaleX(1);
    }

    .trust-item:hover {
        transform: translateY(-5px);
        border-color: rgba(222, 92, 40, 0.2);
    }

    .tech-card:hover {
        transform: translateY(-5px);
    }

    .social-link:hover::before {
        width: 100%;
        height: 100%;
    }

    .social-link:hover i {
        color: white;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}