/* ===================================
   BROMUNITY - COMPLETE STYLES
   Bro-focused, responsive, personality-packed
   =================================== */

:root {
    --orange: #f54216;
    --orange-dark: #e33005;
    --orange-light: #f25933;
    --black: #0A0A0A;
    --gray-dark: #1A1A1A;
    --gray-med: #2A2A2A;
    --gray-light: #E5E5E5;
    --white: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}


/* Page Loader */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
#loader.hidden { opacity: 0 !important; }
#loader span { animation: pulse 1.5s infinite; }


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


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Logo dot always orange */
.logo span {
    color: var(--orange) !important;
}

/* Business price card: smaller price */
.price-card:nth-child(3) .price {
    font-size: 2rem;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f54216, #ff6b35);
    border: none;
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(245, 66, 22, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    font-size: 18px;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 66, 22, 0.6);
}

.back-to-top .caret-up {
    color: white;
}

/* ===================================
   FOOTER ALWAYS DARK (even in light-theme)
   =================================== */
body.light-theme .footer {
    background: #0A0A0A !important;
    border-top: 1px solid rgba(255, 127, 80, 0.15) !important;
}

body.light-theme .footer .logo,
body.light-theme .footer-brand p,
body.light-theme .footer-column h4,
body.light-theme .footer-column a,
body.light-theme .footer-bottom p,
body.light-theme .footer-disclaimer {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.light-theme .footer .logo {
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
    color: #FFFFFF !important;
}

body.light-theme .footer-column h4 {
    color: var(--orange) !important;
}

body.light-theme .footer-column a:hover {
    color: var(--orange) !important;
}

body.light-theme .footer-disclaimer {
    color: rgba(255, 255, 255, 0.4) !important;
}

.footer .logo span,
body.light-theme .footer .logo span {
    color: var(--orange) !important;
}

/* ===================================
   NAVBAR ALWAYS DARK (even in light-theme)
   =================================== */
.navbar,
body.light-theme .navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 127, 80, 0.15);
}

body.light-theme .logo,
body.light-theme .nav-menu a,
body.light-theme .nav-login {
    color: #FFFFFF !important;
}

body.light-theme .logo {
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

body.light-theme .nav-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.light-theme .nav-menu a:hover,
body.light-theme .nav-login:hover {
    color: var(--orange) !important;
}


/* ===================================
   TOP BANNER - FIXED AT VERY TOP
   =================================== */
.top-banner {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}
/* Mobile specific refinements */
@media (max-width: 480px) {
    .top-banner {
        font-size: 10px;
    }
}

.top-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Banner text responsive */
.banner-mobile {
    display: none;
}

.banner-desktop {
    display: inline;
}

@media (max-width: 968px) {
    .banner-mobile {
        display: inline;
    }
    
    .banner-desktop {
        display: none;
    }
}


/* ===================================
   NAVIGATION - SIMPLE FIX
   =================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    margin-top: 47px;
}

body.banner-hidden .navbar {
    margin-top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-login {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-login:hover {
    color: var(--orange);
}

.btn-nav {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5);
}

.theme-toggle {
    background: rgba(255, 127, 80, 0.1);
    border: 1px solid rgba(255, 127, 80, 0.3);
    color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: rgba(255, 127, 80, 0.2);
    transform: rotate(15deg);
}

/* ===================================
   HERO SECTION - NO MORE GAP
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 127, 80, 0.1), transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-orange {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    box-shadow: none;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 127, 80, 0.6);
}

/* Chat Mockup */
.hero-mockup {
    position: relative;
}

.chat-window {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 127, 80, 0.2);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 200px;
    max-height: 212px;
}

.chat-avatar-main {
    position: absolute;
    top: -20px;
    right: 2rem;
}

/* Logo/favicon image INSIDE the orb with faded gradient background */
.avatar-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image:
        url('/images/bromunity-favicon.png'),
        linear-gradient(135deg, rgba(245, 66, 22, 0.3), rgba(242, 89, 51, 0.3));
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: 70%, cover;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.5);
    animation: float 3s ease-in-out infinite;
}

.chat-bubble-hero {
    background: rgba(255, 127, 80, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.2rem;
    border-radius: 20px 20px 20px 4px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 127, 80, 0.3);
}

.bubble-text {
    font-size: 1rem;
    font-weight: 500;
}

.typing-indicator {
    display: flex;
    gap: 6px;
    align-items: center;
}

.typing-indicator span {
    width: 10px;
    height: 10px;
    background: rgba(255, 127, 80, 0.6);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* ===================================
   SECTION STYLES
   =================================== */
.section {
    padding: 100px 0;
}

.section-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0;
    line-height: 1.7;
}

/* ===================================
   FEATURES GRID
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 127, 80, 0.15);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(255, 127, 80, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 127, 80, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--orange);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   COMPARISON SECTION
   =================================== */
.real-talk-section {
    background: var(--gray-dark);
    padding: 100px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid;
}

.comparison-card.bad {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.good {
    border-color: rgba(255, 127, 80, 0.5);
    background: rgba(255, 127, 80, 0.05);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 127, 80, 0.15);
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: rgba(255, 127, 80, 0.4);
    transform: translateY(-5px);
}

.stars {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-med);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
}

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

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    background: var(--gray-dark);
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   PRICING
   =================================== */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 127, 80, 0.15);
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: rgba(255, 127, 80, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 127, 80, 0.2);
}

.price-card.featured {
    border-color: var(--orange);
    background: rgba(255, 127, 80, 0.05);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.price-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-price {
    width: 100%;
    background: var(--gray-med);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    display: block;
    transition: all 0.3s;
}

.btn-price:hover {
    background: var(--gray-dark);
}

.btn-price.primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.btn-price.primary:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
}

/* ===================================
   FAQ
   =================================== */
.faq-section {
    background: var(--gray-dark);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 127, 80, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    display: inline-block;
    box-shadow: none;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 127, 80, 0.7);
}

.cta-subtext {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 127, 80, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--orange); /* Orange background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    color: white; /* White icons */
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange-light); /* Lighter orange on hover */
    transform: translateY(-3px);
}

.social-links a svg {
    fill: white; /* Ensure SVG icons are white */
}

.social-links a i {
    color: white; /* Ensure Font Awesome icons are white */
}


.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 11px;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    max-width: 800px;
    margin: 1rem auto 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

/* ===================================
   LIGHT THEME
   =================================== */
body.light-theme {
    --black: #FFFFFF;
    --gray-dark: #F5F5F5;
    --gray-med: #E5E5E5;
    --gray-light: #2A2A2A;
    --white: #0A0A0A;
    --text-primary: #0A0A0A;
    --text-secondary: rgba(10, 10, 10, 0.8);
    --text-muted: rgba(10, 10, 10, 0.6);
    background: #FFFFFF;
    color: #0A0A0A;
}

body.light-theme .hero-title {
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .section-title {
    color: #0A0A0A;
}

body.light-theme .feature-card,
body.light-theme .testimonial,
body.light-theme .price-card,
body.light-theme,
body.light-theme .comparison-card,
body.light-theme .faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 127, 80, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light-theme .hero::before {
    background: radial-gradient(circle at top right, rgba(255, 127, 80, 0.15), transparent 70%);
}

body.light-theme .real-talk-section,
body.light-theme .how-it-works,
body.light-theme .faq-section {
    background: #F8F8F8;
}

body.light-theme .chat-bubble-hero {
    background: rgba(255, 127, 80, 0.1);
    border-color: rgba(255, 127, 80, 0.3);
}

body.light-theme .avatar {
    background: #E5E5E5;
    border-color: #FFFFFF;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet + Mobile: hide nav menu/login/toggle, show only logo + Join us */
@media (max-width: 968px) {
    .container {
        padding: 0 20px !important;
    }

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

    /* Hide menu links, login, theme toggle */
    .nav-menu,
    .nav-login,
    .theme-toggle {
        display: none;
    }

    /* Keep Join us button visible */
    .btn-nav {
        display: inline-block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 16px;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .testimonials-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet hero gradient + back to top button */
@media (max-width: 768px) {
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }

    .hero::before {
        width: 100%;
        background: radial-gradient(circle at top center, rgba(255, 127, 80, 0.1), transparent 70%);
    }

    .hero-subtitle-orange {
        font-size: 24px;
    }
}

/* Mobile specific refinements */
@media (max-width: 480px) {
    .hero-subtitle-orange {
        font-size: 20px;
    }

    .hero-title {
        font-size: 3.4rem;
    }

    .hero-description {
        font-size: 15px;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}
/* ===================================
   HERO CTA GROUP + AUDIO BUTTON
   =================================== */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.audio-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 127, 80, 0.2);
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--orange);
    flex-shrink: 0;
   margin-left: 20px;
}

.audio-play-btn:hover {
    background: rgba(255, 127, 80, 0.3);
    transform: scale(1.1);
}

.audio-play-btn.playing .play-icon {
    display: none;
}

.audio-play-btn.playing .stop-icon {
    display: block !important;
}

.stop-icon {
    display: none;
}


/* Responsive audio button */
@media (max-width: 480px) {
    .audio-play-btn {
        width: 44px;
        height: 44px;
    }
    
    .audio-play-btn svg {
        width: 20px;
        height: 20px;
    }
}

.footer-disclaimer a {
    color: white !important;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-disclaimer a:hover {
    color: var(--orange) !important;
}
