@import url('/css/theme.css');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0f0f0f 100%);
    overflow: hidden;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.logo-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: logoFadeIn 2s ease-out 0.5s forwards;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.logo-main {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.6rem, 1.2vw, 0.8rem);
    font-weight: 300;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-top: 8px;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.tagline-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    opacity: 0;
    animation: taglineSlideUp 2s ease-out 1.5s forwards;
}

@keyframes taglineSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6);
    text-transform: none;
    position: relative;
    font-style: italic;
}

.tagline::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-btn {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: buttonFadeIn 2s ease-out 2s forwards;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn:hover {
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

/* About section */
.about {
    position: relative;
    padding: 0 24px 140px;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 60%, #0f0f0f 100%);
    overflow: hidden;
    scroll-behavior: smooth;
}

/* ensure header patterns use gold only */
.header-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    background-size: 120% 120%, 120% 120%, 150% 150%;
    animation: patternShift 20s ease-in-out infinite;
    opacity: 0.5;
}

.about-edge {
    position: relative;
    height: 90px;
}

.about-edge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-edge path {
    fill: #0a0a0a;
    opacity: 0.9;
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.power-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120%;
    height: 240px;
}

.power-wave path {
    fill: none;
    stroke: #FFD700;
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.25));
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    transition: all 0.6s ease;
    /* animation: waveDraw 2.8s ease-out 0.4s forwards; */
}

.power-wave.wave-flow path {
    animation: waveDraw 2.8s ease-out 0.4s forwards;
}

@keyframes waveDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Wave exit animation */
.power-wave.wave-exit path {
    stroke-dashoffset: 1400;
    stroke-width: 4;
    filter: drop-shadow(0 4px 16px rgba(255, 215, 0, 0.5));
    animation: waveExit 1.5s ease-in-out forwards;
}

@keyframes waveExit {
    0% {
        stroke-dashoffset: 0;
        stroke-width: 2;
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.25));
    }

    50% {
        stroke-dashoffset: 700;
        stroke-width: 3;
        filter: drop-shadow(0 3px 12px rgba(255, 215, 0, 0.4));
    }

    100% {
        stroke-dashoffset: 1400;
        stroke-width: 4;
        filter: drop-shadow(0 4px 16px rgba(255, 215, 0, 0.5));
    }
}

.about-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(255, 215, 0, 0.18) 0%, rgba(255, 215, 0, 0.06) 55%, rgba(255, 215, 0, 0) 70%);
    filter: blur(10px);
    z-index: 0;
    animation: blobFolat 10s ease-in-out infinite;
}

@keyframes blobFloat {

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

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

.about-blob-a {
    top: 10%;
    left: -120px;
    animation-delay: 0s;
}

.about-blob-b {
    bottom: 10%;
    right: -120px;
    animation-delay: 2.5s;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-family: 'Inter', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    color: #D0D0D0;
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* Two Column Grid Layout */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Left Column: Stats */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateX(8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 16px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    color: #FFD700;
    font-weight: 700;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    color: #C8C8C8;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Feature Highlight */
.feature-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: featureGlow 8s ease-in-out infinite;
}

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

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.15) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

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

.feature-content h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.feature-content p {
    font-family: 'Inter', sans-serif;
    color: #D0D0D0;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* Snapshot visuals */
.about-snapshot {
    margin-top: 42px;
    position: relative;
}

.cluster-bg {
    position: absolute;
    inset: -20px 0 0 0;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.7;
}

.orb-a {
    top: -40px;
    left: -120px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(255, 215, 0, 0.18) 0%, rgba(255, 215, 0, 0.06)55%, rgba(255, 215, 0, 0)70%);
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-b {
    bottom: -80px;
    right: -140px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(100, 149, 237, 0.16) 0%, rgba(100, 149, 237, 0.05) 55%, rgba(100, 149, 237, 0) 70%);
    animation: orbFloat 14s ease-in-out infinte 1.4s;
}

@keyframes orbFloat {

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

    50% {
        transform: translate(12px, -16px);
    }
}

.about-intro {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 22px;
}

.about-intro .about-title {
    font-weight: 700;
    letter-spacing: 0.4px;
}

.about-story {
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 48px auto 0;
    text-align: center;
}

.about-story p {
    font-family: 'Cormorant Garamond', serif;
    color: #E8E8E8;
    font-size: clamp(1.05rem, 2.2vw, 1.15rem);
    line-height: 1.9;
    font-weight: 400;
}

/* Right Column: Benefits */
.about-right {
    display: flex;
    flex-direction: column;
}

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

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s ease infinite;
}

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

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

.benefit-card:hover::after {
    opacity: 0.3;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.benefit-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.12) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35) 0%, rgba(255, 215, 0, 0.2) 100%);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.2px;
    flex: 1;
}

.benefit-card p {
    font-family: 'Inter', sans-serif;
    color: #D0D0D0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

.benefit-footer {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.benefit-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: #FFD700;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.workflow {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    padding: 40px 0;
}

.workflow-track {
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50px;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(212, 175, 55, 0.25) 25%,
            rgba(212, 175, 55, 0.35) 50%,
            rgba(212, 175, 55, 0.25) 75%,
            rgba(255, 255, 255, 0.08) 100%);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.workflow-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.85) 20%,
            rgba(212, 175, 55, 0.95) 50%,
            rgba(212, 175, 55, 0.85) 80%,
            transparent 100%);
    animation: trackFlow 4s ease-in-out infinite;
}

.workflow-track::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg,
            rgba(255, 215, 0, 0.1) 0%,
            rgba(255, 215, 0, 0.3) 25%,
            rgba(100, 149, 237, 0.4) 50%,
            rgba(255, 215, 0, 0.3) 75%,
            rgba(255, 215, 0, 0.1) 100%);
    border-radius: 4px;
    filter: blur(1px);
    animation: trackGlow 2s ease-in-out infinite alternate;
}

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

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes trackGlow {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.8;
    }
}

.workflow-connections {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}

.workflow-connection {
    position: absolute;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(212, 175, 55, 0.2) 0%,
            rgba(212, 175, 55, 0.35) 50%,
            rgba(212, 175, 55, 0.2) 100%);
    border-radius: 2px;
    animation: connectionPulse 3s ease-in-out infinite;
}

.workflow-connection:nth-child(1) {
    left: 0;
    width: 20%;
    animation-delay: 0s;
}

.workflow-connection:nth-child(2) {
    left: 20%;
    width: 20%;
    animation-delay: 0.5s;
}

.workflow-connection:nth-child(3) {
    left: 40%;
    width: 20%;
    animation-delay: 1s;
}

.workflow-connection:nth-child(4) {
    left: 60%;
    width: 20%;
    animation-delay: 1.5s;
}

.workflow-connection:nth-child(5) {
    left: 80%;
    width: 20%;
    animation-delay: 2s;
}


@keyframes connectionPulse {

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

    50% {
        opacity: 0.6;
        transform: scaleY(1.5);
    }
}

.workflow-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    z-index: 3;
}

.workflow-item {
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.workflow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.05) 0%,
            rgba(100, 149, 237, 0.05) 50%,
            rgba(255, 215, 0, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.workflow-item:hover::before {
    opacity: 1;
}

.workflow-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(255, 215, 0, 0.8) 0%,
            rgba(100, 149, 237, 0.9) 50%,
            rgba(255, 215, 0, 0.8) 100%);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.wf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.1) 0%,
            rgba(100, 149, 237, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin: 0 auto 12px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 1.5rem;
}

.wf-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(100, 149, 237, 0.2) 50%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.workflow-item:hover .wf-icon {
    transform: scale(1.15) rotateY(10deg);
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.2) 0%,
            rgba(100, 149, 237, 0.2) 100%);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.workflow-item:hover .wf-icon::before {
    opacity: 1;
    animation: none;
}

.wf-label {
    font-family : 'Playfair Display', serif;
    display: block;
    color: #EDEDED;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.workflow-item:hover .wf-label {
    color: #FFD700;
    transform: translateY(-2px);
}

.workflow-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.workflow-item:hover .workflow-step-number {
    opacity: 1;
    transform: scale(1);
}

.workflow-item.active-step {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.workflow-item.active-step .wf-icon {
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.2) 0%,
            rgba(100, 149, 237, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.workflow-item.active-step .wf-label {
    color: #FFD700;
}

.workflow-item.active-step .workflow-step-number {
    opacity: 1;
    transform: scale(1);
}

.workflow-item.workflow-progress .wf-icon::before {
    animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.about-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: ctaGlow 6s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-family: 'Inter', sans-serif;
    color: #D0D0D0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.2px;
}

.cta-button {
    position: relative;
    z-index: 1;
    padding: 20px 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.15) 100%);
    color: #ffffff;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) var(--d, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Special reveal animations for different elements */
.reveal[data-reveal="fade-up"] {
    transform: translateY(40px) scale(0.9);
}

.reveal[data-reveal="fade-up"].is-visible {
    transform: translateY(0) scale(1);
}

.stat.reveal {
    transform: translateY(50px) scale(0.8) rotateX(15deg);
    opacity: 0;
}

.stat.reveal.is-visible {
    transform: translateY(0) scale(1) rotateX(0deg);
    opacity: 1;
}

/* Special animation for benefit cards */
.benefit-card.reveal {
    transform: translateY(60px) scale(0.85) rotateY(10deg);
    opacity: 0;
}

.benefit-card.reveal.is-visible {
    transform: translateY(0) scale(1) rotateY(0deg);
    opacity: 1;
}

/* Workflow items special animation */
.workflow-item.reveal {
    transform: translateY(40px) scale(0.9);
    opacity: 0;
}

.workflow-item.reveal.is-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Founders Section */
.founders {
    position: relative;
    padding: 120px 24px 140px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    overflow: hidden;
}

.founder-card {
    max-width: 1100px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.founder-image-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    padding: 20px;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.founder-detail-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
    letter-spacing: 0.2px;
    padding-left: 24px;
    position: relative;
}

.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 600;
}

/* Footer Section */
.footer {
    position: relative;
    padding: 80px 24px 40px;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.footer-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-category-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.footer-category-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.2px;
}

.footer-category-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    opacity: 0.8;
}

/* Categories Section */
.categories {
    position: relative;
    padding: 120px 24px 160px;
    background: linear-gradient(180deg, #0b0f1c 0%, #0a0a0a 40%, #0f1222 80%, #0a0a0a 100%);
    overflow: hidden;
}

/* Animated gradient overlay */
.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: fadePulse 4s ease-in-out infinite;
}

@keyframes fadePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating particles background */
.categories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(100, 149, 237, 0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 215, 0, 0.1), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(100, 149, 237, 0.12), transparent);
    background-size: 200% 200%;
    animation: floatParticles 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 2px 25px rgba(255, 215, 0, 0.8); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.6);
    animation: titleGlow 2s ease-in-out infinite 0.3s;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.4) 0%, rgba(20, 20, 40, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Animated gradient border on hover */
.category-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), #FFA500, var(--gold), var(--gold), var(--gold));
    background-size: 300% 300%;
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: gradientShift 4s ease infinite;
}

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

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

/* Shine effect */
.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.category-card:hover::after {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-16px) scale(1.03);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 30px 80px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1222 100%);
}

/* Gradient overlay on image */
.category-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-image-wrapper::before {
    opacity: 0.3;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.9);
}

.category-card:hover .category-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    transition: opacity 0.4s ease;
    z-index: 2;
}

.category-content {
    position: relative;
    padding: 32px 28px 36px;
    z-index: 4;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.95) 0%, rgba(10, 10, 20, 1) 100%);
}

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-card:hover .category-name {
    color: #FFD700;
    transform: translateY(-2px);
}

.category-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #C8C8C8;
    line-height: 1.7;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.category-card:hover .category-desc {
    color: #E0E0E0;
}

.category-link {
    font-family: 'Playfair Display', serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 12px 24px 12px 0;
    position: relative;
    letter-spacing: 0.3px;
}

.category-link::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #FFA500, var(--gold));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
}

.category-card:hover .category-link::before {
    width: calc(100% - 32px);
}

.category-link svg {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.category-card:hover .category-link svg {
    transform: translateX(8px) scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
}

.category-link:hover {
    color: #FFA500;
}

.no-categories,
.error {
    text-align: center;
    padding: 80px 20px;
    color: #D0D0D0;
    font-size: 1.2rem;
    grid-column: 1 / -1;
    font-weight: 500;
}

.error {
    color: #ff6b6b;
}

/* Skeleton Loading Styles */
.skeleton-loading {
    animation: skeletonPulse 1.5s ease-in-out infinite;
    pointer-events: none;
}

.skeleton-loading .category-image-wrapper {
    position: relative;
}

.skeleton-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.skeleton-title {
    height: 28px;
    width: 70%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    border-radius: 6px;
    margin-bottom: 16px;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 16px;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 100%
    );
    background-size: 200% 100%;
    border-radius: 4px;
    margin-bottom: 12px;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.skeleton-text:last-of-type {
    margin-bottom: 24px;
}

.skeleton-button {
    height: 24px;
    width: 150px;
    background: linear-gradient(
        90deg,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 215, 0, 0.2) 50%,
        rgba(255, 215, 0, 0.1) 100%
    );
    background-size: 200% 100%;
    border-radius: 4px;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

@keyframes skeletonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes skeletonShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Smooth fade-in for loaded content */
.category-card.loading-in {
    animation: contentFadeIn 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade out skeleton before content appears */
.category-grid.fade-out-skeleton .skeleton-loading {
    animation: skeletonFadeOut 0.3s ease-out forwards;
}

@keyframes skeletonFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive Design */

/* Large Desktop (1400px+) - Already optimized */

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) {
    .about-inner {
        max-width: 1100px;
    }
    
    .about-content-grid {
        gap: 50px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .benefit-card {
        padding: 28px;
    }
}

/* Tablet Landscape (992px - 1023px) */
@media (max-width: 1023px) {
    .about {
        padding: 0 20px 120px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-highlight {
        padding: 28px;
    }
    
    .about-cta {
        padding: 50px 30px;
        margin-top: 60px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
    
    .category-image-wrapper {
        height: 280px;
    }
    
    .footer {
        padding: 70px 20px 35px;
    }
    
    .footer-content {
        gap: 50px;
        margin-bottom: 40px;
    }
    
    .founders {
        padding: 100px 20px 120px;
    }
    
    .founder-card {
        padding: 45px;
        grid-template-columns: 280px 1fr;
        gap: 50px;
        margin-top: 50px;
    }
    
    .founder-image-wrapper {
        height: 380px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .hero {
        min-height: 90vh;
    }
    
    .logo-text {
        top: 30px;
    }
    
    .logo-main {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }
    
    .logo-tagline {
        font-size: clamp(0.55rem, 1.5vw, 0.75rem);
    }
    
    .tagline-container {
        bottom: 100px;
    }
    
    .tagline {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 35px;
    }
    
    .contact-btn {
        padding: 16px 40px;
        font-size: 0.85rem;
    }
    
    .about {
        padding: 0 20px 100px;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .about-content-grid {
        gap: 40px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 20px;
        gap: 16px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .stat-value {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }
    
    .feature-highlight {
        padding: 24px;
        gap: 20px;
    }
    
    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .benefit-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .benefit-card h3 {
        font-size: 1.15rem;
    }
    
    .about-cta {
        padding: 40px 30px;
        margin-top: 60px;
    }
    
    .workflow {
        padding: 35px 0;
    }
    
    .workflow-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .workflow-track {
        left: 20px;
        right: 20px;
        top: 40px;
    }
    
    .wf-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .founders {
        padding: 100px 20px 110px;
    }
    
    .founder-card {
        padding: 40px 30px;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 550px;
        margin-top: 50px;
    }
    
    .founder-image-wrapper {
        height: 380px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-details {
        gap: 24px;
    }
    
    .categories {
        padding: 100px 20px 120px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 50px;
    }
    
    .section-title::before,
    .section-title::after {
        animation: none;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .category-card {
        border-radius: 20px;
    }
    
    .category-image-wrapper {
        height: 240px;
    }
    
    .category-content {
        padding: 28px 24px 32px;
    }
    
    .category-name {
        font-size: 1.4rem;
    }
    
    .category-desc {
        font-size: 0.95rem;
    }
    
    .category-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .hero {
        min-height: 85vh;
    }
    
    .logo-text {
        top: 25px;
    }
    
    .tagline-container {
        bottom: 80px;
    }
    
    .tagline {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }
    
    .tagline::before,
    .tagline::after {
        width: 80px;
    }
    
    .contact-btn {
        padding: 14px 35px;
        font-size: 0.8rem;
    }
    
    .about {
        padding: 0 16px 90px;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-badge {
        padding: 6px 16px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .about-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    
    .about-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    
    .about-content-grid {
        gap: 35px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .stat-card {
        padding: 18px;
        gap: 14px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .feature-highlight {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .benefit-card {
        padding: 22px;
    }
    
    .benefit-header {
        gap: 14px;
        margin-bottom: 14px;
    }
    
    .benefit-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .about-cta {
        padding: 35px 24px;
        margin-top: 50px;
    }
    
    .cta-content h3 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 0.95rem;
    }
    
    .workflow {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .workflow-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .workflow-track {
        left: 15px;
        right: 15px;
        top: 35px;
        height: 3px;
    }
    
    .workflow-item {
        padding: 16px 8px;
    }
    
    .wf-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .wf-label {
        font-size: 0.9rem;
    }
    
    .about-cta {
        margin-top: 30px;
    }
    
    .about-cta .contact-btn {
        padding: 14px 32px;
    }
    
    .founders {
        padding: 90px 16px 100px;
    }
    
    .founder-card {
        padding: 35px 24px;
        gap: 35px;
        margin-top: 40px;
    }
    
    .founder-image-wrapper {
        height: 340px;
    }
    
    .founder-details {
        gap: 22px;
    }
    
    .founder-detail-row {
        padding-bottom: 18px;
    }
    
    .founder-name {
        font-size: clamp(1.5rem, 4vw, 1.7rem);
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.95rem;
    }
    
    .detail-list li {
        font-size: 0.95rem;
        padding-left: 20px;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .hero {
        min-height: 80vh;
    }
    
    .logo-text {
        top: 20px;
    }
    
    .logo-main {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        letter-spacing: 1.5px;
    }
    
    .logo-tagline {
        font-size: clamp(0.5rem, 2vw, 0.7rem);
        margin-top: 6px;
        letter-spacing: 2px;
    }
    
    .tagline-container {
        bottom: 60px;
    }
    
    .tagline {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .tagline::before,
    .tagline::after {
        width: 60px;
        height: 1.5px;
    }
    
    .contact-btn {
        padding: 12px 28px;
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .about {
        padding: 0 12px 80px;
    }
    
    .about-edge {
        height: 70px;
    }
    
    .about-header {
        margin-bottom: 35px;
    }
    
    .about-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        letter-spacing: 0.3px;
    }
    
    .about-subtitle {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-top: 10px;
        line-height: 1.6;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 30px auto 14px;
    }
    
    .stat {
        padding: 12px 14px;
    }
    
    .stat-value {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: 3px;
    }
    
    .about-snapshot {
        margin-top: 35px;
    }
    
    .about-intro {
        margin-bottom: 20px;
    }
    
    .about-story {
        margin-bottom: 25px;
    }
    
    .about-story p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }
    
    .benefit-card {
        padding: 16px;
        border-radius: 14px;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
        font-size: 1.1rem;
    }
    
    .benefit-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .workflow {
        padding: 25px 0;
        margin-top: 25px;
    }
    
    .workflow-track {
        left: 10px;
        right: 10px;
        top: 30px;
        height: 2px;
    }
    
    .workflow-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .workflow-item {
        padding: 14px 8px;
        border-radius: 14px;
    }
    
    .wf-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .wf-label {
        font-size: 0.85rem;
    }
    
    .workflow-step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .about-cta {
        margin-top: 25px;
    }
    
    .about-cta .contact-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
    
    .founders {
        padding: 80px 12px 90px;
    }
    
    .founder-card {
        padding: 30px 20px;
        gap: 30px;
        border-radius: 20px;
        margin-top: 35px;
    }
    
    .founder-image-wrapper {
        height: 300px;
        padding: 15px;
    }
    
    .founder-details {
        gap: 20px;
    }
    
    .founder-detail-row {
        padding-bottom: 16px;
        gap: 8px;
    }
    
    .founder-name {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
    }
    
    .detail-label {
        font-size: 0.85rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .detail-list {
        gap: 10px;
    }
    
    .detail-list li {
        font-size: 0.9rem;
        padding-left: 20px;
        line-height: 1.6;
    }
    
    .footer {
        padding: 50px 16px 25px;
    }
    
    .footer-content {
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
    }
    
    .footer-category-list {
        gap: 10px;
    }
    
    .footer-category-link {
        font-size: 0.95rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .categories {
        padding: 80px 16px 100px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
        margin-bottom: 40px;
        letter-spacing: 1px;
    }
    
    .section-title::before {
        width: 50px;
        height: 3px;
        top: -25px;
    }
    
    .section-title::after {
        width: 100px;
        height: 3px;
        bottom: -20px;
    }
    
    .category-grid {
        gap: 24px;
        margin-top: 30px;
    }
    
    .category-image-wrapper {
        height: 220px;
    }
    
    .category-content {
        padding: 24px 20px 28px;
    }
    
    .category-name {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .category-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
        min-height: 44px;
        line-height: 1.6;
    }
    
    .category-link {
        font-size: 0.95rem;
        gap: 8px;
        padding: 10px 20px 10px 0;
    }
    
    .category-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero {
        min-height: 75vh;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.45rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .contact-btn {
        padding: 10px 24px;
        font-size: 0.7rem;
    }
    
    .about {
        padding: 0 10px 70px;
    }
    
    .stat {
        padding: 10px 12px;
    }
    
    .benefit-card {
        padding: 14px;
    }
    
    .workflow-item {
        padding: 12px 6px;
    }
    
    .wf-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .founders {
        padding: 70px 10px 80px;
    }
    
    .founder-card {
        padding: 28px 18px;
        gap: 28px;
        margin-top: 30px;
    }
    
    .founder-image-wrapper {
        height: 280px;
        padding: 12px;
    }
    
    .founder-details {
        gap: 18px;
    }
    
    .founder-detail-row {
        padding-bottom: 14px;
        gap: 6px;
    }
    
    .founder-name {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .detail-list {
        gap: 8px;
    }
    
    .detail-list li {
        font-size: 0.85rem;
        padding-left: 18px;
        line-height: 1.6;
    }
    
    .footer {
        padding: 45px 12px 20px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .footer-category-list {
        gap: 8px;
    }
    
    .footer-category-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .categories {
        padding: 70px 12px 90px;
    }
    
    .category-content {
        padding: 20px 16px 24px;
    }
    
    .category-name {
        font-size: 1.2rem;
    }
    
    .category-desc {
        font-size: 0.85rem;
    }
}

