/* Modern Microcise Styles V4 - Small Moves. Big Difference. */
:root {
    --primary-blue: #4F87E1;
    --primary-blue-dark: #3B75D1;
    --primary-orange: #FF8F47;
    --primary-orange-dark: #E67A35;
    --accent-green: #10B981;
    --accent-green-dark: #059669;
    --text-dark: #1f2937;
    --text-medium: #6b7280;
    --text-light: #9ca3af;
    --background-white: #ffffff;
    --background-light: #f9fafb;
    --background-blue-light: #EBF4FF;
    --background-orange-light: #FFF3ED;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    background: var(--background-white);
}

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

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        gap: 16px;
        align-items: center;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu-link {
    display: block;
    padding: 12px 24px;
    background: var(--primary-orange);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-nav {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-medium);
    transition: all 0.2s ease;
}

.btn-outline-nav:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: var(--background-orange-light);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-blue-light) 0%, var(--background-white) 100%);
    padding: 20px 0 120px;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.limited-offer {
    display: inline-block;
    background: rgba(255, 143, 71, 0.1);
    color: var(--primary-orange);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-medium);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 48px;
    padding: 12px 24px;
    background: var(--background-light);
    border-radius: var(--radius-full);
    display: inline-block;
    font-weight: 500;
}

/* Email Capture */
.email-capture-hero {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.capture-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.btn-primary-hero:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-hero {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-orange);
    transition: all 0.2s ease;
}

.btn-secondary-hero:hover {
    background: var(--background-orange-light);
    transform: translateY(-2px);
}

.trust-indicators {
    text-align: center;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.shield-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-green-dark);
}

.no-spam {
    font-size: 12px;
    color: var(--text-light);
}

/* Sections */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Trusted Section */
.trusted-section {
    padding: 80px 0;
    background: var(--background-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: var(--background-light);
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    padding: 14px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: var(--background-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

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

.problems-footer {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: white;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

.challenge-card {
    background: var(--background-light);
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform 0.2s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
}

.challenge-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    padding: 12px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
}

.challenge-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.challenge-card p {
    color: var(--text-medium);
    line-height: 1.5;
}

.why-footer {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
}

/* Did You Know Section */
.did-you-know-section {
    padding: 80px 0;
    background: white;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .fact-grid {
        grid-template-columns: 1fr;
    }
}

.fact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--background-light);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.fact-card:hover::before {
    transform: scaleX(1);
}

.fact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 12px;
    line-height: 1;
}

.fact-card p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

.fact-source {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

/* How Section */
.how-section {
    padding: 80px 0;
    background: var(--background-light);
}

.how-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-orange);
}

.how-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    padding: 16px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
}

.how-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.how-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.how-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.how-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: 24px;
}

.how-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.how-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.6;
}

.how-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: white;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.newsletter-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.newsletter-content {
    background: var(--background-light);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.newsletter-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.newsletter-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.newsletter-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.list-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-cta {
    text-align: center;
    margin-bottom: 24px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.btn-primary-large:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-subtext {
    color: var(--text-medium);
    font-size: 16px;
    margin: 0;
}

.demo-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.demo-link:hover {
    text-decoration: underline;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-medium);
}

.privacy-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-green-dark);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    border-color: var(--primary-orange);
}

.faq-question {
    background: var(--background-light);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
    color: var(--text-dark);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.faq-arrow.rotate-180 {
    transform: rotate(180deg);
}

.faq-answer {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: white;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* References Section */
.references-section {
    background: var(--background-light);
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

.references-content {
    max-width: 800px;
    margin: 0 auto;
}

.references-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.references-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 48px 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-logo {
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 600;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-info p {
    margin: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Movement Benefits Section */
.movement-benefits-section {
    padding: 80px 0;
    background: var(--background-white);
}

.movement-benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .movement-benefits-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

.benefit-item .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item .benefit-icon svg {
    width: 100%;
    height: 100%;
    color: #2d3748;
    stroke-width: 2;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
    max-width: 280px;
    margin: 0 auto;
}

/* CTA Section - Update tagline styling */
.cta-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 16px;
}

/* How Section - Add steps styling */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    line-height: 1.5;
}

.how-footer {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--border-light);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .email-capture-hero {
        padding: 24px;
    }
    
    .how-box {
        padding: 32px 24px;
    }
    
    .newsletter-content {
        padding: 24px;
    }
}