.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 20px 70px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.main-title {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.main-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealWord 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.main-title span.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.5s;
}

.hero-image-container {
    width: 100%;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: revealWord 1s ease forwards 1.8s;
}

.features-section {
    margin-top: 100px;
    width: 100%;
    max-width: 1000px;
}

.features-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    border-radius: var(--radius);
    text-align: right;
    gap: 40px;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item.bg-colored {
    background-color: var(--secondary-color);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}

.marquee-section {
    overflow: hidden;
    padding: 28px 0;
    background: transparent;
    position: relative;
}

.marquee-section--footer {
    padding: 32px 0;
    border-top: 1px solid rgba(79, 41, 240, 0.08);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(79, 41, 240, 0.18);
    letter-spacing: -0.02em;
    padding: 0 10px;
    will-change: transform;
}

.marquee-content--reverse {
    animation-direction: reverse;
    -webkit-text-stroke: 1.5px rgba(160, 51, 255, 0.15);
}

.marquee-content span {
    padding: 0 18px;
}

.marquee-dot {
    opacity: 0.35;
    font-size: 0.6em;
    vertical-align: middle;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.fits-section {
    position: relative;
    height: 320vh;
}

.fits-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.fits-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fits-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.fits-text {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    will-change: transform, opacity;
}

.fits-text.active {
    transform: scale(1);
    opacity: 1;
}

.fits-text.exit {
    transform: scale(1.08);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
}

.pricing-section {
    padding: 0 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-main);
}

.billing-toggle {
    display: inline-flex;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.billing-toggle button {
    padding: 7px 28px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.billing-toggle button.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(29, 14, 79, 0.2);
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-12px);
}

.pricing-card.popular {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    padding: 6px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.65rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.price {
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0 5px;
}

.original-price {
    margin: -18px auto;
    width: fit-content;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 46%;
    left: 2%;
    right: -4%;
    height: 2px;
    background: rgb(188 79 79);
    transform: translateY(-29%) rotate(352deg);
}

.price span {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    font-size: 1.08rem;
    color: var(--text-muted);
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    font-size: 1.35rem;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-card button {
    margin-top: auto;
    width: 100%;
}

.studio-preview-section {
    padding: 100px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.studio-preview-inner {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.studio-preview-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.studio-preview-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(29, 14, 79, 0.14), 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.studio-preview-img-wrap:hover {
    transform: scale(1.015);
}

.studio-preview-img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-section {
    padding: 100px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}



.faq-item:hover {
    box-shadow: 0 8px 30px rgba(79, 41, 240, 0.08);
}

.faq-item summary {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: "+";
    font-size: 1.6rem;
    transition: transform 0.3s;
}

.faq-item[open] summary:after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 30px 25px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.main-footer {
    background: #fdfdfd;
    color: var(--text-main);
    padding: 0;
    position: relative;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 70px 20px 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

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

.footer-col--brand .footer-logo img {
    height: 36px;
    opacity: 0.9;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    margin-bottom: -17px;
    font-size: 30px;
    color: var(--text-main);
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sidebar-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -25px 0 50px rgba(0, 0, 0, 0.18);
    z-index: 1100;
    transition: right 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
}

.mobile-sidebar.open {
    right: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-nav a {
    padding: 18px 25px;
    font-size: 1.18rem;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.sidebar-nav a:hover {
    background: #f8f8f8;
}

.sidebar-actions {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-actions button {
    width: 100%;
}

.home-page {
    position: relative;
    overflow-x: hidden;
}

.home-page::before,
.home-page::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.home-page::before {
    background: radial-gradient(circle at 20% 30%, rgba(79, 41, 240, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(160, 51, 255, 0.07) 0%, transparent 45%);
    animation: subtlePulse 18s ease-in-out infinite alternate;
}

.home-page::after {
    background:
        radial-gradient(circle 80px at 15% 25%, rgba(79, 41, 240, 0.12), transparent 70%),
        radial-gradient(circle 120px at 85% 75%, rgba(160, 51, 255, 0.10), transparent 70%),
        radial-gradient(circle 100px at 40% 85%, rgba(79, 41, 240, 0.09), transparent 70%);
    animation: floatBubbles 25s linear infinite;
    opacity: 0.6;
}

@keyframes subtlePulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes floatBubbles {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.header-user-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 5px 9px 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.header-user-link:hover {
    background: var(--secondary-color);
    border-color: rgba(79, 41, 240, 0.2);
    color: var(--primary-color);
}

.header-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-main);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.header-user-link:hover .header-user-avatar {
    background: rgba(79, 41, 240, 0.1);
    color: var(--primary-color);
}

.header-user-name {
    line-height: 1;
}

.ba-slider {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 30px 80px rgba(29, 14, 79, 0.18), 0 8px 24px rgba(0, 0, 0, 0.10);
    cursor: ew-resize;
}

.ba-after {
    position: relative;
    width: 100%;
    display: block;
}

.ba-before {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

.ba-img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.ba-img-grayscale {
    filter: grayscale(100%) brightness(0.88);
    width: 100vw;
    max-width: 800px;
}

.ba-label {
    position: absolute;
    bottom: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.03em;
    pointer-events: none;
}

.ba-label-after {
    left: 16px;
    background: rgba(79, 41, 240, 0.75);
    backdrop-filter: blur(4px);
}

.ba-label-before {
    right: 16px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    z-index: 10;
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.85);
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-slider:hover .ba-handle-circle {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(79, 41, 240, 0.3);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 15px 60px;
    }

    .main-title {
        font-size: 2rem;
        gap: 0.3rem;
    }

    .features-main-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.85rem;
        margin-bottom: 35px;
    }

    .cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-section,
    .faq-section {
        padding: 70px 15px;
    }

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

    .billing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }

    .billing-toggle button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .feature-item {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .fits-text {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .studio-preview-section {
        padding: 70px 15px;
    }

    .marquee-content {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #1ebe57;
}

.floating-whatsapp svg {
    margin: 0;
}

.minimal-footer {
    padding: 30px 20px;
    background: transparent;
    text-align: center;
    border-top: 1px solid #eee;
}

.minimal-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.minimal-footer-inner span {
    font-weight: 500;
}

.minimal-footer-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.minimal-footer-inner a:hover {
    color: var(--primary-color);
}