/* Section-specific styles from original design */

/* Hero Section Enhancements */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

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

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

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.secondary-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 2px var(--primary);
}

/* Features Section */
.features {
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.05));
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-2xl), 0 0 0 2px var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.service-timeline,
.service-rate {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.service-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.feature-card.featured {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(20, 184, 166, 0.04));
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.02), transparent);
}

.portfolio-showcase {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.showcase-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.showcase-item.highlight {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary);
}

body[data-theme="light"] .showcase-item.highlight {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary);
}

/* SellerLegend Modules Styling */
.sellergend-modules {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modules-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.module-list {
    display: grid;
    gap: 1.2rem;
}

.module-item {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s;
}

.module-item:hover {
    background: rgba(59, 130, 246, 0.08);
    border-left-color: var(--secondary);
    transform: translateX(5px);
}

.module-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.module-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.sellergend-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(20, 184, 166, 0.05));
    border-radius: 15px;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-highlight .stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-highlight .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl), 0 0 0 2px var(--primary);
    border-color: var(--primary);
}

.showcase-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.showcase-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subsection-title {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    text-align: center;
    color: var(--text-primary);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.client-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.client-header h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.project-count {
    padding: 0.2rem 0.6rem;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--secondary);
}

.client-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.project-highlights span {
    color: rgba(59, 130, 246, 0.8);
    font-size: 0.85rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 20px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 2rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Expertise Section */
.expertise {
    padding: 100px 5%;
}

.expertise-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.expertise-category:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
}

.category-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
    font-weight: 600;
}

.expertise-detailed {
    display: grid;
    gap: 0.8rem;
    flex: 1;
}

.expertise-detailed .expertise-item {
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.expertise-item .tech-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

.expertise-item .experience-badge {
    font-size: 0.75rem;
    opacity: 1;
    margin-left: auto;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
}

.expertise-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.expertise-item:hover::after {
    transform: scaleX(1);
}

.expertise-item.premium {
    /* Same background as regular items for consistency */
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.expertise-detailed .expertise-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* Solutions We Build Section */
.solutions-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.02), transparent);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.solution-category:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.solution-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.solution-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
}

.solution-modules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    transition: all 0.3s;
}

.solution-item:hover {
    background: rgba(59, 130, 246, 0.08);
    transform: translateX(8px);
    border-left-width: 5px;
}

.solution-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.solution-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.tech-stack {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.solutions-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.stat-box:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 0 0 2px var(--primary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 0.5rem;
}

.stat-text {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Light mode specific */
body[data-theme="light"] .solution-category {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(59, 130, 246, 0.1);
}

body[data-theme="light"] .solution-category:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

body[data-theme="light"] .solution-item {
    background: rgba(59, 130, 246, 0.03);
}

body[data-theme="light"] .solution-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* CTA Banner Section */
.cta-banner {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(20, 184, 166, 0.02));
}

.cta-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 30px;
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
}

/* Responsive */
@media (max-width: 1600px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 1400px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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

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

    .expertise-category {
        min-height: auto;
    }

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

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

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .solution-category {
        padding: 1.5rem;
    }

    .solution-item {
        padding: 1rem;
    }

    .solutions-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

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

    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .sellergend-modules {
        padding: 1.5rem;
    }

    .module-item {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.5rem;
    }

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

    .hero-description {
        font-size: 0.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Founder Story Section */
.founder-story {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.founder-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.story-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.story-title {
    font-size: var(--font-size-4xl);
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.story-body {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-xl);
}

.story-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    text-align: justify;
}

.story-text:last-of-type {
    margin-bottom: var(--spacing-2xl);
}

.story-text strong {
    color: var(--primary);
    font-weight: 700;
}

.story-cta {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--border-subtle);
}

.story-motto {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-story {
        padding: var(--spacing-3xl) 0;
    }

    .story-title {
        font-size: var(--font-size-3xl);
    }

    .story-body {
        padding: var(--spacing-xl);
    }

    .story-text {
        font-size: var(--font-size-md);
    }

    .story-motto {
        font-size: var(--font-size-xl);
    }
}
