:root {
    /* Colors Extracted & Refined */
    --primary-orange: #DC460A;
    --primary-orange-hover: #b83a08;
    --dark-gray: #1a1a1a;
    /* Darkened for better contrast/modern look */
    --medium-gray: #464646;
    --light-gray: #F5F5F7;
    /* Apple-style light gray */
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e1e1e1;

    /* Fonts */
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Noto Sans', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-gray);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: var(--section-padding);
}

.highlight {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b3d 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 70, 10, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 70, 10, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--dark-gray);
    letter-spacing: -0.5px;
}

.logo img {
    height: 40px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

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

.nav-links .btn-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-gray);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    padding: 24px;
    transition: 0.3s ease-in-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

/* Gemini-style Animated Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 119, 198, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(220, 70, 10, 0.25), transparent),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(255, 107, 61, 0.2), transparent),
        radial-gradient(ellipse 40% 60% at 60% 90%, rgba(120, 119, 198, 0.15), transparent);
    animation: aurora 15s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

@keyframes aurora {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: scale(1.1) rotate(1deg);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05) rotate(-1deg);
        opacity: 1;
    }

    75% {
        transform: scale(1.15) rotate(0.5deg);
        opacity: 0.85;
    }
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #FFE5DE;
    color: var(--primary-orange);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero .badge {
    background: rgba(220, 70, 10, 0.2);
    border: 1px solid rgba(220, 70, 10, 0.4);
}

.hero .stat-number {
    color: var(--white);
}

.hero .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.hero .hero-stats {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-backdrop {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 70, 10, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.floating-img {
    position: relative;
    z-index: 1;
    width: 80%;
    /* Adjusted for logo placeholder */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Features/Modules */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: #FFF5F2;
    color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

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

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tech Stack */
.dark-bg {
    background-color: var(--dark-gray);
    color: var(--white);
}

.dark-bg h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 450px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.tech-list i {
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: fill;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--font-heading);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA */
.cta-container {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2a2a2a 100%);
    border-radius: var(--radius-lg);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

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

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* Footer */
.footer-container {
    padding: 80px 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #eee;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
}

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

.footer-bottom {
    padding: 32px 0;
    color: #999;
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
        margin-bottom: 20px;
    }

    .nav-links {
        display: none;
    }

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

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        justify-content: center;
    }
}

/* System Screen Adjustments */
.system-screen {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.8);
    width: 100%;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid #eee;
}

.gallery-item span {
    display: block;
    padding: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.light-bg {
    background-color: var(--light-gray);
}

/* ==================== */
/* PRICING SECTION */
/* ==================== */
.pricing-section {
    display: none; /* Temporariamente oculto */
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0;
}

.pricing-section .section-header h2 {
    color: var(--white);
}

.pricing-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff6b3d);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 70, 10, 0.3);
    box-shadow: 0 20px 60px rgba(220, 70, 10, 0.15);
}

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

.pricing-card.featured {
    background: rgba(220, 70, 10, 0.08);
    border-color: rgba(220, 70, 10, 0.4);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b3d);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
}

.pricing-price .period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

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

.pricing-features i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.pricing-card .btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
    border-color: var(--white);
}

/* ==================== */
/* PIONEERS SECTION */
/* ==================== */
.pioneers-section {
    position: relative;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #0f0f0f 100%);
    padding: 100px 0;
    overflow: hidden;
}

.beams-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.beams-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.beam {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
}

.beam-1 {
    animation: beam-flow 4s ease-in-out infinite;
    animation-delay: 0s;
}

.beam-2 {
    animation: beam-flow 5s ease-in-out infinite;
    animation-delay: 1s;
}

.beam-3 {
    animation: beam-flow 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.beam-4 {
    animation: beam-flow 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.beam-5 {
    animation: beam-flow 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes beam-flow {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0;
    }
}

.pioneers-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pioneers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 70, 10, 0.15);
    border: 1px solid rgba(220, 70, 10, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pioneers-badge i {
    font-size: 1rem;
}

.pioneers-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pioneers-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.6;
}

.pioneers-subtitle strong {
    color: var(--white);
}

.pioneers-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.offer-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-days {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    font-family: var(--font-heading);
}

.offer-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

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

.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 1rem;
}

.offer-item i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.pioneers-slots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.slots-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slots-counter {
    display: flex;
    gap: 8px;
}

.slot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.slot.filled {
    background: linear-gradient(135deg, var(--primary-orange), #ff6b3d);
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(220, 70, 10, 0.5);
}

.slots-remaining {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.1rem;
    gap: 10px;
}

.pioneers-cta {
    margin-bottom: 24px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(220, 70, 10, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(220, 70, 10, 0.6), 0 0 60px rgba(220, 70, 10, 0.3);
    }
}

.pioneers-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.pioneers-disclaimer i {
    color: rgba(255, 255, 255, 0.5);
}

/* Pioneers Mobile */
@media (max-width: 768px) {
    .pioneers-title {
        font-size: 2.5rem;
    }

    .pioneers-offer {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
    }

    .offer-days {
        font-size: 4rem;
    }

    .offer-details {
        text-align: center;
    }

    .slot {
        width: 24px;
        height: 24px;
    }
}

/* ==================== */
/* MOBILE SMALL SCREENS */
/* ==================== */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-container {
        padding: 0 16px;
    }

    .logo img {
        height: 32px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-img-backdrop {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .floating-img {
        width: 100%;
        max-width: 100%;
    }

    .badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

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

    .feature-card {
        padding: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-container {
        padding: 50px 16px;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .footer-container {
        padding: 50px 16px 30px;
    }

    /* Pioneers Mobile Small */
    .pioneers-section {
        padding: 60px 0;
    }

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

    .pioneers-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .pioneers-offer {
        padding: 24px 16px;
        gap: 24px;
    }

    .offer-days {
        font-size: 3rem;
    }

    .offer-label {
        font-size: 1rem;
    }

    .offer-item {
        font-size: 0.9rem;
    }

    .slot {
        width: 20px;
        height: 20px;
    }

    .slots-counter {
        gap: 6px;
    }

    .btn-xl {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    /* Pricing Mobile */
    .pricing-section {
        padding: 60px 0;
    }

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

    .pricing-card {
        padding: 28px;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }
}