/* ==================== DONWEB BRAND COLORS ==================== */
:root {
    /* Colores Principales DonWeb */
    --primary-orange: #FF6600;
    --dark-gray: #333333;
    --white: #FFFFFF;

    /* Paleta Secundaria (Azules) */
    --blue-light: #DEEFFF;
    --blue-sky: #5EAAFF;
    --blue-vibrant: #0B77F4;
    --gray-blue: #3A3F4E;
    --gray-dark: #242731;
    --bg-light: #EFF7FF;

    /* Colores de UI */
    --dark-bg: #0a0e14;
    --dark-surface: #12161c;
    --dark-card: #1a1f28;
    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --success-green: #10b981;

    /* Texto */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;

    /* Gradientes */
    --gradient-orange: linear-gradient(135deg, #FF6600, #ff8533);
    --gradient-blue: linear-gradient(135deg, #0B77F4, #5EAAFF);
    --gradient-purple: linear-gradient(135deg, #7c3aed, #a855f7);

    /* Tipografías oficiales DonWeb */
    --font-heading: 'Roboto Condensed', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Efectos */
    --glow-orange: 0 0 60px rgba(255, 102, 0, 0.4);
    --glow-blue: 0 0 60px rgba(11, 119, 244, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== PARTICLES ==================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    background:
        radial-gradient(ellipse at center top, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at center bottom, rgba(11, 119, 244, 0.1) 0%, transparent 50%),
        var(--dark-bg);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
}

.year-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.year-text {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.wrapped-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    color: var(--text-secondary);
    margin-top: -0.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    opacity: 0;
    animation: slideUp 0.8s forwards;
}

.hero-title .line1 {
    animation-delay: 0.2s;
    color: var(--primary-orange);
}

.hero-title .line2 {
    animation-delay: 0.4s;
    color: var(--blue-vibrant);
}

.hero-title .line3 {
    animation-delay: 0.6s;
    color: var(--accent-cyan);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 1rem;
    opacity: 0;
    animation: fadeIn 1s forwards 0.8s;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 180px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-orange);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ==================== WRAPPED STATS SHOWCASE ==================== */
.wrapped-stats-container {
    width: 100%;
    max-width: 1100px;
    margin-top: 4rem;
    z-index: 2;
    padding: 0 1rem;
}

.wrapped-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.wrapped-stat-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
    animation-delay: var(--delay);
    transition: all 0.3s ease;
}

.wrapped-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.stat-glow {
    display: none;
}

.stat-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--delay) + 0.3s);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.wrapped-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
}

.wrapped-number::before {
    content: '+';
    font-size: 1.25rem;
    margin-right: 2px;
    color: var(--primary-orange);
}

.wrapped-label {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.3;
    margin-top: 0.25rem;
}

/* Alternate card colors for visual variety */
.wrapped-stat-card:nth-child(2) .wrapped-number,
.wrapped-stat-card:nth-child(2) .wrapped-number::before {
    color: var(--blue-vibrant);
}

.wrapped-stat-card:nth-child(3) .wrapped-number,
.wrapped-stat-card:nth-child(3) .wrapped-number::before {
    color: var(--accent-cyan);
}

.wrapped-stat-card:nth-child(4) .wrapped-number,
.wrapped-stat-card:nth-child(4) .wrapped-number::before {
    color: var(--accent-purple);
}

.wrapped-stat-card:nth-child(5) .wrapped-number,
.wrapped-stat-card:nth-child(5) .wrapped-number::before {
    color: var(--success-green);
}

.wrapped-stat-card:nth-child(6) .wrapped-number,
.wrapped-stat-card:nth-child(6) .wrapped-number::before {
    color: var(--blue-sky);
}

/* Subtle floating animation on numbers after load */
.wrapped-stat-card.animated .wrapped-number {
    animation: subtleFloat 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .wrapped-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wrapped-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wrapped-stat-card {
        padding: 1.25rem;
    }

    .wrapped-number {
        font-size: 1.75rem;
    }

    .stat-icon {
        font-size: 1.75rem;
    }
}

/* ==================== SECTIONS BASE ==================== */
.section {
    min-height: 100vh;
    padding: 6rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BENTO GRID ==================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bento-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
}

.bento-large {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-weight: 300;
}

.gradient-orange {
    border-color: rgba(255, 102, 0, 0.3);
}

.gradient-orange:hover {
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.2);
}

.gradient-blue {
    border-color: rgba(11, 119, 244, 0.3);
}

.gradient-blue:hover {
    box-shadow: 0 0 40px rgba(11, 119, 244, 0.2);
}

.gradient-purple {
    border-color: rgba(124, 58, 237, 0.3);
}

.gradient-purple:hover {
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
}

/* ==================== FEATURES SHOWCASE ==================== */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(11, 119, 244, 0.2));
    border-color: rgba(124, 58, 237, 0.4);
    position: relative;
}

.ai-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

.integration-logos {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.logo-badge {
    background: var(--dark-surface);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-vibrant);
}

.result-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.1), transparent);
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    border-radius: 0 16px 16px 0;
    margin-top: 2rem;
}

.result-icon {
    font-size: 2rem;
}

.result-text {
    font-weight: 300;
}

.result-text strong {
    font-weight: 600;
    color: var(--primary-orange);
}

/* ==================== AI WIZARD ==================== */
.ai-wizard-showcase {
    margin-bottom: 3rem;
}

.wizard-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.wizard-input,
.wizard-output {
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 280px;
}

.wizard-input {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.typed-text {
    font-family: monospace;
    color: var(--accent-cyan);
}

.wizard-arrow {
    font-size: 2.5rem;
    color: var(--primary-orange);
    animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

.wizard-output {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--success-green);
    font-weight: 600;
    font-size: 1.25rem;
}

.sitio-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ==================== SPLIT SHOWCASE ==================== */
.split-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.showcase-column {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-column h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.ferozo-col h3 {
    color: var(--blue-vibrant);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-weight: 300;
}

.feature-list li:last-child {
    border: none;
}

.feature-list li a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s;
}

.feature-list li a:hover {
    color: var(--primary-orange);
}

/* ==================== CLOUD SECTION ==================== */
.cloud-section {
    background: radial-gradient(ellipse at center, rgba(11, 119, 244, 0.1) 0%, transparent 60%), var(--dark-bg);
}

.cloud-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.comparison-card {
    background: var(--dark-card);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.featured {
    border-color: var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.comparison-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.comparison-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.comparison-value.highlight {
    color: var(--primary-orange);
}

.comparison-unit {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.comparison-arrow {
    font-size: 2rem;
    color: var(--primary-orange);
}

.cloud-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cloud-feature {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(11, 119, 244, 0.2);
    transition: all 0.3s;
}

.cloud-feature:hover {
    border-color: var(--blue-vibrant);
    box-shadow: var(--glow-blue);
}

.cloud-feature span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.cloud-feature h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cloud-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

.community-stats {
    background: linear-gradient(90deg, rgba(11, 119, 244, 0.1), transparent);
    border-left: 4px solid var(--blue-vibrant);
    padding: 2rem;
    border-radius: 0 20px 20px 0;
}

.community-stats h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--blue-vibrant);
}

.community-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.community-stat {
    text-align: center;
}

.community-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-sky);
    display: block;
}

.community-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================== WEBSITE SECTION ==================== */
.website-section {
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.08) 0%, transparent 60%), var(--dark-bg);
}

.conversion-showcase {
    margin-bottom: 3rem;
}

.conversion-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.conversion-before,
.conversion-after {
    background: var(--dark-card);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
}

.conversion-after {
    border: 2px solid var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.conv-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.conv-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
}

.conv-value.highlight {
    color: var(--primary-orange);
}

.conversion-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--success-green);
}

.conversion-arrow span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.arrow-line {
    width: 60px;
    height: 3px;
    background: var(--success-green);
    margin-bottom: 0.5rem;
}

.conversion-note {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 300;
}

.website-changes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.change-item {
    background: var(--dark-card);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== MI CUENTA ==================== */
.micuenta-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ==================== SECURITY ==================== */
.security-section {
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, transparent 60%), var(--dark-bg);
}

.security-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.security-stat {
    text-align: center;
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.security-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--success-green);
    display: block;
}

.security-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 150px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.security-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
}

.security-card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.security-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 300;
}

/* ==================== TECH SECTION ==================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.tech-card.featured {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), transparent);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 300;
}

/* ==================== INNOVATION ==================== */
.innovation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.innovation-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.innovation-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.innovation-card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.innovation-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.innovation-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 300;
}

/* ==================== MARKETING ==================== */
.marketing-section {
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.1) 0%, transparent 60%), var(--dark-bg);
}

.growth-banner {
    text-align: center;
    background: var(--gradient-orange);
    padding: 2rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.growth-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.growth-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    display: block;
}

.growth-detail {
    font-size: 1rem;
    opacity: 0.8;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card.featured {
    border-color: var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.social-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.social-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-growth {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--success-green);
    display: block;
}

.social-followers {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
}

.impact-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-vibrant);
    display: block;
}

.impact-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.events-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.event-card {
    background: var(--dark-card);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card.main-event {
    border-color: var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.event-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.event-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-stat {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
}

.event-detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================== DATA CENTER ==================== */
.datacenter-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0a1a 100%);
    position: relative;
    overflow: hidden;
}

.reveal-overlay {
    position: absolute;
    inset: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.8s, visibility 0.8s;
}

.reveal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.reveal-content {
    text-align: center;
}

.reveal-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    animation: wiggle 1s infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.reveal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reveal-hint {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.reveal-btn {
    background: var(--gradient-orange);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.reveal-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-orange);
}

.datacenter-content {
    text-align: center;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.datacenter-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.datacenter-title .highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.datacenter-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.datacenter-visual {
    margin: 3rem auto;
    max-width: 400px;
}

.building {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.building-label {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--blue-vibrant);
    margin-bottom: 0.5rem;
}

.floor,
.basement {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
}

.floor {
    background: linear-gradient(90deg, rgba(11, 119, 244, 0.3), rgba(94, 170, 255, 0.3));
    border: 1px solid rgba(11, 119, 244, 0.4);
}

.floor:hover {
    background: linear-gradient(90deg, rgba(11, 119, 244, 0.5), rgba(94, 170, 255, 0.5));
    transform: scaleX(1.05);
}

.basement {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.3), rgba(255, 133, 51, 0.3));
    border: 1px solid rgba(255, 102, 0, 0.4);
}

.basement:hover {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.5), rgba(255, 133, 51, 0.5));
    transform: scaleX(1.05);
}

.datacenter-specs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.spec-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 140px;
    transition: all 0.3s;
}

.spec-card:hover {
    transform: translateY(-5px);
}

.spec-card.featured {
    border-color: var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.spec-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-card);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pin {
    font-size: 1.25rem;
}

/* ==================== CLOSING ==================== */
.closing-section {
    min-height: 60vh;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(255, 102, 0, 0.1) 0%, transparent 50%), var(--dark-bg);
}

.closing-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.closing-title .highlight {
    color: var(--primary-orange);
}

.closing-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.closing-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-primary {
    background: var(--gradient-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-orange);
}

.cta-secondary {
    color: var(--text-secondary);
    padding: 1rem 2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-secondary:hover {
    color: var(--text-primary);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-img {
    height: 40px;
    margin-bottom: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-year {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .bento-large {
        grid-column: span 1;
    }

    .split-showcase {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .social-stats {
        flex-direction: column;
        align-items: center;
    }

    .datacenter-specs {
        flex-direction: column;
        align-items: center;
    }

    .security-stats {
        flex-direction: column;
        align-items: center;
    }

    .community-grid {
        flex-direction: column;
        align-items: center;
    }

    .conversion-visual {
        flex-direction: column;
    }

    .cloud-comparison {
        flex-direction: column;
    }
}

/* ==================== PRODUCT IMAGES ==================== */
.product-hero-image {
    text-align: center;
    margin-bottom: 3rem;
}

.section-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.sitiosimple-hero .section-image {
    border: none;
    box-shadow: none;
    /* Removing box-shadow to avoid rectangular shadow on transparent image */
    background: transparent;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    /* Using drop-shadow for better transparent PNG handling */
}

.envialosimple-section .section-image {
    border: none;
    box-shadow: none;
    background: transparent;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* ==================== DATA CENTER IMAGE ==================== */
.building-photo {
    text-align: center;
    margin: 2rem 0;
}

.datacenter-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 24px;
    box-shadow:
        0 0 60px rgba(255, 102, 0, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 102, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.datacenter-image:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 80px rgba(255, 102, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.6);
}

/* ==================== LOGO FOOTER ==================== */
.logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    border-radius: 12px;
}

/* ==================== CTA BUTTONS ==================== */
.cta-hero {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
}

.cta-primary {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ==================== CARD LINKS ==================== */
.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.card-link:hover {
    color: var(--blue-vibrant);
    transform: translateX(5px);
}

/* ==================== EVOLUTION SECTION ==================== */
.evolution-section {
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.08) 0%, transparent 60%), var(--dark-bg);
}

/* ==================== INFRASTRUCTURE SECTION ==================== */
.infrastructure-section {
    background: radial-gradient(ellipse at center, rgba(11, 119, 244, 0.08) 0%, transparent 60%), var(--dark-bg);
}

.infra-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.infra-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(11, 119, 244, 0.2);
    transition: all 0.3s;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-blue);
}

.infra-card.featured {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), transparent);
}

.infra-card.featured:hover {
    box-shadow: var(--glow-orange);
}

.infra-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.infra-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.infra-card p {
    color: var(--text-secondary);
    font-weight: 300;
}

/* ==================== SUPPORT SECTION ==================== */
.support-section {
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, transparent 60%), var(--dark-bg);
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.support-feature {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.support-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
}

.support-feature.central {
    border-color: var(--success-green);
}

.support-feature.central:hover {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.feature-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.support-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.support-feature p {
    color: var(--text-secondary);
    font-weight: 300;
}

/* ==================== QUALITY SECTION ==================== */
.quality-section {
    background: linear-gradient(180deg, var(--dark-bg), rgba(255, 102, 0, 0.05));
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quality-card {
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
}

.quality-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 102, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.3);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quality-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quality-card p {
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.iso-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.iso-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--success-green);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--success-green);
}

.rating-evolution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.rating-item {
    background: var(--dark-surface);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.rating-item.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 102, 0, 0.2));
    border: 2px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.rating-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.rating-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.rating-item.gold .rating-value {
    color: #FFD700;
}

.rating-arrow {
    font-size: 2rem;
    color: var(--success-green);
    animation: arrowPulse 1.5s infinite;
}

.rating-platforms {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.quality-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-footer p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* ==================== RESPONSIVE MOBILE COMPLETE ==================== */
@media (max-width: 768px) {

    /* Quality Section */
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .rating-evolution {
        flex-direction: column;
        gap: 1rem;
    }

    .rating-arrow {
        transform: rotate(90deg);
    }

    .infra-highlights {
        grid-template-columns: 1fr;
    }

    .support-features {
        grid-template-columns: 1fr;
    }

    /* Hero Mobile */
    .hero {
        padding: 1.5rem;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .year-text {
        font-size: 3.5rem;
    }

    .wrapped-text {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .stat-card {
        min-width: 100%;
        padding: 1.25rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Sections Mobile */
    .section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .bento-icon {
        font-size: 2rem;
    }

    .bento-card h3 {
        font-size: 1.25rem;
    }

    /* Feature Cards Mobile */
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    /* Wizard Mobile */
    .wizard-demo {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .wizard-input,
    .wizard-output {
        min-width: 100%;
        padding: 1rem;
    }

    .wizard-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .typed-text {
        font-size: 0.85rem;
    }

    .wizard-output {
        font-size: 1rem;
    }

    /* Split Showcase Mobile */
    .split-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-column {
        padding: 1.5rem;
    }

    .showcase-column h3 {
        font-size: 1.25rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    /* Cloud Features Mobile */
    .cloud-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cloud-feature {
        padding: 1.5rem;
    }

    .cloud-feature span {
        font-size: 2rem;
    }

    /* Community Stats Mobile */
    .community-stats {
        padding: 1.5rem;
    }

    .community-value {
        font-size: 1.75rem;
    }

    /* Result Banner Mobile */
    .result-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .result-icon {
        font-size: 1.5rem;
    }

    .result-text {
        font-size: 0.9rem;
    }

    /* CTAs Mobile - Bigger touch targets */
    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .section-cta {
        margin-top: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Card Links Mobile */
    .card-link {
        display: block;
        padding: 0.5rem 0;
    }

    /* Infra Cards Mobile */
    .infra-card {
        padding: 1.5rem;
    }

    .infra-icon {
        font-size: 2rem;
    }

    .infra-card h4 {
        font-size: 1.1rem;
    }

    /* Support Features Mobile */
    .support-feature {
        padding: 1.5rem;
        padding-top: 2rem;
    }

    .feature-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.75rem;
    }

    /* Quality Section Mobile */
    .quality-card {
        padding: 2rem 1.5rem;
    }

    .quality-icon {
        font-size: 2.5rem;
    }

    .quality-card h3 {
        font-size: 1.5rem;
    }

    .iso-badges {
        gap: 0.5rem;
    }

    .iso-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .rating-item {
        padding: 0.75rem 1.25rem;
    }

    .rating-value {
        font-size: 2rem;
    }

    .quality-footer p {
        font-size: 1.1rem;
    }

    /* Closing Section Mobile */
    .closing-title {
        font-size: 1.75rem;
    }

    .closing-text {
        font-size: 1rem;
    }

    .closing-tagline {
        font-size: 1.1rem;
    }

    .footer-logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-img {
        height: 50px;
    }

    /* Product Images Mobile */
    .section-image {
        max-height: 250px;
        border-radius: 16px;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .year-text {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .bento-card h3 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        min-width: auto;
        flex: 1 1 150px;
    }
}

/* Improve touch targets for accessibility */
@media (pointer: coarse) {

    .cta-primary,
    .cta-secondary,
    .card-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bento-card,
    .feature-card,
    .cloud-feature,
    .infra-card,
    .support-feature,
    .quality-card {
        cursor: pointer;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particles {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .glass-card {
        background: var(--dark-card);
        border: 2px solid var(--text-primary);
    }

    .text-secondary {
        color: var(--text-primary);
    }
}

/* ==================== SITE FOOTER ==================== */
.site-footer {
    background: var(--dark-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-nav {
    width: 100%;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.social-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.social-links li a:hover {
    color: var(--primary-orange);
    background: rgba(255, 102, 0, 0.1);
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links li a {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
}