* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #6b5420 #1a1a1a;
}

body {
    font-family: 'Figtree', 'Figtree Placeholder', sans-serif;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #6b5420;
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #ae8625;
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 10px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: max-width 0.4s ease;
}

.header.scrolled .nav-container {
    max-width: 600px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.logo-icon {
    height: 30px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-left: 10px;
    max-width: 200px;
    opacity: 1;
    transition: max-width 0.4s ease, opacity 0.3s ease;
}

.header.scrolled .logo-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-size: 14px;
    font-weight: 400;
    color: white;
    position: relative;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

.nav-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.nav-cta .btn-primary .btn-text {
    display: inline-block;
    max-width: 200px;
    opacity: 1;
    transition: max-width 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.header.scrolled .nav-cta .btn-primary {
    width: 40px;
    padding: 8px;
    justify-content: center;
}

.header.scrolled .nav-cta .btn-primary .btn-text {
    max-width: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
}

.header.scrolled .nav-cta .btn-primary svg {
    margin-left: 0 !important;
}

/* CTA Button */
.btn-primary {
    padding: 8px 18px;
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    color: #000;
    font-weight: 500;
    font-size: 13px;
    border: none;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.706592px 0.706592px -0.625px,
                rgba(0, 0, 0, 0.145) 0px 1.80656px 1.80656px -1.25px,
                rgba(0, 0, 0, 0.137) 0px 3.62176px 3.62176px -1.875px,
                rgba(0, 0, 0, 0.125) 0px 6.8656px 6.8656px -2.5px,
                rgba(0, 0, 0, 0.106) 0px 13.6468px 13.6468px -3.125px,
                rgba(0, 0, 0, 0.05) 0px 30px 30px -3.75px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Responsive Navigation */
@media (max-width: 809px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
        padding: 15px 20px;
        position: relative;
    }

    .logo {
        order: 1;
    }

    .logo-text {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        background: rgba(0, 0, 0, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        padding: 2rem;
        padding-top: calc(70px + 2rem);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 1rem;
        align-content: start;
        list-style: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu::before {
        content: "";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 40px;
        margin: 0 auto 1.5rem;
        background: url('img/logo.webp') calc(50% - 62px) center / 30px no-repeat;
        grid-column: 1 / -1;
    }

    .nav-menu::after {
        content: "Rosa Scarlatta";
        position: absolute;
        top: calc(70px + 2rem + 8px);
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        font-weight: 700;
        color: white;
        white-space: nowrap;
    }

    .nav-menu li {
        display: block;
    }

    .nav-menu li:last-child {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }

    .nav-menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        padding: 0;
        min-height: 120px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: rgba(174, 134, 37, 0.1);
        border-color: rgba(174, 134, 37, 0.3);
    }

    .nav-cta {
        order: 2;
        justify-content: flex-end;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        z-index: 1001;
    }

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

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    background: linear-gradient(149deg, rgba(174, 134, 37, .2) 0%, rgba(0, 0, 0, 1) 50%);
    position: relative;
    overflow: hidden;
}

.particles-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particles-holder canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
}

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

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.founding-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    background: rgba(174, 134, 37, 0.1);
    border: 1px solid rgba(174, 134, 37, 0.4);
    border-radius: 8px;
    padding: 12px 24px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #edc967;
    animation: fadeInUp 0.6s ease-out;
}

.founding-badge + .hero-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 20px auto;
}

.founding-icon {
    color: #ae8625;
    font-size: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(174, 134, 37, 0.15);
    border: 1px solid rgba(174, 134, 37, 0.3);
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-new {
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    color: white;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.badge-text {
    color: white;
    font-size: 13px;
    font-weight: 400;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: white;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-spots {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
    line-height: 26px;
}

.spots-number {
    font-weight: 700;
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 400;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-cta {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.45s backwards;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    box-shadow: rgba(174, 134, 37, 0.4) 0px 8px 24px,
                rgba(0, 0, 0, 0.2) 0px 4px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: rgba(174, 134, 37, 0.5) 0px 12px 32px,
                rgba(0, 0, 0, 0.3) 0px 6px 16px;
}

.hero-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.arrow-left path,
.arrow-right path {
    animation: drawLine 1.2s ease-out 0.5s forwards;
}

.arrow-left,
.arrow-right {
    width: 150px;
    height: 60px;
}

#countdown {
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.timeline {
    margin-bottom: 40px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 18px;
    width: 2px;
    height: calc(100% + 8px);
    background: rgba(174, 134, 37, 0.3);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #000;
    border: 2px solid #ae8625;
    flex-shrink: 0;
    margin-top: 4px;
}

.timeline-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.timeline-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.offer-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.offer-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    min-width: 70px;
    flex-shrink: 0;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

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

.features-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.features-intro {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 40px 0;
}

.hero-features-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    margin-top: 0;
}

.hero-features-text h3:not(:first-child) {
    margin-top: 32px;
}

.hero-features-text p:not(.features-intro) {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.price-new {
    font-weight: 700;
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.hero-features-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-features-card .features-title {
    text-align: center;
}

.hero-features-card .features-intro {
    text-align: center;
}

.browser-mockups {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.mockup-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-mockup {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.laptop-screen {
    background: transparent;
    padding: 0;
}

.laptop-bottom {
    display: none;
}

.laptop-base {
    display: none;
}

.browser-mockup {
    max-width: 400px;
    max-height: 370px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.mobile-mockup {
    position: absolute;
    bottom: -20px;
    right: 40px;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out 1s backwards;
}

.mobile-frame {
    width: 120px;
    height: 240px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 14px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.scrolling-mobile {
    width: 100%;
    height: auto;
    display: block;
    animation: scrollDownMobile 30s ease-in-out infinite;
    animation-play-state: paused;
}

.mobile-mockup:hover .scrolling-mobile {
    animation-play-state: running;
}

@keyframes scrollDownMobile {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-70%);
    }
    100% {
        transform: translateY(0);
    }
}

.browser-header {
    background: #1a1a1a;
    padding: 6px 10px;
    border-bottom: 1px solid #3d3d3d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.browser-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.browser-buttons {
    display: flex;
    gap: 8px;
}

.browser-buttons span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.browser-buttons span:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-close:hover {
    background: #ff5f56;
}

.browser-content {
    background: #000;
    padding-top: 5px;
    overflow: hidden;
    height: 100%;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-70%);
    }
    100% {
        transform: translateY(0);
    }
}

.scrolling-screen {
    animation: scrollDown 20s ease-in-out infinite;
    animation-play-state: paused;
}

.browser-mockup:hover .scrolling-screen {
    animation-play-state: running;
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(174, 134, 37, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-primary {
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    color: #000;
    box-shadow: 0 4px 20px rgba(174, 134, 37, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(174, 134, 37, 0.4);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 600px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.about-section {
    width: 100%;
    padding: 60px 0 40px 0;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-box {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    text-align: left;
    background: radial-gradient(circle at top left, rgba(174, 134, 37, 0.2) 0%, transparent 30%), radial-gradient(circle at bottom right, rgba(174, 134, 37, 0.2) 0%, transparent 30%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.about-box .about-title {
    margin-top: 0;
}

.about-box .about-text {
    margin-bottom: 0;
}

.about-link {
    display: inline-block;
    margin-top: 15px;
    color: #edc967;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #f7ef8a;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-top: 40px;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

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

.about-description {
    text-align: left;
    background: radial-gradient(circle at top left, rgba(174, 134, 37, 0.2) 0%, transparent 30%), radial-gradient(circle at bottom right, rgba(174, 134, 37, 0.2) 0%, transparent 30%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.about-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}

.about-description p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.about-mockup {
    display: flex;
    justify-content: center;
}

.mockup-container-about {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container-about .mobile-mockup {
    position: absolute;
    bottom: -20px;
    right: 40px;
    z-index: 2;
}

/* Footer */
.footer {
    background: #000;
    background-image: radial-gradient(50% 50% at 50% 3.4%, rgba(174, 134, 37, 0.15) 0%, rgba(171, 171, 171, 0) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0 25px;
    margin-top: 80px;
}

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

.footer-content {
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4.footer-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ae8625;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ae8625;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #000;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(174, 134, 37, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 20px 0 16px;
}

.faq-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    stroke: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    opacity: 1;
    margin-top: 16px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #000;
}

.contact-section .services-header {
    margin-bottom: 40px;
    text-align: center;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(174, 134, 37, 0.15);
    border: 1px solid rgba(174, 134, 37, 0.3);
    border-radius: 50px;
    padding: 4px 12px;
}

.services-badge .badge-text {
    color: white;
    font-size: 13px;
    font-weight: 400;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at center, rgba(174, 134, 37, 0.3) 0%, transparent 50%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 20px 0 16px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: white;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.contact-form {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-family: 'Figtree', 'Figtree Placeholder', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ae8625;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    padding: 8px 18px;
    background: linear-gradient(45deg, #ae8625, #f7ef8a, #d2ac47, #edc967);
    color: #000;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.706592px 0.706592px -0.625px,
                rgba(0, 0, 0, 0.145) 0px 1.80656px 1.80656px -1.25px,
                rgba(0, 0, 0, 0.137) 0px 3.62176px 3.62176px -1.875px,
                rgba(0, 0, 0, 0.125) 0px 8.0375px 8.0375px -2.5px;
}

.form-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    .contact-item {
        font-size: 14px;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .contact-form {
        padding: 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 14px;
        font-size: 15px;
    }
}

/* Responsive Mobile */
@media (max-width: 809px) {
    .hero-section {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-spots {
        font-size: 16px;
    }

    .hero-cta {
        margin-bottom: 30px;
    }

    .btn-cta {
        padding: 10px 24px;
        font-size: 15px;
        display: inline-flex;
        width: auto;
        max-width: 90%;
    }

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

    .mockup-container {
        transform: scale(0.85);
    }

    .mobile-mockup {
        right: 20px;
        bottom: -10px;
    }

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

    .mockup-container-about {
        transform: scale(0.85);
    }

    .mockup-container-about .mobile-mockup {
        right: 20px;
        bottom: -10px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-title {
        font-size: 32px;
    }

    .form-submit-btn {
        display: inline-flex;
        width: auto;
        padding: 12px 24px;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .timeline-content h4 {
        font-size: 15px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .offer-row {
        gap: 6px;
    }

    .offer-label {
        font-size: 13px;
    }

    .faq-question h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-badge {
        padding: 3px 10px;
    }

    .badge-text {
        font-size: 11px;
    }

    .hero-spots {
        font-size: 14px;
    }

    .btn-cta {
        padding: 8px 20px;
        font-size: 14px;
    }

    .mockup-container {
        transform: scale(0.7);
    }

    .mobile-mockup {
        right: 10px;
    }

    .mockup-container-about {
        transform: scale(0.7);
    }

    .mockup-container-about .mobile-mockup {
        right: 10px;
    }

    .contact-title {
        font-size: 24px;
    }

    .form-submit-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .offer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .offer-label {
        min-width: auto;
        font-size: 13px;
    }

    .price-old,
    .price-new {
        font-size: 16px;
    }

    .timeline-content h4 {
        font-size: 15px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}
