/* ==========================================
   SK PIZZA - Landing Page Premium
   Paleta: Negro (#000), Blanco (#FFF), Dorado (#F8C400)
   ========================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #121212;
    --color-white: #FFFFFF;
    --color-gold: #F8C400;
    --color-gold-dark: #D4A800;
    --color-gray: #1a1a1a;
    --color-gray-light: #2a2a2a;
    --shadow-gold: 0 0 40px rgba(248, 196, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --border-radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* === MOSAICO DE PIZZAS DE FONDO === */
.pizza-mosaic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.pizza-tile {
    position: absolute;
    display: block;
    object-fit: cover;
    animation: floatPizza 20s ease-in-out infinite;
    filter: brightness(3.5) contrast(2) saturate(1.8) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    opacity: 1;
}

/* Tamaños de pizzas */
.pizza-xxl {
    width: 560px;
    height: 560px;
}

.pizza-xl {
    width: 280px;
    height: 280px;
}

.pizza-lg {
    width: 200px;
    height: 200px;
}

.pizza-md {
    width: 140px;
    height: 140px;
}

.pizza-sm {
    width: 90px;
    height: 90px;
}

.pizza-mini {
    width: 50px;
    height: 50px;
}

/* Posiciones artísticas del mosaico */
/* Pizzas Gigantes - Movimiento MUY lento */
.pizza-giant-1 { top: 20%; left: -10%; animation-delay: 0s; animation-duration: 60s; }
.pizza-giant-2 { top: 50%; right: -15%; animation-delay: 5s; animation-duration: 65s; }
.pizza-giant-3 { top: 70%; left: 50%; animation-delay: 10s; animation-duration: 70s; }

/* Pizzas Normales */
.pizza-1 { top: 5%; left: 8%; animation-delay: 0s; animation-duration: 28s; }
.pizza-2 { top: 15%; right: 12%; animation-delay: 2s; animation-duration: 32s; }
.pizza-3 { top: 25%; left: 25%; animation-delay: 1s; animation-duration: 30s; }
.pizza-5 { top: 35%; right: 5%; animation-delay: 1.5s; animation-duration: 29s; }
.pizza-7 { top: 50%; right: 25%; animation-delay: 0.5s; animation-duration: 33s; }
.pizza-9 { top: 65%; right: 45%; animation-delay: 1.2s; animation-duration: 29s; }
.pizza-10 { top: 70%; left: 5%; animation-delay: 2.8s; animation-duration: 30s; }
.pizza-13 { top: 85%; right: 35%; animation-delay: 1.8s; animation-duration: 31s; }
.pizza-14 { top: 20%; left: 65%; animation-delay: 2.2s; animation-duration: 29s; }
.pizza-16 { top: 55%; left: 70%; animation-delay: 2.7s; animation-duration: 30s; }

/* Mini Pizzitas - Movimiento rápido */
.pizza-mini-1 { top: 8%; left: 40%; animation-delay: 0s; animation-duration: 18s; }
.pizza-mini-2 { top: 35%; left: 55%; animation-delay: 1.5s; animation-duration: 16s; }
.pizza-mini-3 { top: 78%; right: 20%; animation-delay: 0.8s; animation-duration: 17s; }
.pizza-mini-4 { top: 42%; right: 10%; animation-delay: 2.2s; animation-duration: 19s; }

@keyframes floatPizza {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) translateX(20px) rotate(90deg) scale(1.05);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120px) translateX(-20px) rotate(180deg) scale(0.95);
        opacity: 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img:not(.pizza-tile) {
    max-width: 100%;
    height: auto;
    display: block;
}

.pizza-tile {
    max-width: none;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === UTILIDADES === */
.text-gold {
    color: var(--color-gold);
}

.text-left {
    text-align: left;
}

/* === ANIMACIONES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(248, 196, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(248, 196, 0, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HEADER / NAVEGACIÓN === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 40px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-crown {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(248, 196, 0, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.btn-nav {
    background-color: var(--color-gold);
    color: var(--color-black) !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(248, 196, 0, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 5;
    pointer-events: none;
}

/* === ORBES DORADOS === */
.orbs-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 196, 0, 0.8) 0%, rgba(248, 196, 0, 0.4) 40%, transparent 70%);
    filter: blur(2px);
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 5%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 3%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.orb-4 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 4%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.orb-5 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 8%;
    animation-delay: 1.5s;
    animation-duration: 17s;
}

.orb-6 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 7%;
    animation-delay: 2.5s;
    animation-duration: 21s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(25px, -20px) scale(1.05);
        opacity: 0.7;
    }
}

/* Pizzas flotantes en el fondo */
.pizza-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-pizza {
    position: absolute;
    font-size: 4rem;
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(248, 196, 0, 0.4));
    animation: floatAndFade 12s ease-in-out infinite;
}

/* Posiciones y retrasos únicos para cada pizza */
.pizza-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.pizza-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.pizza-3 {
    top: 60%;
    left: 8%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.pizza-4 {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.pizza-5 {
    top: 35%;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 12s;
}

.pizza-6 {
    top: 45%;
    right: 5%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.pizza-7 {
    top: 80%;
    left: 25%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.pizza-8 {
    top: 15%;
    left: 50%;
    animation-delay: 7s;
    animation-duration: 13s;
}

/* Animación de flotación y fade */
@keyframes floatAndFade {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg) scale(0.8);
    }
    15% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.25;
        transform: translateY(-30px) rotate(180deg) scale(1);
    }
    85% {
        opacity: 0.15;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) rotate(360deg) scale(0.8);
    }
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 100;
    text-align: center;
}

/* === LOGO EN HERO === */
.hero-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo-image {
    width: 200px;
    height: 200px;
    max-width: 200px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(248, 196, 0, 0.6)) brightness(1.5);
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 150;
}

/* === EFECTO NEÓN === */
.hero-title-neon {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-align: center;
}

.neon-text {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 3px var(--color-gold);
    text-shadow: 
        0 0 10px var(--color-gold),
        0 0 20px var(--color-gold),
        0 0 40px var(--color-gold),
        0 0 80px var(--color-gold),
        0 0 120px rgba(248, 196, 0, 0.8),
        0 0 160px rgba(248, 196, 0, 0.6),
        0 0 200px rgba(248, 196, 0, 0.4);
    animation: neonFlicker 3s infinite alternate;
}

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        -webkit-text-stroke: 3px var(--color-gold);
        text-shadow: 
            0 0 10px var(--color-gold),
            0 0 20px var(--color-gold),
            0 0 40px var(--color-gold),
            0 0 80px var(--color-gold),
            0 0 120px rgba(248, 196, 0, 0.8),
            0 0 160px rgba(248, 196, 0, 0.6),
            0 0 200px rgba(248, 196, 0, 0.4);
    }
    20%, 24%, 55% {
        -webkit-text-stroke: 2px var(--color-gold);
        text-shadow: 
            0 0 5px var(--color-gold),
            0 0 10px var(--color-gold),
            0 0 20px var(--color-gold);
    }
}

.hero-subtitle-main {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(248, 196, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(248, 196, 0, 0.5);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-glow-circle {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-glow-circle .image-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 196, 0, 0.5) 0%, rgba(248, 196, 0, 0.25) 35%, transparent 65%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 196, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

.pizza-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
    animation: float 4s ease-in-out infinite;
}

/* === SECCIÓN TÍTULOS === */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* === SECCIÓN POR QUÉ ELEGIRNOS === */
.why-us-section {
    padding: 150px 0 100px 0;
    background: linear-gradient(135deg, #B8860B 0%, #D4A800 50%, #F8C400 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-150px);
}

.kebab-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

.why-us-content {
    color: var(--color-black);
}

.why-us-badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.15);
    color: var(--color-black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.why-us-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
}

.why-us-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.15);
    line-height: 1;
    min-width: 80px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}

.btn-why-us {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.btn-why-us:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* === MENÚ SECTION === */
.menu-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-gray) 100%);
    position: relative;
    z-index: 10;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.03;
    z-index: 0;
}

.menu-section > .container {
    position: relative;
    z-index: 1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: var(--color-gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(248, 196, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: rgba(248, 196, 0, 0.5);
    box-shadow: 0 20px 50px rgba(248, 196, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-price {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* === PROMOCIONES SECTION === */
.promos-section {
    padding: 100px 0;
    background-color: var(--color-black);
    position: relative;
    z-index: 10;
}

.promos-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.promo-banner {
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-gray) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(248, 196, 0, 0.2);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-gold);
}

.promo-banner:hover {
    border-color: rgba(248, 196, 0, 0.5);
    box-shadow: 0 10px 40px rgba(248, 196, 0, 0.1);
    transform: translateX(5px);
}

.promo-content {
    flex: 1;
}

.promo-badge {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.promo-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-gold);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid var(--color-gold);
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.promo-icon {
    font-size: 4rem;
    opacity: 0.8;
    margin-left: 40px;
}

/* === SOBRE NOSOTROS === */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-gray) 0%, var(--color-black) 100%);
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.about-image-glow {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 196, 0, 0.2) 0%, transparent 50%);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 30px;
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--color-gold);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-gray-light);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(248, 196, 0, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* === TESTIMONIOS === */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 50%, var(--color-black) 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 196, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-badge {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(248, 196, 0, 0.3);
    border: 1px solid rgba(248, 196, 0, 0.5);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 100px;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonials-track .testimonial-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(248, 196, 0, 0.85) 0%, rgba(212, 168, 0, 0.85) 100%);
    border: 1px solid rgba(248, 196, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(248, 196, 0, 0.15),
                0 2px 6px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(248, 196, 0, 1) 0%, rgba(212, 168, 0, 1) 100%);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 16px rgba(248, 196, 0, 0.25),
                0 3px 8px rgba(0, 0, 0, 0.4);
    border-color: rgba(248, 196, 0, 0.5);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-black);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(248, 196, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(248, 196, 0, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--color-gold);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(248, 196, 0, 0.5);
}

.testimonial-card.premium {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.95) 0%, rgba(25, 25, 25, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(248, 196, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(248, 196, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.testimonial-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 196, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card.premium:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 196, 0, 0.4);
    box-shadow: 0 15px 40px rgba(248, 196, 0, 0.2),
                0 0 0 1px rgba(248, 196, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card.premium:hover::before {
    opacity: 1;
}

.testimonial-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(248, 196, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar-wrapper {
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-white);
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid rgba(248, 196, 0, 0.3);
    z-index: 1;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

.testimonial-info {
    flex: 1;
}

.name-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.testimonial-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.verified-badge {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars .star {
    font-size: 1rem;
    color: rgba(248, 196, 0, 0.3);
    transition: color 0.3s ease;
}

.testimonial-stars .star.filled {
    color: var(--color-gold);
    filter: drop-shadow(0 0 4px rgba(248, 196, 0, 0.5));
}

.testimonial-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    color: rgba(248, 196, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Stats Section */
.testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(248, 196, 0, 0.1) 0%, rgba(212, 168, 0, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(248, 196, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonials-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 196, 0, 0.3) 50%, transparent 100%);
}

/* === WHATSAPP FLOTANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6),
                0 3px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                    0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6),
                    0 2px 12px rgba(0, 0, 0, 0.4);
    }
}

/* === UBICACIÓN === */
.location-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-gray) 50%, var(--color-black) 100%);
    position: relative;
    z-index: 10;
    text-align: center;
}

.location-section .section-badge {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(248, 196, 0, 0.3);
    border: 1px solid rgba(248, 196, 0, 0.5);
}

.location-section .section-title,
.location-section .section-subtitle {
    text-align: center;
}

.location-section .section-title {
    margin-bottom: 10px;
}

.location-section .section-subtitle {
    margin-bottom: 50px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(248, 196, 0, 0.2);
    margin-bottom: 50px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(248, 196, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(248, 196, 0, 0.4);
    box-shadow: 0 10px 30px rgba(248, 196, 0, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* === CTA SECTION === */
.cta-section {
    padding: 120px 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 10;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 196, 0, 0.15) 0%, transparent 60%);
    z-index: 0;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Contenedor de botones CTA */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    animation: pulse 2s ease-in-out infinite;
}

.btn-cta:hover {
    background-color: var(--color-white);
    transform: scale(1.05);
}

/* Botón Glovo con color naranja */
.btn-glovo {
    background: linear-gradient(135deg, #FFC244 0%, #FF9500 100%);
    box-shadow: 0 10px 30px rgba(255, 194, 68, 0.3);
    animation: none;
}

.btn-glovo:hover {
    background: linear-gradient(135deg, #FFD166 0%, #FFa722 100%);
    box-shadow: 0 15px 40px rgba(255, 194, 68, 0.5);
}

.btn-icon {
    font-size: 1.4rem;
}

.cta-info {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* === FOOTER === */
.footer {
    background-color: var(--color-gray);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(248, 196, 0, 0.1);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact p,
.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        position: relative;
        padding-bottom: 100px;
    }

    .why-us-image {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(0);
        margin-top: 30px;
    }

    .why-us-content {
        order: 1;
    }

    .features-list {
        margin-bottom: 30px;
    }

    .btn-why-us {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        padding: 20px 50px;
        white-space: nowrap;
        display: inline-block;
    }

    .btn-why-us:hover {
        transform: translateX(-50%) translateY(0);
        background-color: var(--color-white);
        color: var(--color-black);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .kebab-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .why-us-badge {
        display: inline-block;
    }

    .features-list {
        align-items: center;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }

    .image-glow {
        width: 300px;
        height: 300px;
    }

    .pizza-img {
        max-width: 350px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .testimonials-carousel {
        padding: 30px 70px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(248, 196, 0, 0.3) 50%, transparent 100%);
    }

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

@media (max-width: 768px) {
    /* Reducir tamaño y cantidad de pizzas flotantes en mobile */
    .pizza-xxl {
        width: 280px;
        height: 280px;
    }

    .pizza-xl {
        width: 160px;
        height: 160px;
    }

    .pizza-lg {
        width: 120px;
        height: 120px;
    }

    .pizza-md {
        width: 80px;
        height: 80px;
    }

    .pizza-mini {
        width: 35px;
        height: 35px;
    }

    /* Ocultar algunas pizzas para reducir ruido visual en mobile */
    .pizza-giant-3,
    .pizza-2,
    .pizza-5,
    .pizza-9,
    .pizza-13,
    .pizza-14,
    .pizza-mini-2,
    .pizza-mini-4 {
        display: none;
    }

    /* LOGO RESPONSIVE - Mejorar visibilidad en mobile */
    .hero-logo {
        margin-bottom: 25px;
    }

    .logo-image {
        width: 150px;
        height: 150px;
        max-width: 150px;
        filter: drop-shadow(0 0 30px rgba(248, 196, 0, 0.9)) 
                brightness(1.5) 
                contrast(1.4);
    }

    /* TEXTO NEÓN SK PIZZA - Mejorar visibilidad en mobile */
    .hero-title-neon {
        font-size: clamp(2.8rem, 10vw, 4rem);
        letter-spacing: 4px;
    }

    .neon-text {
        color: var(--color-gold) !important;
        -webkit-text-stroke: 0px transparent !important;
        text-shadow: 
            0 0 10px rgba(248, 196, 0, 0.8),
            0 0 20px rgba(248, 196, 0, 0.6),
            0 0 30px rgba(248, 196, 0, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
        font-weight: 900;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-gray);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        margin-left: auto;
        margin-right: 20px;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .promo-banner::before {
        width: 100%;
        height: 4px;
        left: 0;
        bottom: auto;
    }

    .promo-icon {
        margin-left: 0;
        margin-top: 20px;
    }

    .testimonials-carousel {
        padding: 25px 55px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    /* Reducir aún más las pizzas en pantallas muy pequeñas */
    .pizza-xxl {
        width: 220px;
        height: 220px;
    }

    .pizza-xl {
        width: 130px;
        height: 130px;
    }

    .pizza-lg {
        width: 90px;
        height: 90px;
    }

    .pizza-md {
        width: 60px;
        height: 60px;
    }

    .pizza-mini {
        width: 30px;
        height: 30px;
    }

    /* Ocultar más pizzas en móviles pequeños */
    .pizza-3,
    .pizza-16,
    .pizza-mini-3 {
        display: none;
    }

    /* LOGO RESPONSIVE - Optimizar para móviles pequeños */
    .hero-logo {
        margin-bottom: 20px;
    }

    .logo-image {
        width: 130px;
        height: 130px;
        max-width: 130px;
        filter: drop-shadow(0 0 35px rgba(248, 196, 0, 1)) 
                brightness(1.6) 
                contrast(1.5);
    }

    /* TEXTO NEÓN SK PIZZA - Optimizar para móviles pequeños */
    .hero-title-neon {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .neon-text {
        color: var(--color-gold) !important;
        -webkit-text-stroke: 0px transparent !important;
        text-shadow: 
            0 0 15px rgba(248, 196, 0, 0.9),
            0 0 25px rgba(248, 196, 0, 0.6),
            0 0 35px rgba(248, 196, 0, 0.4),
            2px 2px 6px rgba(0, 0, 0, 0.9);
        font-weight: 900;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 36px;
        font-size: 1rem;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        justify-content: center;
    }

    .testimonials-carousel {
        padding: 20px 45px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-card.premium {
        padding: 30px 25px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonials-stats {
        padding: 30px 20px;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }

    .stat-description {
        font-size: 0.85rem;
    }
}
