@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

:root {
    --primary: #00ff88;
    --secondary: #0066ff;
    --accent: #ff0066;
    --dark: #0a0a0f;
    --glass: rgba(255, 255, 255, 0.1);
    --glow: 0 0 50px rgba(0, 255, 136, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 102, 0.2) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

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

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent, var(--secondary), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.8)); }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

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

.cta-button:hover::after {
    width: 200px;
    height: 200px;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 255, 136, 0.6),
        0 0 0 2px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.cta-button:active {
    transform: translateY(-5px) scale(1.02);
    transition: all 0.1s ease;
}

.section {
    padding: 100px 0;
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: cardRotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

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

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

.glass-card:hover {
    transform: translateY(-20px) scale(1.01);
    box-shadow: 
        0 40px 100px rgba(0, 255, 136, 0.2),
        0 0 0 1px rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.glass-card > * {
    position: relative;
    z-index: 2;
}

@keyframes cardRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.bot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.bot-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bot-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.bot-info {
    flex: 1;
    min-width: 200px;
}

.bot-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.call-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.call-button::before {
    content: '📞';
    font-size: 14px;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left;
}

.bot-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    transition: all 0.8s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.bot-card:hover::before {
    transform: scaleX(1);
}

.bot-card:hover::after {
    width: 400px;
    height: 400px;
}

.bot-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.2),
        0 0 0 1px rgba(0, 255, 136, 0.1);
}

.bot-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.status::before {
    content: '';
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
}

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

.status:hover::after {
    left: 100%;
}

.status.attivo {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    color: var(--primary);
    border: 2px solid rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.status.attivo::before {
    background: var(--primary);
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--primary);
}

.status.attivo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.status.ban {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.2), rgba(255, 0, 102, 0.1));
    color: var(--accent);
    border: 2px solid rgba(255, 0, 102, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.status.ban::before {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.status.ban:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.5);
}

.status.torna-stasera {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.status.torna-stasera::before {
    background: #ffc107;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #ffc107;
}

.status.torna-stasera:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.status.presto {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
    color: #8a2be2;
    border: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.status.presto::before {
    background: #8a2be2;
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 10px #8a2be2;
}

.status.presto:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: translateY(0) scale(1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    transform: rotate(-45deg) scale(0);
}

.feature-card:hover::before {
    width: 400px;
    height: 400px;
}

.feature-card:hover::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1.5);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 
        0 30px 60px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.warning-box {
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    padding-left: 60px;
}

.warning-box::before {
    content: '!';
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffc107;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

ul, ol {
    margin: 20px 0;
    padding-left: 0;
}

ul li {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

ol li {
    margin-bottom: 15px;
    padding-left: 10px;
    line-height: 1.6;
}

.steps {
    counter-reset: step;
    padding: 20px 0;
}

.steps li {
    counter-increment: step;
    margin-bottom: 30px;
    padding-left: 80px;
    position: relative;
    list-style: none;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.quote {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: bounce 3s infinite, glow 2s ease-in-out infinite alternate;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.link:hover::after {
    width: 100%;
}

.link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-right {
    animation: fadeInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-scale {
    animation: fadeInScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bot-card:nth-child(1) { animation-delay: 0.1s; }
.bot-card:nth-child(2) { animation-delay: 0.2s; }
.bot-card:nth-child(3) { animation-delay: 0.3s; }
.bot-card:nth-child(4) { animation-delay: 0.4s; }
.bot-card:nth-child(5) { animation-delay: 0.5s; }
.bot-card:nth-child(6) { animation-delay: 0.6s; }
.bot-card:nth-child(7) { animation-delay: 0.7s; }
.bot-card:nth-child(8) { animation-delay: 0.8s; }
.bot-card:nth-child(9) { animation-delay: 0.9s; }
.bot-card:nth-child(10) { animation-delay: 1s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .bot-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .glass-card {
        padding: 20px;
        margin: 20px 0;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 10px 5px;
        display: block;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .warning-box {
        padding: 20px;
        padding-left: 50px;
        margin: 20px 0;
    }

    .warning-box::before {
        top: 15px;
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .bot-card {
        padding: 20px 15px;
    }

    .bot-card-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .bot-info {
        text-align: center;
    }

    .bot-actions {
        justify-content: center;
    }

    .call-button {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .bot-number {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .status {
        padding: 8px 14px;
        font-size: 0.8rem;
        border-radius: 25px;
        position: relative;
        z-index: 3;
        justify-self: center;
    }

    .status::before {
        width: 8px;
        height: 8px;
    }

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

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .steps li {
        padding-left: 50px;
        margin-bottom: 25px;
    }

    .steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    ul li {
        padding-left: 20px;
        margin-bottom: 12px;
    }

    ul li::before {
        font-size: 16px;
    }

    .quote {
        padding: 30px 20px;
        font-size: 1.2rem;
        margin: 40px 0;
    }

    .quote::before {
        font-size: 4rem;
        top: -10px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

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

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

    .glass-card {
        padding: 15px;
    }

    .warning-box {
        padding: 15px;
        padding-left: 45px;
    }

    .warning-box::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: 12px;
        left: 12px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .bot-card,
    .feature-card {
        padding: 15px;
    }

    ul li {
        padding-left: 18px;
    }

    ul li::before {
        font-size: 14px;
    }
}