/* 
 * Grooming Blueprint Media - Homepage Styles
 * MVP Homepage with modern design inspired by Get Joy website
 * Using custom color palette: Yellow, Orange, Blue, Light Blue, Dark Blue
 * 
 * Updated: December 17, 2025 - Complete homepage redesign following strategic conversion flow:
 * Hook > Problem > Mechanism > Transformation > Authority > Pitch > Close
 * New sections: Trophies bar, mechanism steps, transformation benefits, authority narrative,
 * pricing justification, two-way guarantee, and inline FAQ. Includes updated pricing cards
 * and special full-width expo package.
 * 
 * Updated: Added scroll-margin-top to calendly-container for proper scroll positioning with sticky navbar
 * Updated: Added .btn-disabled styles for greyed out "Coming Soon" buttons and .newsletter-signup-text styles
 * Updated: Added simplified footer styles (.footer-content-simple, .footer-description, .footer-social, .social-icon) for logo, description, and social media icons
 */

/* CSS Variables for Colors */
:root {
    --yellow: #fbcc0d;
    --orange: #f98605;
    --blue: #2579ed;
    --light-blue: #08d5da;
    --dark-blue: #06104e;
    --white: #ffffff;
    --light-beige: #f5f5f0;
    --light-green: #e8f5e9;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.01em;
}

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

.cta-nav {
    background-color: var(--blue);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cta-nav:hover {
    background-color: var(--dark-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--blue) 100%);
    padding: 4rem 0;
    color: var(--white);
}

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

.hero-headline {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.01em;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background-color: var(--blue);
    color: var(--white);
}

.btn-disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #cccccc !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
}

.btn-disabled:hover {
    background-color: #cccccc !important;
    color: #666666 !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.newsletter-signup-text {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.newsletter-signup-text a {
    color: var(--blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-signup-text a:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

.trust-indicators {
    margin-top: 2rem;
}

.trust-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.trust-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.stat {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Problem Section */
.problem-section {
    background-color: var(--light-beige);
}

.pain-points {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pain-point {
    display: flex;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    font-size: 2rem;
    color: var(--orange);
    font-weight: bold;
}

.pain-content h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pain-content p {
    color: var(--text-light);
}

.inaction-cost {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--orange);
}

.cost-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    background-color: var(--white);
}

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

.solution-intro {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-different {
    color: var(--text-light);
    line-height: 1.8;
}

.solution-visual .visual-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--light-beige);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--white);
}

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

.benefit-card {
    background-color: var(--light-beige);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.benefit-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-beige);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-blue);
}

.author-name {
    font-weight: 600;
    color: var(--dark-blue);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.case-study {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--blue);
    text-align: center;
}

.case-study h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.case-study p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Founder Section */
.founder-section {
    background-color: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.founder-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--light-beige);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
}

.founder-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission {
    font-weight: 600;
    color: var(--dark-blue) !important;
    font-size: 1.1rem;
    padding: 1.5rem;
    background-color: var(--light-beige);
    border-radius: 10px;
    border-left: 4px solid var(--blue);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--light-green);
}

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

.pricing-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-subheadline {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.what-you-get {
    font-family: 'Roboto Slab', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

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

.perfect-for {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-beige);
    border-radius: 8px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.fine-print {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Expo Package - Special Full Width Card */
.expo-package {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.expo-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.expo-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.expo-text h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.expo-text .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.expo-text .pricing-subheadline {
    text-align: left;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.expo-text .perfect-for {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
}

.expo-features {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.expo-features .what-you-get {
    color: var(--yellow);
    margin-top: 0;
}

.expo-features .pricing-features {
    margin-bottom: 1.5rem;
}

.expo-features .pricing-features li {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.expo-features .btn {
    background-color: var(--yellow);
    color: var(--dark-blue);
    border: none;
}

.expo-features .btn:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
}

.disclaimer {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--blue);
    margin-top: 1rem;
}

.disclaimer p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.guarantee {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--yellow);
}

.guarantee p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--light-beige);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--light-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    color: var(--dark-blue);
    text-align: center;
}

.urgency-section .section-title {
    color: var(--dark-blue);
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Final CTA Section */
.final-cta-section {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.final-cta-section .section-title {
    color: var(--white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.risk-reversal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.risk-reversal p {
    opacity: 0.9;
}

.contact-form {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    color: var(--text-dark);
}

.contact-form h3 {
    font-family: 'Roboto Slab', serif;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Calendly Container */
.calendly-container {
    margin-top: 2rem;
    scroll-margin-top: 100px; /* Account for sticky navbar when scrolling */
}

.calendly-placeholder {
    min-height: 700px;
    background: linear-gradient(135deg, rgba(37, 121, 237, 0.05) 0%, rgba(8, 213, 218, 0.05) 100%);
    border: 3px dashed var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

.calendly-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.calendly-placeholder-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.calendly-placeholder-note {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.calendly-instructions {
    max-width: 600px;
    text-align: left;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.calendly-instructions p {
    margin-bottom: 1rem;
}

.calendly-instructions ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.calendly-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.calendly-instructions code {
    display: block;
    background-color: var(--light-beige);
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--text-dark);
}

.calendly-example {
    font-weight: 600;
    margin-top: 1rem;
}

/* Actual Calendly Widget Styling */
.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    border-radius: 15px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-group textarea {
    resize: vertical;
}

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

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

.footer-content-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    opacity: 1;
    color: var(--yellow);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--yellow);
}

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

/* ===================================
   NEW SECTIONS STYLING - REDESIGN 2025
   =================================== */

/* Hero New - Hook Section */
.hero-new {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    padding: 3rem 0 5rem;
    color: var(--white);
}

.trophies-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.trophy-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.trophy-stat.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out forwards;
}

.trophy-stat:nth-child(1) {
    animation-delay: 0.1s;
}

.trophy-stat:nth-child(2) {
    animation-delay: 0.3s;
}

.trophy-stat:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trophy-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.trophy-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    display: inline-block;
    line-height: 1;
    font-family: 'Roboto Slab', serif;
}

.trophy-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    display: inline-block;
    margin-left: 0.2rem;
}

.trophy-label {
    color: var(--white);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-content-new {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline-new {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subheadline-new {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-visual-container {
    margin: 3rem 0;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(37, 121, 237, 0.2) 0%, rgba(8, 213, 218, 0.2) 100%);
    border: 3px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.video-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.video-placeholder-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.video-placeholder-note {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--white);
}

.hero-caption {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hero-caption strong {
    color: var(--yellow);
    font-weight: 600;
}

.hero-cta-container {
    margin-top: 3rem;
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(251, 204, 13, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 204, 13, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(251, 204, 13, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 204, 13, 0);
    }
}

.btn-pulse:hover {
    animation: none;
}

.hero-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Problem Section New */
.problem-section-new {
    background-color: var(--light-beige);
    padding: 6rem 0;
}

.section-title-new {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-intro-large {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.problem-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.problem-visual-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.problem-visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

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

.truth-bomb {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(249, 134, 5, 0.3);
}

.truth-text {
    font-size: 1.3rem;
    color: var(--dark-blue);
    font-weight: 500;
    line-height: 1.7;
}

/* Mechanism Section */
.mechanism-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.mechanism-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.mechanism-diagram {
    margin-bottom: 4rem;
}

.mechanism-visual-placeholder {
    width: 100%;
    max-width: 900px;
    height: 300px;
    background-color: var(--light-beige);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 auto;
    border: 3px dashed var(--blue);
}

.placeholder-note {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    background-color: var(--light-beige);
    padding: 3rem;
    border-radius: 20px;
    align-items: start;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    font-family: 'Roboto Slab', serif;
    line-height: 1;
}

.step-content h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.step-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-visual-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
    font-size: 1.2rem;
}

.mechanism-result {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
    border-radius: 20px;
    margin-top: 3rem;
}

.mechanism-tagline {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
}

/* Transformation Section */
.transformation-section {
    background-color: var(--light-green);
    padding: 6rem 0;
}

.transformation-visual-placeholder {
    width: 100%;
    max-width: 900px;
    height: 400px;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    margin: 3rem auto;
    border: 3px dashed var(--border-color);
    font-size: 1.3rem;
}

.transformation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-card-new {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-card-new:hover {
    transform: translateY(-5px);
}

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

.benefit-card-new h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.benefit-card-new p {
    color: var(--text-light);
    line-height: 1.8;
}

.identity-shift-callout {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.identity-shift-callout h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.identity-shift-callout p {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Authority Section */
.authority-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.founder-story {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.founder-image-container {
    position: sticky;
    top: 100px;
}

.founder-image-large {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.founder-narrative h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.founder-narrative p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.trophies-list {
    background-color: var(--light-beige);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--blue);
}

.trophies-list h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.trophies-list ul {
    list-style: none;
    padding: 0;
}

.trophies-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.mission-statement {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-blue) !important;
    padding: 2rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    border-radius: 15px;
    margin-top: 2rem;
}

/* Social Proof Section */
.social-proof-section {
    background-color: var(--light-beige);
    padding: 4rem;
    border-radius: 20px;
}

.social-proof-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
    line-height: 1;
}

.stat-label-large {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

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

.testimonial-card-new {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text-large {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-blue);
}

.author-name-large {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

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

.case-study-callout {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--blue);
}

.case-study-callout h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.case-study-visual-placeholder {
    width: 100%;
    height: 200px;
    background-color: var(--light-beige);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    margin: 1.5rem 0;
    border: 2px dashed var(--border-color);
}

.case-study-callout p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Justification */
.pricing-justification {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--blue) 100%);
    padding: 2rem 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.justification-text {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
}

/* Close Section */
.close-section {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 6rem 0;
}

.close-section .section-title-new {
    color: var(--white);
}

.close-intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    opacity: 0.95;
    line-height: 1.7;
}

.incentive-callout {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid var(--yellow);
    backdrop-filter: blur(10px);
}

.incentive-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.incentive-callout h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
    text-align: center;
}

.incentive-callout p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.incentive-callout ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.incentive-callout li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    opacity: 0.9;
}

.incentive-value {
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--yellow);
    margin-top: 1.5rem;
}

.two-way-guarantee {
    margin-bottom: 4rem;
}

.two-way-guarantee h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--yellow);
    text-align: center;
}

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

.guarantee-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.guarantee-card h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.guarantee-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.8;
}

.guarantee-footer {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-buttons-new {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* FAQ Inline */
.faq-inline {
    margin-top: 4rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
}

.faq-inline h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--yellow);
    text-align: center;
}

.faq-list-compact {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .cta-nav {
        margin: 0 1rem;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 2rem;
    }

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

    .solution-content {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        gap: 2rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .expo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expo-package {
        padding: 2rem 1.5rem;
    }

    .expo-text h3 {
        font-size: 1.5rem;
    }

    .expo-text .price {
        font-size: 1.3rem;
    }

    .expo-features {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* New Sections Responsive */
    .trophies-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .hero-headline-new {
        font-size: 2rem;
    }

    .hero-subheadline-new {
        font-size: 1.1rem;
    }

    .trophy-emoji {
        font-size: 2.5rem;
    }

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

    .trophy-suffix {
        font-size: 1.5rem;
    }

    .trophy-label {
        font-size: 0.85rem;
    }

    .hero-video-wrapper {
        max-width: 100%;
    }

    .video-placeholder-icon {
        font-size: 3rem;
    }

    .video-placeholder-text {
        font-size: 1.1rem;
    }

    .video-placeholder-note {
        font-size: 0.8rem;
    }

    .hero-caption {
        font-size: 0.9rem;
    }

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

    .section-intro-large {
        font-size: 1.1rem;
    }

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

    .truth-text {
        font-size: 1.1rem;
    }

    .step-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .founder-story {
        grid-template-columns: 1fr;
    }

    .founder-image-container {
        position: relative;
        top: 0;
    }

    .stats-row {
        gap: 2rem;
    }

    .stat-number-large {
        font-size: 3rem;
    }

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

    .incentive-callout {
        padding: 2rem;
    }

    .mechanism-tagline {
        font-size: 1.2rem;
    }

    /* Calendly Responsive */
    .contact-form {
        padding: 1.5rem;
        max-width: 100%;
    }

    .calendly-placeholder {
        padding: 2rem 1rem;
        min-height: 500px;
    }

    .calendly-placeholder-icon {
        font-size: 3rem;
    }

    .calendly-placeholder-text {
        font-size: 1.2rem;
    }

    .calendly-instructions {
        padding: 1.5rem;
    }

    .calendly-instructions code {
        font-size: 0.75rem;
    }

    .calendly-inline-widget {
        height: 600px;
    }
}

