* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    color: #333;
    text-align: center;
    padding-bottom: 60px; /* Removed side padding */
}

header {
    width: 100%;
    height: 80px; /* Slightly taller for airiness */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 60px;
    /* Subtle entrance for header */
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1a1a1a 0%, #5a2ca0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: lowercase; /* Tech look */
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    max-width: 1000px;
    line-height: 1.1;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #5a2ca0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    /* Premium Motion Effect */
    opacity: 0;
    transform: translateY(100px) skewY(5deg);
    filter: blur(10px);
    animation: creativeReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes creativeReveal {
    0% {
        opacity: 0;
        transform: translateY(100px) skewY(5deg);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) skewY(0);
        filter: blur(0px);
    }
}

.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    overflow: hidden; /* Masking effect */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .hero {
        height: 60vh;
    }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto;
    padding: 0 40px;
}

.feature-frame {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* Hidden initially for animation */
    transform: translateY(50px);
}

.feature-frame.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.frame-icon {
    width: 50px;
    height: 50px;
    background: #f8f8fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #5a2ca0;
}

.frame-icon svg {
    width: 24px;
    height: 24px;
}

.feature-frame h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.feature-frame p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Animation Intensity Variations */
.frame-aggressiveness-1 { transition-duration: 0.6s; }
.frame-aggressiveness-2 { transition-duration: 0.9s; }
.frame-aggressiveness-3 { transition-duration: 1.2s; }

/* Carousel Section */
.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 4rem 0;
    background: #fafafa;
}

.carousel-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 2rem;
    font-weight: 600;
}

.carousel {
    width: 100%;
    display: flex;
}

.carousel-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.carousel-track span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e0e0e0;
    user-select: none;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HubCRM Spotlight */
.hubcrm-spotlight {
    width: 100%;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hubcrm-spotlight.show {
    opacity: 1;
    transform: translateY(0);
}

.hubcrm-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid #e2e8f0;
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hubcrm-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hubcrm-content p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hubcrm-channels {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.channel svg {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.channel span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
}

.hubcrm-link {
    display: inline-block;
    padding: 16px 40px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    text-transform: lowercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.hubcrm-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .hubcrm-content {
        padding: 3rem 1.5rem;
    }
    .hubcrm-content h2 {
        font-size: 1.8rem;
    }
    .hubcrm-channels {
        gap: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

#cta-button {
    background: none;
    border: none;
    font-size: 7rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    text-transform: lowercase;
    cursor: pointer;
    position: relative;
    padding: 20px 40px;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    letter-spacing: -0.07em;
    filter: blur(1px);
    opacity: 0;
    transform: translateY(30px);
}

#cta-button.show {
    opacity: 1;
    transform: translateY(0);
}

#cta-button:hover {
    -webkit-text-stroke: 1px transparent;
    color: #5a2ca0;
    letter-spacing: 0.05em;
    filter: blur(0px);
    transform: scale(1.05) translateY(-5px);
    text-shadow: 0 10px 40px rgba(90, 44, 160, 0.3);
}

@media (max-width: 768px) {
    #cta-button {
        font-size: 3rem;
        letter-spacing: -0.04em;
        -webkit-text-stroke: 1px rgba(90, 44, 160, 0.4);
        filter: none;
    }
    
    #cta-button.show {
        color: #5a2ca0;
        -webkit-text-stroke: 1px transparent;
    }
}

#cta-button::after {
    display: none;
}

/* Redirection Overlay */
#redirection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #5a2ca0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

#redirection-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#redirection-text {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff; /* Brilliant white */
    /* High-end silver/platinum look without risky clip */
    letter-spacing: -0.02em;
}

#redirection-text span {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    animation: wordAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
}

/* Footer Section */
.site-footer {
    width: 100%;
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #5a2ca0;
}

.footer-bottom {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 1rem 1.5rem;
    }
}
