/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bronze: #c9a05c;
    --primary-teal: #2d5a5a;
    --primary-black: #1a1a1a;
    --neutral-beige: #f5f3f0;
    --neutral-light: #faf9f7;
    --accent-bronze: #d4af37;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.highlight {
    color: var(--primary-bronze);
    position: relative;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-bronze));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-bronze), var(--primary-bronze));
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text h2 {
    margin: 0;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary-black);
}

.brand-text span {
    font-size: 0.8rem;
    color: var(--primary-bronze);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

.cta-nav {
    background: var(--primary-bronze);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.cta-nav:hover {
    background: var(--accent-bronze);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 80px 0 0 0;
    min-height: auto;
    background: none;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75), rgba(45, 90, 90, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-overlay .hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    font-weight: 600;
}

.hero-overlay .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--neutral-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-overlay .btn-primary {
    font-size: 1.3rem;
    padding: 1.3rem 2.8rem;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-overlay .guarantee {
    color: var(--neutral-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hero-overlay .guarantee i {
    color: var(--primary-bronze);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--neutral-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.problem-item {
    background: var(--neutral-cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.problem-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.problem-solution {
    text-align: center;
    margin-top: 3rem;
}

.solution-text {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy), #2c5282);
    color: var(--white);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.solution h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.solution-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.solution-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.feature span {
    font-weight: 500;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: var(--neutral-cream);
}

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

.result-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.result-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.result-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.how-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.how-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.how-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.how-text h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: var(--neutral-beige);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-item i {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.audience-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* About Coach Section */
.about-coach {
    padding: 80px 0;
    background: var(--white);
}

.coach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coach-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.coach h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.coach-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.coach-credentials {
    margin: 2rem 0;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--neutral-cream);
    border-radius: 10px;
}

.credential i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.coach-description {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    text-align: center;
    color: var(--white);
}

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

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

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.benefit i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Chatbot Modal */
.chatbot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.chatbot-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.chatbot-header {
    background: var(--primary-navy);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-content {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 15px;
    background: var(--neutral-cream);
}

.chat-message.bot {
    background: var(--neutral-cream);
    margin-right: 2rem;
}

.chat-message.user {
    background: var(--primary-navy);
    color: var(--white);
    margin-left: 2rem;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chat-option {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.chat-option:hover {
    background: var(--accent-gold);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-content,
    .solution-content,
    .how-content,
    .coach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .problem-grid,
    .results-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .chatbot-container {
        width: 95%;
        height: 90vh;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Brand Title Section */
.brand-title {
    background: var(--white);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--neutral-beige);
}

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-black);
    margin: 0;
    font-weight: 600;
}

.brand-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0;
}

/* Navigation with Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text h2 {
    margin: 0;
    font-size: 1.5rem;
}

.brand-text span {
    font-size: 0.8rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: #128c7e;
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* Email Popup */
.email-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.email-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.email-popup h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.email-popup p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-form input {
    padding: 1rem;
    border: 2px solid var(--neutral-beige);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.email-form input:focus {
    outline: none;
    border-color: var(--primary-bronze);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Update existing colors */
.problem-icon {
    background: var(--primary-teal);
}

.result-icon {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-bronze));
}

.how-number {
    background: var(--primary-bronze);
}

.audience-item i {
    color: var(--primary-teal);
}

.coach h2 {
    color: var(--primary-black);
}

.coach-subtitle {
    color: var(--primary-bronze);
}

.credential i {
    color: var(--primary-bronze);
}

.final-cta {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-bronze));
}

.footer {
    background: var(--primary-black);
}

.footer-brand h3 {
    color: var(--primary-bronze);
}

.footer-contact h4 {
    color: var(--primary-bronze);
}

.chatbot-header {
    background: var(--primary-teal);
}

.chat-option {
    background: var(--primary-bronze);
}

.chat-option:hover {
    background: var(--accent-bronze);
}

.solution {
    background: linear-gradient(135deg, var(--primary-teal), #1a4040);
}

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

.problem-item:hover {
    border-color: var(--primary-bronze);
}

.problem-solution .solution-text {
    color: var(--primary-bronze);
}

.section-header h2 {
    color: var(--primary-black);
}

.result-item h3,
.audience-item h3,
.problem-item h3 {
    color: var(--primary-black);
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .brand-text h2 {
        font-size: 1.3rem;
    }
    
    .whatsapp-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .email-popup-content {
        padding: 2rem;
        margin: 20px;
    }
}



/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(45, 90, 90, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-overlay .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 3rem 2rem;
}

.hero-overlay .hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-overlay .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--neutral-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.hero-overlay .btn-primary {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
}

.hero-overlay .guarantee {
    color: var(--neutral-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
}

/* Update existing hero styles */
.hero {
    padding: 0;
    min-height: auto;
    background: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-overlay .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-overlay .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-overlay .btn-primary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-overlay .hero-title {
        font-size: 2rem;
    }
    
    .hero-overlay .hero-content {
        padding: 1rem;
    }
}


/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-overlay .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-overlay .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-banner {
        height: 80vh;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 0.8rem 0;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .brand-text h2 {
        font-size: 1.3rem;
    }
    
    .brand-text span {
        font-size: 0.75rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .cta-nav {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 70px 0 0 0;
    }
    
    .hero-banner {
        height: 75vh;
        min-height: 550px;
    }
    
    .hero-overlay .hero-content {
        padding: 1.5rem;
    }
    
    .hero-overlay .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;
    }
    
    .hero-overlay .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-overlay .btn-primary {
        font-size: 1.1rem;
        padding: 1.1rem 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-overlay .guarantee {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav .container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .cta-nav {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-overlay .hero-content {
        padding: 1rem;
    }
    
    .hero-overlay .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-overlay .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-overlay .btn-primary {
        font-size: 1rem;
        padding: 1rem 2rem;
        margin-bottom: 1rem;
        text-transform: none;
        letter-spacing: normal;
    }
    
    .hero-overlay .guarantee {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-overlay .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-overlay .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-overlay .btn-primary {
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-overlay .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-overlay .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-overlay .btn-primary {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}


/* Audience Grid Responsive Styles */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .audience-grid .audience-item:nth-child(4) {
        grid-column: 1 / 2;
    }
    
    .audience-grid .audience-item:nth-child(5) {
        grid-column: 2 / 3;
    }
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Ensure all audience items have consistent styling */
.audience-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--neutral-light);
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-item i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.audience-item h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

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


/* Updated Audience Grid for 6 items */
@media (min-width: 1200px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .audience-grid .audience-item:nth-child(4),
    .audience-grid .audience-item:nth-child(5),
    .audience-grid .audience-item:nth-child(6) {
        grid-column: auto;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

