/* ============================================
   EXORDIAL AI - LANDING PAGE STYLES
   Identidade Visual: Azul Marinho + Dourado
   ============================================ */

/* Landing Body Override */
body.landing-page {
    --primary-color: #15243f;
    --primary-light: #233759;
    --primary-dark: #0c162b;
    --secondary-color: #c49a62;
    --secondary-light: #d6b27e;
    --background-color: #f6f4f0;
    --text-color: #1f2937;
    --text-light: #4b5563;
    --border-light: #eef0f3;
    background: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Landing utilities (Tailwind-like) */
.w-full {
    width: 100%;
}

.max-w-full {
    max-width: 100%;
}

.h-auto {
    height: auto;
}

.object-cover {
    object-fit: cover;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

body.landing-page .app-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
}

body.landing-page .app-header.scrolled {
    background: var(--gradient-primary);
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: var(--box-shadow-medium);
}

body.landing-page .guest-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.landing-page .guest-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.landing-page .guest-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    padding: 6px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.landing-page .guest-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

body.landing-page .guest-menu-toggle:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

body.landing-page .guest-menu-bar {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

body.landing-page .guest-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(10, 20, 40, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 200;
}

body.landing-page .guest-menu.is-open {
    display: flex;
}

body.landing-page .guest-menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

body.landing-page .guest-menu-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.landing-page .guest-menu .guest-cta {
    width: 100%;
    text-align: center;
}

/* Hero Section - Nova */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    padding: 120px 20px 160px;
    overflow-x: hidden;
    overflow-y: visible;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A475' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--background-color) 0%, transparent 100%);
}

.hero-content-wrapper {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
    justify-items: stretch;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: #fff;
    max-width: 560px;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 164, 117, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 26px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 164, 117, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(197, 164, 117, 0.2); }
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-title-main span {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 24px;
}



.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 154, 98, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(196, 154, 98, 0.5);
    color: var(--primary-dark);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Hero Video/Demo */
.hero-demo {
    position: relative;
    width: 100%;
    max-width: 672px;
    margin: 0;
    justify-self: end;
    z-index: 2;
}

.hero-demo::before {
    content: '';
    position: absolute;
    inset: -24px;
    background: radial-gradient(55% 60% at 50% 45%, rgba(13, 26, 52, 0.8) 0%, rgba(13, 26, 52, 0.2) 58%, transparent 78%);
    z-index: 0;
    pointer-events: none;
}

.demo-video-container {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(197, 164, 117, 0.35);
    background: rgba(8, 16, 34, 0.7);
    aspect-ratio: 16 / 9;
    min-height: 220px;
    transition: box-shadow 0.4s ease;
    z-index: 1;
}

.demo-video-container video {
    display: block;
}

.video-sound-cta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 20, 40, 0.7);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    z-index: 3;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.video-sound-cta:hover {
    transform: translate(-50%, -50%) scale(1.02);
    background: rgba(12, 24, 46, 0.85);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.video-sound-cta:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

.video-sound-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 164, 117, 0.2);
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.demo-video-container.is-audio .video-sound-cta {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -60%);
}

.demo-video-container.is-placeholder .video-sound-cta {
    display: none;
}

.demo-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 164, 117, 0.5);
}

.demo-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(10, 20, 40, 0.6);
    z-index: 4;
}

.demo-placeholder-card {
    width: 100%;
    height: 100%;
    padding: 60px 32px;
    text-align: center;
    background: linear-gradient(135deg, #1A2B4D 0%, #2A3B5D 100%);
    border-radius: 16px;
    border: 1px solid rgba(197, 164, 117, 0.25);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.demo-placeholder-card i {
    font-size: 3.2rem;
    color: var(--secondary-color);
}

.demo-placeholder-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.demo-placeholder-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.stats-bar {
    background: #fff;
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

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

/* Supporters */
.supporters-section {
    padding: 80px 20px;
    background: var(--background-color);
}

.supporters-section .section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px auto;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
}

.supporter-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: var(--box-shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supporter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-medium);
}

.supporter-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.supporter-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(0.9);
}

.supporter-name {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin: 0;
}

/* Problem Section */
.problem-section {
    padding: 100px 20px;
    background: var(--background-color);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subheading {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    background: #fff;
}

.solution-intro {
    text-align: center;
    margin-bottom: 60px;
}

.solution-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.solution-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-showcase-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.feature-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.feature-showcase-card .solution-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: #fff;
}

.feature-showcase-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-showcase-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.feature-list li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

/* How It Works */
.how-section {
    padding: 100px 20px;
    background: var(--gradient-primary);
    color: #fff;
}

.how-section .section-heading {
    color: #fff;
}

.how-section .section-subheading {
    color: rgba(255, 255, 255, 0.8);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(197, 164, 117, 0.4);
}

.step-item h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: var(--background-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid var(--border-light);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0 0 4px 0;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: #fff;
}

.pricing-card {
    max-width: 500px;
    margin: 50px auto 0;
    background: var(--gradient-card);
    border: 2px solid var(--secondary-color);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--box-shadow-strong);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: top;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    background: var(--gradient-primary);
    color: #fff;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 43, 77, 0.3);
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

/* Landing Footer */
.landing-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 30px;
}

.footer-brand-icon {
    color: var(--secondary-color);
    margin-right: 8px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
    .landing-hero {
        padding: 110px 20px 140px;
    }

    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .hero-title-main {
        font-size: 2.8rem;
    }

    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-text {
        max-width: 720px;
        margin: 0 auto;
    }

    .hero-demo {
        max-width: 680px;
        margin: 0 auto;
        justify-self: center;
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 50px;
    }

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

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

@media (max-width: 768px) {
    .landing-hero {
        padding: 104px 16px 110px;
        min-height: auto;
    }

    .hero-title-main {
        font-size: 2.05rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .hero-content-wrapper {
        gap: 24px;
    }

    .hero-demo {
        max-width: 100%;
    }

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

    .section-heading {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .price-value {
        font-size: 3rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .supporters-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

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

    .hero-description {
        font-size: 0.95rem;
    }

    .video-sound-cta {
        font-size: 0.85rem;
        padding: 10px 14px;
        max-width: calc(100% - 24px);
        text-align: center;
    }

    .video-sound-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .feature-showcase-card {
        padding: 30px 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

@media (max-width: 768px) {
    body.landing-page .guest-nav-links {
        display: none;
    }

    body.landing-page .guest-menu-toggle {
        display: inline-flex;
    }

    body.landing-page .app-header {
        padding: 6px 0;
    }

    body.landing-page .header-container {
        padding-left: 16px;
        padding-right: 16px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }

    body.landing-page .guest-nav {
        margin-left: 6px;
    }

    body.landing-page .app-logo {
        margin-bottom: 0;
    }

    body.landing-page .hero-cta-group .btn-hero-primary {
        display: none;
    }
}

/* Hide default footer on landing */
body.landing-page .app-footer {
    display: none;
}
