/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #14b8a6;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --off-white: #f8fafc;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    --gap: 24px;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
    transition: all var(--transition);
}
.logo-image {
    height: 130px;
    margin-right: 20px;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    text-decoration: none;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color var(--transition);
}

.logo:hover {
    color: var(--primary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(236, 72, 153, 0.05) 50%, 
        rgba(20, 184, 166, 0.05) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.label-2{
    font-size: 14px;
    color: var(--off-white);
    font-weight: 500;
}


/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-shape {
    position: absolute;
    border-radius: 24px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 0;
    right: 0;
    opacity: 0.15;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    bottom: 50px;
    right: 150px;
    opacity: 0.12;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    top: 100px;
    left: 50px;
    opacity: 0.1;
    animation-delay: 4s;
}

/* Scroll Indicator */
scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    text-decoration: none;
}

.scroll-line {
    width: 2px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollMove 2s ease-in-out infinite;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes scrollMove {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ========================================
   RESPONSIVE - MOBILE HERO
======================================== */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        transform: translateX(-100%);
        transition: transform var(--transition);
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    /* .logo {
        visibility: hidden;
    } */
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* FIXED: Visual first, text second on mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
         visibility: hidden;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-shape-1 {
         visibility: hidden;
        width: 200px;
        height: 200px;
        right: -50px;
    }
    
    .hero-shape-2 {
         visibility: hidden;
        width: 180px;
        height: 180px;
        right: auto;
        left: -30px;
    }
    
    .hero-shape-3 {
        visibility: hidden;
        width: 150px;
        height: 150px;
    }
    .scroll-indicator {
        visibility: hidden;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

/* ========================================
   ABOUT / TRUST SECTION
======================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    transition: transform var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-light);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.badge-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* ========================================
   RESPONSIVE - ABOUT SECTION
======================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-badges {
        gap: 24px;
        padding: 32px 24px;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   SERVICES SECTION - FIXED GAP ISSUE
======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

/* FIXED: Proper grid without 33% empty space */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-flow: dense; /* Helps fill gaps */
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 40px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.Service-context {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    padding: 4px 10px;
    max-width: fit-content;
    border-radius: 20px;
    margin-bottom: 10px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}

.service-card-large .service-title,
.service-card-large .service-description,
.service-card-large .service-features li,
.service-card-large .service-link {
    color: var(--white);
}

.service-card-large .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card-large .service-link {
    background: rgba(255, 255, 255, 0.2);
}

.service-card-large .service-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.service-card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    border: none;
}

.service-card-wide .service-title,
.service-card-wide .service-description,
.service-card-wide .service-features li,
.service-card-wide .service-link {
    color: var(--white);
}

.service-card-wide .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card-wide .service-link {
    background: rgba(255, 255, 255, 0.15);
}

.service-card-wide .service-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--off-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 14px;
    color: var(--gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-card-large .service-features li::before,
.service-card-wide .service-features li::before {
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--off-white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
    margin-top: auto;
    width: fit-content;
}

.service-link:hover {
    background: var(--primary);
    color: var(--white);
    gap: 12px;
}

.service-link svg {
    transition: transform var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

.service-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    z-index: 1;
}

.service-visual-1 {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.service-visual-2 {
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

/* ========================================
   RESPONSIVE - SERVICES SECTION
======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-large {
        grid-column: span 2;
    }
    
    .service-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-large,
    .service-card-wide {
        grid-column: span 1;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
    }
    
    .service-title {
        font-size: 20px;
    }
}

/* ========================================
   PORTFOLIO SHOWCASE SECTION
   Prefix: pf- (portfolio)
======================================== */

/* Section Container */
.pf-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    
}

.pf-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.5) 50%, transparent 100%);
}

/* Header */
.pf-showcase-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.pf-showcase-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.pf-showcase-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #ffffff;
}

.pf-showcase-accent {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pf-showcase-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.pf-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 80px;
    
}

/* Portfolio Cards */
.pf-showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    backdrop-filter: blur(10px);
    min-height: 290px;
}

.pf-showcase-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.7),
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(99, 102, 241, 0.2);
    z-index: 5;
}
.pf-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 600px;
}
/* Card Spans */
.pf-card-span-2col {
    grid-column: span 2;
}

.pf-card-span-2row {
    grid-row: span 2;
}

/* Card Background */
.pf-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.pf-showcase-card:hover .pf-card-bg {
    transform: scale(1.1);
}

/* Card Overlays */
.pf-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.pf-overlay-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.85) 0%, rgba(139, 92, 246, 0.6) 100%);
}
.pf-overlay-dark-blue{
    background: linear-gradient(135deg, rgba(6, 182, 185, 0.9) 0%, rgba(19, 247, 251, 0.7) 100%);
}
.pf-overlay-blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(59, 130, 246, 0.7) 100%);
}

.pf-overlay-orange {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.9) 0%, rgba(249, 115, 22, 0.7) 100%);
}

.pf-overlay-green {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.9) 0%, rgba(34, 197, 94, 0.7) 100%);
}

.pf-overlay-dark-purple {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.9) 0%, rgba(124, 58, 237, 0.7) 100%);
}

.pf-overlay-red {
    background: linear-gradient(135deg, rgba(190, 18, 60, 0.9) 0%, rgba(225, 29, 72, 0.7) 100%);
}

/* Card Body */
.pf-card-body {
    position: relative;
    z-index: 3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.pf-card-large .pf-card-body {
    padding: 32px;
}

/* Badge */
.pf-card-badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.pf-badge-education {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.pf-badge-business {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pf-badge-healthcare {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pf-badge-fintech {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.pf-badge-crm {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.pf-badge-pos {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Card Title & Client */
.pf-card-heading {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 4px 0 10px;
    transition: all 0.3s ease;
}

.pf-card-large .pf-card-heading {
    font-size: 26px;
}

/* Keep heading white on hover - removed color change */
.pf-showcase-card:hover .pf-card-heading {
    color: white;
}

.pf-card-client {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Metrics */
.pf-card-metrics {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding: 14px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pf-card-large .pf-card-metrics {
    gap: 28px;
}

.pf-metric-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pf-metric-number {
    font-size: 22px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.pf-card-large .pf-metric-number {
    font-size: 26px;
}

.pf-showcase-card:hover .pf-metric-number {
    color: #f59e0b;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.pf-metric-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tags */
.pf-card-tags {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.pf-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.pf-tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* View Project Button */
.pf-view-project-btn {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0);
}

.pf-view-project-btn svg {
    transition: transform 0.3s ease;
}

/* Gradient Shadow Overlay - animates with button */
.pf-showcase-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 75%,
        transparent 100%
    );
    z-index: 4;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.pf-showcase-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.pf-showcase-card:hover .pf-view-project-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.pf-view-project-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
}

.pf-view-project-btn:hover svg {
    transform: translateX(4px);
}

/* CTA Button */
.pf-showcase-cta {
    text-align: center;
}

.pf-btn-primary {
    background-color: #fbbf24;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pf-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
    background-color: #f59e0b;
}

/* ========================================
   PORTFOLIO MODAL
======================================== */

.pf-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pf-modal.active {
    display: flex;
}

.pf-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: pf-fadeIn 0.3s ease;
}

.pf-modal-container {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: pf-slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.pf-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.pf-modal-close svg {
    stroke: white;
}

.pf-modal-content {
    padding: 48px;
}

/* Modal Project Image */
.pf-modal-project-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Header */
.pf-modal-project-header {
    margin-bottom: 32px;
}

.pf-modal-project-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.pf-modal-project-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.pf-modal-project-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pf-modal-project-client {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.pf-modal-project-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Modal Sections */
.pf-modal-section {
    margin-bottom: 32px;
}

.pf-modal-section-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pf-modal-section-title svg {
    width: 24px;
    height: 24px;
    stroke: #6366f1;
}

/* Features List */
.pf-modal-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
}

.pf-modal-features-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.pf-modal-features-list li svg {
    width: 20px;
    height: 20px;
    stroke: #6366f1;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Metrics Grid */
.pf-modal-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pf-modal-metric {
    text-align: center;
    padding: 24px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.pf-modal-metric-value {
    font-size: 32px;
    font-weight: 800;
    color: #818cf8;
    line-height: 1;
    margin-bottom: 8px;
}

.pf-modal-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits List */
.pf-modal-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.pf-modal-benefits-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    border-left: 3px solid #10b981;
}

.pf-modal-benefits-list li svg {
    width: 24px;
    height: 24px;
    stroke: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.pf-modal-benefit-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.pf-modal-benefit-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Tech Tags */
.pf-modal-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pf-tech-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Modal CTA */
.pf-modal-cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pf-modal-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.pf-modal-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.pf-modal-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pf-modal-cta-buttons .btn-primary {
    background: #6366f1;
    color: white;
}

.pf-modal-cta-buttons .btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.pf-modal-cta-buttons .btn-whatsapp {
    background: #25d366;
    color: white;
}

.pf-modal-cta-buttons .btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes pf-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pf-slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .pf-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pf-card-span-2col {
        grid-column: span 2;
    }
    
    .pf-showcase-title {
        font-size: 42px;
    }
    
    .pf-modal-features-list {
        grid-template-columns: 1fr;
    }
    
    .pf-modal-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pf-showcase {
        padding: 80px 0;
    }
    
    .pf-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pf-card-span-2col,
    .pf-card-span-2row {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .pf-showcase-title {
        font-size: 36px;
    }
    
    .pf-showcase-subtitle {
        font-size: 16px;
    }
    
    .pf-card-body,
    .pf-card-large .pf-card-body {
        padding: 24px;
    }
    
    .pf-card-heading,
    .pf-card-large .pf-card-heading {
        font-size: 20px;
    }
    
    .pf-card-metrics {
        gap: 16px;
    }
    
    .pf-metric-number,
    .pf-card-large .pf-metric-number {
        font-size: 20px;
    }
    
    .pf-modal-content {
        padding: 32px 24px;
    }
    
    .pf-modal-project-image {
        height: 250px;
    }
    
    .pf-modal-project-title {
        font-size: 28px;
    }
    
    .pf-modal-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .pf-modal-cta-buttons {
        flex-direction: column;
    }
    
    .pf-modal-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pf-showcase-title {
        font-size: 32px;
    }
    
    .pf-card-metrics {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   PROCESS / PHILOSOPHY SECTION
======================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.philosophy-features{
    list-style:none ; 
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    color: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.process-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
}

.process-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.process-card:hover .process-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.process-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.process-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-steps {
    list-style: none;
}

.process-steps li {
    font-size: 14px;
    color: var(--gray);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.process-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.process-philosophy {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.philosophy-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.philosophy-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

/* ========================================
   RESPONSIVE - PROCESS SECTION
======================================== */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-philosophy {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }
    
    .philosophy-title {
        font-size: 28px;
    }
}

/* ========================================
   TESTIMONIALS & STATS SECTION
======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.testimonial-context {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    padding: 4px 10px;
    max-width: fit-content;
    border-radius: 20px;
    margin-bottom: 10px;
}

.testimonial-context2 {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(214, 213, 241, 0.1);
    padding: 4px 10px;
    max-width: fit-content;
    border-radius: 20px;
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonial-featured .testimonial-text,
.testimonial-featured .author-name,
.testimonial-featured .author-title {
    color: var(--white);
}

.testimonial-featured .author-title {
    opacity: 0.9;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #fbbf24;
}

.testimonial-featured .testimonial-rating {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.testimonial-featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--gray);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px;
    background: var(--off-white);
    border-radius: 24px;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* ========================================
   RESPONSIVE - TESTIMONIALS SECTION
======================================== */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 40px 32px;
    }
    
    .stat-box .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats-strip {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 24px;
    border: 2px solid var(--gray-light);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.pricing-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
    color: var(--white);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-featured .pricing-plan,
.pricing-featured .pricing-description,
.pricing-featured .price-amount,
.pricing-featured .price-period,
.pricing-featured .pricing-features span {
    color: var(--white);
}

.pricing-featured .pricing-features svg {
    color: var(--white);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header-card {
    margin-bottom: 32px;
}

.pricing-plan {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 15px;
    color: var(--gray);
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark);
}

.pricing-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all var(--transition);
}

.pricing-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-featured .pricing-cta {
    background: var(--white);
    color: var(--primary);
}

.pricing-featured .pricing-cta:hover {
    background: var(--off-white);
}

/* ========================================
   RESPONSIVE - PRICING SECTION
======================================== */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
}

/* ========================================
   CONTACT / CONVERSION SECTION
======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-content {
    position: sticky;
    top: 120px;
}

.contact-text {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 48px;
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-input {
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: all var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-full {
    width: 100%;
}

/* ========================================
   RESPONSIVE - CONTACT SECTION
======================================== */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 600;
}

.footer-description {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column{
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 100px;
    margin-left: 200Px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition);
}

.footer-list a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--dark-light);
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray-light);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ========================================
   RESPONSIVE - FOOTER
======================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-column{
    margin-left: none;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-column{
    margin-left: none;
}
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ========================================
   ALERT STYLES (Add this to your CSS)
======================================== */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 15px;
    display: none;
    animation: slideDown 0.3s ease;
}

.alert.show {
    display: block;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CONTACT DETAIL LINKS
======================================== */
.contact-detail {
    text-decoration: none;
    color: var(--dark);
    transition: color var(--transition);
}

.contact-detail:hover {
    color: var(--primary);
}

/* ========================================
   BUTTON ICON STYLE
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ========================================
   SECTION LABEL (if not already in your CSS)
======================================== */
.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--off-white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
/* ========================================
   LEARN & EARN COHORT BANNER
======================================== */
.learn-earn-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.learn-earn-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.learn-earn-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.12) 0%, transparent 50%);
    opacity: 0.6;
}

/* Floating coin animations */
.coin-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    filter: blur(1px);
}

.coin-icon.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 32px;
}

.coin-icon.coin-2 {
    top: 80%;
    right: 15%;
    animation-delay: 2s;
    font-size: 28px;
}

.coin-icon.coin-3 {
    top: 25%;
    left: 75%;
    animation-delay: 4s;
    font-size: 36px;
}

.coin-icon.coin-4 {
    top: 75%;
    left: 65%;
    animation-delay: 1s;
    font-size: 30px;
}

.coin-icon.coin-5 {
    top: 70%;
    left: 20%;
    animation-delay: 3s;
    font-size: 26px;
}

.coin-icon.coin-6 {
    bottom: 15%;
    right: 45%;
    animation-delay: 1.5s;
    font-size: 34px;
}

.coin-icon.coin-7 {
    top: 10%;
    left: 40%;
    animation-delay: 2.5s;
    font-size: 29px;
}

.coin-icon.coin-8 {
    top: 55%;
    right: 25%;
    animation-delay: 3.5s;
    font-size: 31px;
}

.coin-icon.coin-9 {
    bottom: 25%;
    left: 85%;
    animation-delay: 0.5s;
    font-size: 27px;
}

.coin-icon.coin-10 {
    top: 75%;
    left: 5%;
    animation-delay: 4.5s;
    font-size: 33px;
}

.coin-icon.coin-11 {
    top: 75%;
    right: 60%;
    animation-delay: 1.8s;
    font-size: 28px;
}

.coin-icon.coin-12 {
    bottom: 40%;
    left: 30%;
    animation-delay: 3.2s;
    font-size: 35px;
}

.coin-icon.coin-13 {
    top: 15%;
    right: 35%;
    animation-delay: 2.8s;
    font-size: 30px;
}

.coin-icon.coin-14 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4.2s;
    font-size: 26px;
}

.coin-icon.coin-15 {
    top: 25%;
    right: 5%;
    animation-delay: 0.8s;
    font-size: 32px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.learn-earn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-earn-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.learn-earn-text {
    flex: 1;
    max-width: 600px;
}

.learn-earn-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.learn-earn-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.learn-earn-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-light);
    margin: 0;
}

.learn-earn-cta {
    display: flex;
    align-items: center;
}

.btn-learn-earn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}

.btn-learn-earn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-learn-earn svg {
    transition: transform var(--transition);
}

.btn-learn-earn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .learn-earn-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .learn-earn-text {
        max-width: 100%;
    }
    
    .learn-earn-cta {
        justify-content: center;
    }
    
    .learn-earn-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .learn-earn-banner {
        padding: 60px 0;
    }
    
    .learn-earn-title {
        font-size: 28px;
    }
    
    .learn-earn-subtitle {
        font-size: 15px;
    }
    
    .btn-learn-earn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .coin-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .learn-earn-title {
        font-size: 24px;
    }
    
    .btn-learn-earn span {
        font-size: 13px;
    }
    
    .coin-icon.coin-3 {
        display: none;
    }
}
/* ========================================
   ABOUT US PAGE - CUSTOM STYLES
   Add these styles to your styles.css file
======================================== */

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.about-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Different abstract shapes for About page */
.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-shapes 20s ease-in-out infinite;
}

.about-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.about-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation-delay: 5s;
}

.about-shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    top: 40%;
    right: 10%;
    animation-delay: 10s;
}

.about-shape-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 15s;
}

@keyframes float-shapes {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.about-hero-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== OUR STORY SECTION ========== */
.our-story {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-content {
    position: sticky;
    top: 120px;
}

.story-text {
    margin-top: 32px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.story-highlight {
    font-size: 19px;
    font-weight: 600;
    color: var(--dark);
    padding: 20px 0;
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin: 32px 0 !important;
}

.story-closing {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    font-style: italic;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-card {
    padding: 32px;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.5);
    transition: all var(--transition);
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.story-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.story-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    max-width: 400px;
}

.founder-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.founder-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 24px;
    top: 20px;
    left: 20px;
    z-index: -1;
    background: transparent;
}

/* Alternative modern design - gradient border effect */
.founder-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 26px;
    z-index: -2;
    opacity: 0.3;
}

.founder-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.founder-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.founder-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 32px;
}

.founder-quote {
    position: relative;
    padding: 24px 32px;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin-top: 32px;
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: 24px;
    color: var(--primary);
    opacity: 0.3;
}

.founder-quote p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

/* ========== MISSION & VISION SECTION ========== */
.mission-vision {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.mv-card {
    padding: 48px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.vision-card {
    background: var(--off-white);
    border: 2px solid rgba(203, 213, 225, 0.5);
}

.mv-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
}

.mission-card .mv-icon {
    background: rgba(99, 102, 241, 0.3);
    color: var(--primary-light);
}

.vision-card .mv-icon {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.mission-card .mv-title {
    color: white;
}

.vision-card .mv-title {
    color: var(--dark);
}

.mv-description {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-card .mv-description {
    color: var(--gray-light);
}

.vision-card .mv-description {
    color: var(--dark);
}

.mv-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission-card .mv-text {
    color: rgba(203, 213, 225, 0.9);
}

.vision-card .mv-text {
    color: var(--gray);
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.vision-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.vision-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.vision-closing {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(203, 213, 225, 0.3);
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.5);
    transition: all var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 20px;
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* ========== STATS SECTION ========== */
.about-stats {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-box {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
}

.stat-number-large {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.stat-label-large {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    display: block;
}

.stat-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-light);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.about-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.about-cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
}

.about-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-cta-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary);
}

.btn-large:hover {
    background: var(--off-white);
    transform: translateY(-4px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .story-content {
        position: static;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 140px 0 80px;
    }
    
    .about-hero-title {
        font-size: 40px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .founder-name {
        font-size: 32px;
    }
    
    .mv-card {
        padding: 32px;
    }
    
    .mv-title {
        font-size: 26px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-cta-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 32px;
    }
    
    .story-text p {
        font-size: 16px;
    }
    
    .story-card {
        padding: 24px;
    }
    
    .founder-quote {
        padding: 20px;
    }
    
    .mv-card {
        padding: 24px;
    }
    
    .why-card {
        padding: 28px;
    }
    
    .about-cta-title {
        font-size: 28px;
    }
    
    .about-cta-subtitle {
        font-size: 16px;
    }
}
