@font-face {
    font-family: 'century_gothic_semibold';
    src: url('CenturyGothicPaneuropeanSemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothicPaneuropeanRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #4CAF50;
    --primary-dark: #388E3C;
    --background: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-main: #FFFFFF;
    --text-secondary: #888888;
    --accent-red: #EF5350;
    --container-width: 1250px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.fade-in-content {
    animation: fadeInPage 1.2s ease-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navigation */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    height: 70px;
    background-color: rgba(10, 10, 10, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'century_gothic_semibold', 'Century Gothic', 'League Spartan', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.05em;
    text-transform: lowercase;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-download-nav {
    background-color: var(--primary);
    color: var(--background) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-download-nav:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 20px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(22px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--background);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 560px;
}

.web-mockup-placeholder, .app-mockup-placeholder, .screenshot-placeholder {
    overflow: hidden;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.web-mockup-placeholder img, .app-mockup-placeholder img, .screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.web-mockup-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    border: 4px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    z-index: 1;
}

.app-mockup-placeholder {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    height: 520px;
    border-radius: 24px;
    border: 6px solid #222;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    z-index: 2;
    font-weight: bold;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background-color: var(--background);
    scroll-margin-top: 80px;
}

.why-header {
    text-align: left;
    margin-bottom: 60px;
}

.why-label {
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-label span {
    color: var(--text-main);
}

.why-title {
    font-size: clamp(20px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.why-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.why-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.why-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
}

/* How it Works Section */
.how-section {
    padding: 100px 0;
    background-color: #0F0F0F;
    scroll-margin-top: 80px;
}

.how-header {
    text-align: left;
    margin-bottom: 60px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.how-step {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: 0.3s;
}

.how-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.how-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 25px;
}

.how-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.how-step p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Features */
.features {
    padding: 60px 0 100px 0;
    background-color: var(--background);
    scroll-margin-top: 80px;
}

.section-title {
    font-size: clamp(18px, 4vw, 36px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
}

.section-title span {
    color: var(--primary);
}

.section-title.left {
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(76, 175, 80, 0.2);
    z-index: 10;
}

.feature-screenshot {
    position: absolute;
    background-color: #222;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 3px solid rgba(255,255,255,0.1);
    top: 50%;
    z-index: -1;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #AAA;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.feature-card:hover .feature-screenshot {
    opacity: 1;
}

/* Coluna 1 (Esquerda): App na Esquerda (Phone), Private Web na Direita (Web) */
.feature-card:nth-child(3n+1) .s2,
.feature-card:nth-child(3n+1) .s3 {
    display: flex;
}
.feature-card:nth-child(3n+1) .s2 { width: 180px; height: 360px; border-radius: 24px; background-image: url('assets/screenshots/home_app.png'); }
.feature-card:nth-child(3n+1) .s2::after { content: ''; }

.feature-card:nth-child(3n+1) .s3 { width: 320px; aspect-ratio: 4 / 3; height: auto; border-radius: 12px; background-image: url('assets/screenshots/home_privateweb.png'); }
.feature-card:nth-child(3n+1) .s3::after { content: ''; }

.feature-card:nth-child(3n+1):hover .s2 {
    left: -185px;
    transform: translateY(-50%) scale(1) rotate(-12deg);
}
.feature-card:nth-child(3n+1):hover .s3 {
    right: -320px;
    transform: translateY(-50%) scale(1) rotate(8deg);
}

/* Coluna 3 (Direita): Private Web na Esquerda (Web), App na Direita (Phone) */
.feature-card:nth-child(3n) .s2,
.feature-card:nth-child(3n) .s3 {
    display: flex;
}
.feature-card:nth-child(3n) .s2 { width: 320px; aspect-ratio: 4 / 3; height: auto; border-radius: 12px; background-image: url('assets/screenshots/home_privateweb.png'); }
.feature-card:nth-child(3n) .s2::after { content: ''; }

.feature-card:nth-child(3n) .s3 { width: 180px; height: 360px; border-radius: 24px; background-image: url('assets/screenshots/home_app.png'); }
.feature-card:nth-child(3n) .s3::after { content: ''; }

.feature-card:nth-child(3n):hover .s2 {
    left: -320px;
    transform: translateY(-50%) scale(1) rotate(-8deg);
}
.feature-card:nth-child(3n):hover .s3 {
    right: -185px;
    transform: translateY(-50%) scale(1) rotate(12deg);
}

/* Coluna 2 (Meio): 4 Imagens (Web - App - Card - App - Web) */
.feature-card:nth-child(3n+2) .s1,
.feature-card:nth-child(3n+2) .s2,
.feature-card:nth-child(3n+2) .s3,
.feature-card:nth-child(3n+2) .s4 {
    display: flex;
}
.feature-card:nth-child(3n+2) .s1 { width: 400px; aspect-ratio: 4 / 3; height: auto; border-radius: 12px; background-image: url('assets/screenshots/home_privateweb.png'); }
.feature-card:nth-child(3n+2) .s1::after { content: ''; }

.feature-card:nth-child(3n+2) .s2 { width: 180px; height: 360px; border-radius: 24px; background-image: url('assets/screenshots/home_app.png'); }
.feature-card:nth-child(3n+2) .s2::after { content: ''; }

.feature-card:nth-child(3n+2) .s3 { width: 180px; height: 360px; border-radius: 24px; background-image: url('assets/screenshots/home_app.png'); }
.feature-card:nth-child(3n+2) .s3::after { content: ''; }

.feature-card:nth-child(3n+2) .s4 { width: 400px; aspect-ratio: 4 / 3; height: auto; border-radius: 12px; background-image: url('assets/screenshots/home_privateweb.png'); }
.feature-card:nth-child(3n+2) .s4::after { content: ''; }

.feature-card:nth-child(3n+2):hover .s1 {
    left: -520px;
    transform: translateY(-55%) scale(0.8) rotate(-15deg);
    z-index: -2;
}
.feature-card:nth-child(3n+2):hover .s2 {
    left: -185px;
    transform: translateY(-50%) scale(1) rotate(-8deg);
}
.feature-card:nth-child(3n+2):hover .s3 {
    right: -185px;
    transform: translateY(-50%) scale(1) rotate(8deg);
}
.feature-card:nth-child(3n+2):hover .s4 {
    right: -520px;
    transform: translateY(-55%) scale(0.8) rotate(15deg);
    z-index: -2;
}

.feature-card.hidden {
    display: none !important;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.features-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-more {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.btn-more:hover {
    background-color: var(--primary);
    color: var(--background);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    transform: scale(1.05);
}

/* Privacy */
.privacy {
    padding: 100px 0;
    scroll-margin-top: 80px;
}

.shield-icon-container {
    display: none;
}

.privacy-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.privacy-image, .privacy-content {
    flex: 1;
    max-width: 600px;
}

.privacy-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-card-icon {
    display: none;
}

.privacy-card-text {
    display: inline;
}

.privacy-card-text strong {
    display: inline;
    color: var(--text-main);
    font-size: 16px;
}

.privacy-card-text strong::after {
    content: ': ';
}

.privacy-card-text span {
    color: var(--text-secondary);
    font-size: 15px;
}

.privacy-list li strong::before {
    content: '✓';
    margin-right: 10px;
    color: var(--primary);
    font-weight: 700;
}

.privacy.alt-bg {
    background-color: #0F0F0F;
}

.dual-mockup-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 480px;
    margin: 0 auto;
}

.dual-mockup-container .web-mockup-placeholder {
    width: 90%;
    aspect-ratio: 4 / 3;
    top: 0;
    right: 0;
}

.dual-mockup-container .app-mockup-placeholder {
    width: 200px;
    height: 400px;
    left: 0;
    bottom: 0;
    border-radius: 24px;
}

.screenshot-placeholder.web-shot-large {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 12px;
}

/* Screenshots Carousel */
.screenshots {
    padding: 100px 0;
    background-color: #0F0F0F;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-margin-top: 80px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 80s linear infinite;
}

.carousel-track.reverse {
    animation: scroll-reverse 80s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

.screenshot-placeholder.tall {
    width: 200px;
    height: 400px;
    flex-shrink: 0;
}

.screenshot-placeholder.web-shot {
    width: 320px;
    aspect-ratio: 4 / 3;
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
}

.screenshot-placeholder {
    background-color: var(--card-bg);
    border: 8px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* CTA */
.cta {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at center, #1a2e1a 0%, #0a0a0a 100%);
    position: relative;
}

.cta h2 {
    font-size: clamp(24px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.cta-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.cta-pill {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: #CCC;
    white-space: nowrap;
}

.btn-cta-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary);
    color: #000 !important;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
    transition: 0.3s;
}

.btn-cta-glow i {
    font-size: 16px;
}

.btn-cta-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(76, 175, 80, 0.6);
}

/* Footer */
footer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0A0A0A;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #AAAAAA;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Legal Pages Styles */
.legal-page nav {
    position: relative;
    background-color: var(--background);
}

.legal-content {
    padding: 120px 0 80px 0;
    color: var(--text-main);
}

.legal-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 40px;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 20px 0;
    color: var(--primary);
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content .last-updated {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 40px;
}

/* Mobile and Foldables */
@media (max-width: 1024px) {
    :root {
        --container-width: 100%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-mockup-container {
        max-width: 600px;
        height: 450px;
    }

    .app-mockup-placeholder {
        width: 200px;
        height: 400px;
    }

    .dual-mockup-container {
        max-width: 500px;
        height: 380px;
    }

    .dual-mockup-container .app-mockup-placeholder {
        width: 140px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    nav {
        height: 60px;
    }

    nav.scrolled {
        height: 55px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 19px;
    }

    .why-grid, .how-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-section, .how-section, .features, .privacy, .screenshots {
        padding: 30px 0;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-container, .privacy-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(26px, 8vw, 42px);
        margin-bottom: 20px;
    }

    .section-title {
        font-size: clamp(22px, 5vw, 32px);
        margin-bottom: 30px;
    }

    .section-title.left {
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 24px auto;
        font-size: 15px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 12px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        display: flex;
        padding: 100px 40px 40px 40px;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 2001;
        font-size: 20px;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav-links a {
        font-size: 16px;
        display: block;
        padding: 16px 0;
        letter-spacing: 0.02em;
        font-weight: 500;
        color: var(--text-secondary);
    }

    .nav-links a:hover {
        color: var(--primary);
        padding-left: 5px;
    }

    .btn-download-nav {
        width: fit-content !important;
        margin-top: 30px !important;
        padding: 12px 25px !important;
        border-radius: 12px !important;
        text-align: center;
        align-self: flex-start;
        border-bottom: none !important;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .privacy-image {
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-mockup-container {
        max-width: 280px;
        height: 240px;
        position: relative;
        margin: 0 auto;
    }

    .app-mockup-placeholder {
        width: 100px;
        height: 200px;
        border-width: 3px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-screenshot {
        display: none !important;
    }

    .dual-mockup-container {
        max-width: 260px;
        height: 280px;
        margin: 0 auto;
    }

    .dual-mockup-container .web-mockup-placeholder {
        width: 85%;
        top: 0;
        right: 0;
    }

    .dual-mockup-container .app-mockup-placeholder {
        width: 110px;
        height: 220px;
        left: 0;
        bottom: 0;
        z-index: 5;
    }

    .screenshot-placeholder.tall {
        width: 150px;
        height: 300px;
    }

    .why-intro, .privacy-content p {
        font-size: 14px;
    }

    .cta h2 {
        font-size: clamp(20px, 7vw, 28px);
    }

    .cta-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .cta-features-row {
        gap: 6px;
    }

    .cta-pill {
        font-size: 11px;
        padding: 5px 10px;
    }

    .legal-content {
        padding: 40px 0;
    }

    .why-card p, .how-step p, .feature-card p, .legal-content p {
        font-size: 13px;
    }

    .why-card h3, .how-step h3, .feature-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .why-icon-box {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .how-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .feature-icon {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* Privacy Mobile Redesign */
    .shield-icon-container {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .shield-icon-container i {
        font-size: 60px;
        color: var(--primary);
        filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.4));
    }

    .privacy-container {
        gap: 40px;
    }

    .privacy-list {
        gap: 15px;
    }

    .privacy-list li {
        background-color: var(--card-bg);
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        gap: 12px;
        align-items: center;
        display: flex;
    }

    .privacy-list li strong::before {
        display: none;
    }

    .privacy-card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background-color: rgba(76, 175, 80, 0.1);
        border-radius: 10px;
        color: var(--primary);
        font-size: 18px;
        flex-shrink: 0;
    }

    .privacy-card-icon img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .privacy-card-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 45px;
        flex: 1;
        text-align: center;
    }

    .privacy-card-text strong {
        display: block;
        font-size: 15px;
        margin-bottom: 2px;
    }

    .privacy-card-text strong::after {
        display: none;
    }

    .privacy-card-text span {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 17px;
    }

    .logo-img {
        width: 26px;
        height: 26px;
    }

    .hero-content h1 {
        font-size: clamp(18px, 7vw, 24px);
    }

    .why-title, .section-title {
        font-size: clamp(17px, 6vw, 24px);
    }

    .why-card, .how-step, .feature-card {
        padding: 20px 15px;
    }

    .btn-primary, .btn-secondary {
        width: fit-content;
        text-align: center;
        padding: 12px 20px;
    }

    .btn-cta-glow {
        width: fit-content;
        margin: 0 auto;
        padding: 12px 18px;
        font-size: 13px;
        justify-content: center;
    }

    .hero-btns {
        flex-direction: column;
    }

    .carousel-track {
        gap: 10px;
    }

    .screenshot-placeholder.tall {
        width: 130px;
        height: 260px;
    }

    .screenshot-placeholder.web-shot {
        width: 240px;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 19px;
    }

    .logo-img {
        width: 26px;
        height: 26px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-mockup-container {
        max-width: 240px;
        height: 200px;
    }

    .app-mockup-placeholder {
        width: 90px;
        height: 180px;
    }

    .btn-cta-glow {
        font-size: 13px;
        padding: 12px 16px;
    }
}

/* Extra small devices fix for potential overflow */
@media (max-width: 330px) {
    .container {
        padding: 0 12px;
    }

    .hero-mockup-container {
        max-width: 220px;
        height: 180px;
    }

    .app-mockup-placeholder {
        width: 80px;
        height: 160px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 19px;
    }
}

