/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

/* Brand Colors */
:root {
    --primary-teal: #6bc2ba;
    --primary-blue: #88dee6;
    --primary-charcoal: #221f1f;
    --dark-forest: #0e5153;
    --bright-mint: #68f4e6;
    --muted-mint: #def486;
    --white-mint: #def9f6;
    --light-blue: #c6edf1;
    --sage-green: #cae0b5;
    --olive-green: #96973a;
    --dark-olive: #48482e;
    --camel: #bf9a4a;
    --pastel-orange: #f1c96e;
    --creme: #f9e1b2;
}

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

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.dashed-border {
    border: 2px dashed var(--primary-teal);
    border-radius: 8px;
    padding: 3em;
}
.columns {
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
    text-align: left;
}
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
    }
}
.footnotes {
    text-align: left;
}

/* Benefits section styling */
.benefits {
    background: var(--white-mint);
    border-color: var(--primary-teal);
    max-width: 80%;
    margin: 0 auto;
}

.benefits h2 {
    color: var(--primary-charcoal);
    font-size: 1.75rem;
    text-align: left;
    margin: 0 0 1em 0;
    padding: 0;
}

.benefits ol {
    list-style: none;
    counter-reset: benefit-counter;
    padding-left: 0;
    margin: 0;
}

.benefits li {
    counter-increment: benefit-counter;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--dark-forest);
    line-height: 1.6;
    text-align: left;
}

.benefits li::before {
    content: counter(benefit-counter);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(107, 194, 186, 0.3);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(34, 31, 31, 0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

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

.nav-brand a {
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: var(--primary-charcoal);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--primary-teal);
    background: rgba(107, 194, 186, 0.1);
}

.nav-link.active {
    color: var(--primary-teal);
    background: rgba(107, 194, 186, 0.15);
}

/* Mobile Menu Toggle (Hidden by default) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-charcoal);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu (Hidden by default) */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(34, 31, 31, 0.1);
    padding: 1rem 0;
    border-top: 1px solid rgba(107, 194, 186, 0.2);
    z-index: 999;
}

.mobile-nav-link,
.mobile-nav-cta {
    display: block;
    padding: 0.75rem 20px;
    color: var(--primary-charcoal);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    background: rgba(107, 194, 186, 0.1);
    color: var(--primary-teal);
}

.mobile-nav-link.active {
    color: var(--primary-teal);
    background: rgba(107, 194, 186, 0.15);
}

.mobile-nav-cta {
    background: var(--primary-teal);
    color: white;
    margin: 0.5rem 20px;
    border-radius: 6px;
    text-align: center;
}

.mobile-nav-cta:hover {
    background: var(--dark-forest);
}

.nav-login {
    color: var(--dark-forest);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 0 0 4rem 0;
    text-align: center;
    background: var(--primary-charcoal) !important;
    color: white;
    justify-content: flex-start;
    align-items: stretch;
}

/* Remove top margin on mobile */
@media (max-width: 768px) {
    .hero {
        margin-top: 0;
    }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Mockup Section */
.mockup {
    background: white;
}
.mockup-visual {
    text-align: center;
    margin-top: 3rem;
}
/* Hero mockup img specific styling */
.hero-mockup {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 8px 32px rgba(34, 31, 31, 0.15); */
    margin: 0 auto;
    /* display: block;
    position:relative;
    z-index:2;
    margin-bottom:-15%; */
}
.hero-mockup-container {
    text-align: center;
}
/* .hero-mockup-container::after {
    width:100%;
    display:block;
    background:white;
    height:15%;
    bottom:0;
    left:0;
    content:"";
    position:absolute;
    z-index:1; */
}
@media (max-width: 768px) {
    .hero-mockup {
        max-width: 100%;
    }
}

/* Sections */
section {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

section .container::after {
    content: "";
    display: table;
    clear: both;
}

section:nth-child(even) {
    background: var(--white-mint);
}

/* Full-page scrolling for desktop */
@media (min-width: 769px) {
    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    section {
        scroll-snap-align: start;
    }
}

/* Regular scrolling for mobile */
@media (max-width: 768px) {
    section {
        min-height: auto;
        padding: 3rem 0;
    }
    h2 {
        padding: 0;
    }
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-charcoal);
    padding:0 10%;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--dark-forest);
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

/* Navigation Dots (Desktop Only) */
.nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hide on mobile only */
@media (max-width: 768px) {
    .nav-dots {
        display: none !important;
    }
}

.nav-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(107, 194, 186, 0.8);
    border: 2px solid var(--primary-teal);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 9999;
}

.nav-dot.active {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

/* Tooltip for nav dots */
.nav-dot::before {
    content: attr(data-label);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-charcoal);
    color: white;
    font-size: 0.875rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Figtree', sans-serif;
}

.nav-dot:hover::before {
    opacity: 1;
}

/* Graphics and Images */
.placeholder-graphic {
    background: var(--white-mint);
    border: 2px dashed var(--primary-teal);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--dark-forest);
    font-weight: 500;
    margin: 2rem 0;
}

.hero-visual img,
.comparison-visual img,
.solution-visual img,
.trust-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Image captions */
.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--dark-forest);
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* Solution mockup specific styling */
.solution-mockup {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(34, 31, 31, 0.15);
    margin: 2rem auto;
    display: block;
}

/* Beaver Mascot Styling */
.beaver-mascot {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}
.beaver-mascot:hover {
    transform: scale(1.05);
}
.small {
    max-width:150px;
}
.medium {
    max-width:250px;
}
.large {
    max-width:350px;
}
.left {
    float: left;
}
.right {
    float: right;
}
.center {
    text-align: center;
}
.center .beaver-mascot {
    display: inline-block;
    max-width: 300px;
}

/* Large beaver styling */
.beaver-large {
    max-width: 600px !important;
}

.beaver-with-caption-center {
    display: inline-block;
    text-align: center;
}

/* Beaver caption styling */
.beaver-with-caption {
    margin: 0 2rem 1rem 0;
    max-width: 40%;
}

.beaver-caption {
    font-size: 0.875rem;
    color: black;
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
    width: 100%;
    clear: both;
}

/* Problem Section */
.problem-header {
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
}

.problem-header::after {
    content: "";
    display: table;
    clear: both;
}

.problem-points {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    clear: both;
}
.point {
    border: 2px dashed var(--primary-teal);
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
}
.point h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-forest);
    font-weight: 600;
}
.point p {
    color: var(--primary-charcoal);
    line-height: 1.8;
    font-weight: 400;
}
.problem-points .point ul {
    text-align: left !important;
}
.problem-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.problem-arrow {
    position: relative;
    width: 60px;
    height: 36px;
    background: var(--primary-teal);
}

.problem-arrow-right::after {
    content: '';
    position: absolute;
    right: -18px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 20px solid var(--primary-teal);
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
}

/* Research Section */
.research {
    position: relative;
}

.research-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin: 3rem 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.research-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.research-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.research-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.arrow {
    position: relative;
    width: 60px;
    height: 36px;
    background: var(--primary-teal);
}

.arrow-right::after {
    content: '';
    position: absolute;
    right: -18px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 20px solid var(--primary-teal);
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
}

.collabweave-graphic {
    max-width: 400px;
}

.collabweave-image {
    width: 100%;
    height: auto;
}

.research-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px dashed var(--primary-teal);
    border-radius: 8px;
    padding: 2em;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-forest);
    font-weight: 500;
}

/* Solution Section */
.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-forest);
    font-weight: 600;
}

.feature p {
    color: var(--primary-charcoal);
    font-weight: 400;
}

/* More Solution Section */
.more-solution {
    background: white;
}

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

.more-solution-visual {
    text-align: center;
    margin-top: 2rem;
}

/* Trust Section */
.privacy-points {
    list-style: none;
}
.privacy-points li {
    font-size:1.5em;
    color: #0e5153;
}
.privacy-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-forest);
    font-weight: 600;
}

.privacy-feature p {
    color: var(--primary-charcoal);
    font-weight: 400;
    line-height: 1.8;
}

.privacy-feature strong {
    color: var(--dark-forest);
}

/* Dynamic Outline Image Section */
.outline-image-section {
    width: 100vw;
    height: auto;
    background: var(--white-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin: 0 0 3rem 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

/* Hero section outline image - override background for hero */
.hero .outline-image-section {
    background: var(--white-mint);
    margin-bottom: 3rem;
    margin-top: 0;
    flex-shrink: 0;
}

.outline-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: none;
    margin-top: 2em;
}

/* CTA Section */
.cta {
    background: var(--primary-charcoal) !important;
    color: white;
    text-align: center;
    padding-top: 0;
}
.cta p a {
    color: #68f4e6;
}
.cta h2 {
    color: white;
}

.cta .section-lead {
    color: #fff;
    opacity: 0.9;
}
.cta .container {
    text-align: center;
}
.cta .section-lead {
    max-width: 100%;
}

.vip-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    font-family: 'Figtree', sans-serif;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
    font-family: 'Figtree', sans-serif;
}

.form-submit:hover {
    background: var(--primary-blue);
    transform: translateY(-1px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footnotes */
.footnote {
    font-size: 0.75rem;
    vertical-align: super;
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.footnotes {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 194, 186, 0.3);
    font-size: 0.875rem;
    color: var(--dark-forest);
    opacity: 0.8;
}

.footnotes ol {
    padding-left: 1.5rem;
    margin: 0;
}

.footnotes li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Existing Customer Link */
.existing-customer-link {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.customer-login-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.customer-login-link:hover {
    color: var(--primary-teal);
    transform: translateX(3px);
}

/* Footer Content within CTA Section */
.footer-content {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content .tagline {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Medium-large screens (tablet landscape, small desktop) */
@media (min-width: 769px) and (max-width: 1200px) {
    .problem-points {
        gap: 2rem;
        max-width: 800px;
    }
    .problem-points .point ul {
        text-align: left !important;
    }
    .logo-grid {
        max-width: 45%;
        min-width: 350px;
    }
    
    .collabweave-graphic {
        max-width: 45%;
        min-width: 300px;
    }
    
    .research-visual {
        gap: 2rem;
    }
}

/* Medium screens - scale up logos */
@media (max-width: 768px) and (min-width: 481px) {
    .research-visual {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .logo-grid {
        width: 100%;
        max-width: 90vw;
        gap: 1.5rem;
        margin: 0 auto;
        justify-items: center;
    }
    
    .research-logo {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
    
    .arrow-container {
        min-width: auto;
        height: 60px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .arrow-right {
        display: none;
    }
    
    .arrow-right::after {
        display: none;
    }
    
    .arrow-container::after {
        content: '';
        display: block;
        width: 36px;
        height: 60px;
        background: var(--primary-teal);
        position: relative;
    }
    
    .arrow-container::before {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 20px solid var(--primary-teal);
        border-left: 23px solid transparent;
        border-right: 23px solid transparent;
    }
    
    .collabweave-graphic {
        width: 100%;
        max-width: 90vw;
        margin: 0 auto;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .problem-points {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .point {
        padding: 1.5rem;
    }
    
    /* Small mobile problem points arrow - vertical */
    .problem-arrow-container {
        min-width: auto;
        height: 60px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .problem-arrow-right {
        display: none;
    }
    
    .problem-arrow-right::after {
        display: none;
    }
    
    .problem-arrow-container::after {
        content: '';
        display: block;
        width: 36px;
        height: 60px;
        background: var(--primary-teal);
        position: relative;
    }
    
    .problem-arrow-container::before {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 20px solid var(--primary-teal);
        border-left: 23px solid transparent;
        border-right: 23px solid transparent;
    }
    
    .research-visual {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .logo-grid {
        width: 100%;
        max-width: 90vw;
        gap: 1rem;
        margin: 0 auto;
        justify-items: center;
    }
    
    .research-logo {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .arrow-container {
        min-width: auto;
        height: 60px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .arrow-right {
        display: none;
    }
    
    .arrow-right::after {
        display: none;
    }
    
    .arrow-container::after {
        content: '';
        display: block;
        width: 36px;
        height: 60px;
        background: var(--primary-teal);
        position: relative;
    }
    
    .arrow-container::before {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 20px solid var(--primary-teal);
        border-left: 23px solid transparent;
        border-right: 23px solid transparent;
    }
    
    .collabweave-graphic {
        width: 100%;
        max-width: 90vw;
        margin: 0 auto;
    }
}

/* Mobile Navigation */
@media (max-width: 950px) {
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    /* Hamburger menu animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-lead {
        font-size: 1.125rem;
        text-align: center;
    }
    
    /* Mobile benefits section */
    .benefits h2 {
        font-size: 1.5rem;
    }
    
    .benefits li {
        gap: 0.75rem;
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .benefits li::before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .dashed-border {
        padding: 2rem;
    }
    
    .problem-header {
        margin-bottom: 3rem;
    }
    
    .problem-points {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Mobile problem points arrow - vertical */
    .problem-arrow-container {
        min-width: auto;
        height: 60px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .problem-arrow-right {
        display: none;
    }
    
    .problem-arrow-right::after {
        display: none;
    }
    
    .problem-arrow-container::after {
        content: '';
        display: block;
        width: 36px;
        height: 60px;
        background: var(--primary-teal);
        position: relative;
    }
    
    .problem-arrow-container::before {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 20px solid var(--primary-teal);
        border-left: 23px solid transparent;
        border-right: 23px solid transparent;
    }
    
    .research-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .nav-login {
        font-size: 0.8rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .nav-logo {
        height: 32px;
    }
    
    .existing-customer-link {
        margin: 1.5rem 0;
        padding: 0.75rem 0;
    }
    
    .customer-login-link {
        font-size: 0.875rem;
    }
    
    /* Hide nav dots on mobile */
    .nav-dots {
        display: none !important;
    }
    
    /* Improve mobile spacing */
    .container {
        padding: 0 1rem;
    }
    
    .feature h3,
    .privacy-feature h3 {
        font-size: 1.125rem;
    }
    
    /* Mobile beaver mascot adjustments */
    .beaver-mascot {
        max-width: 200px;
    }
    
    .beaver-float-left,
    .beaver-float-right {
        float: none;
        display: block;
        margin: 1rem auto;
        text-align: center;
        max-width: 200px;
    }
    
    /* Mobile beaver caption adjustments */
    .beaver-with-caption {
        float: none;
        text-align: center;
        margin: 1rem auto;
        max-width: 200px;
    }
    
    .beaver-center .beaver-mascot {
        max-width: 180px;
    }
    
    /* Mobile large beaver adjustments */
    .beaver-large {
        max-width: 300px !important;
    }
    .solution-mockup {
        max-width: 250px;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(34, 31, 31, 0.1);
        margin: 1.5rem auto;
    }
    
    .image-caption {
        font-size: 0.8125rem;
        margin-top: 0.75rem;
    }
    
    /* Mobile outline image styling */
    .outline-image-section {
        height: auto;
    }
}

/* ============================================
   GUIDE PAGE STYLES
   ============================================ */

/* Guide Hero */
.guide-hero {
    background: var(--white-mint) !important;
    color: var(--primary-charcoal);
    padding: 7rem 0 4rem 0;
}

.guide-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-charcoal);
}

.guide-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-forest);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Guide Sections */
.guide-section {
    padding: 4rem 0;
    min-height: auto;
}

.guide-section:nth-child(odd) {
    background: white;
}

.guide-section:nth-child(even) {
    background: var(--white-mint);
}

/* Dimension Headers */
.dimension-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dimension-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.dimension-header .section-lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-forest);
    margin-bottom: 1rem;
}

.dimension-header p {
    font-size: 1.125rem;
    color: var(--primary-charcoal);
    max-width: 800px;
    margin: 0 auto;
}

/* What We Measure Section */
.what-we-measure {
    margin-bottom: 3rem;
}

.what-we-measure h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 2rem;
    text-align: center;
}

.measure-item {
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.measure-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-forest);
    margin-bottom: 0.75rem;
}

.measure-item p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--primary-charcoal);
}

/* Working Examples */
.working-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.working-example {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid;
}

.working-example.working {
    background: var(--sage-green);
    border-color: var(--olive-green);
}

.working-example.broken {
    background: #fef2f2;
    border-color: #fca5a5;
}

.working-example h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-charcoal);
}

.working-example p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-charcoal);
}

/* Integration Section */
.integration-section {
    text-align: center;
}

.integration-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-charcoal);
}

.guide-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-stats .stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(107, 194, 186, 0.1);
}

.integration-flow,
.bottom-line,
.differentiation {
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.integration-flow h3,
.bottom-line h3,
.differentiation h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-forest);
    margin-bottom: 1rem;
    text-align: center;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.integration-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--light-blue);
    border-radius: 8px;
    border-left: 4px solid var(--primary-teal);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.bottom-line p,
.differentiation p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--primary-charcoal);
}

/* Guide CTA */
.guide-cta {
    background: var(--primary-charcoal) !important;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.guide-cta h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.guide-cta .section-lead {
    color: rgba(255, 255, 255, 0.9);
}

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

.secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.secondary-cta:hover {
    background: white;
    color: var(--primary-charcoal);
}

/* Mobile Responsive for Guide */
@media (max-width: 768px) {
    .guide-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .guide-hero h1 {
        font-size: 2rem;
    }
    
    .guide-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .dimension-header h2 {
        font-size: 2rem;
    }
    
    .dimension-header .section-lead {
        font-size: 1.25rem;
    }
    
    .working-examples {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .working-example {
        padding: 1.5rem;
    }
    
    .guide-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
    
    .guide-cta h2 {
        font-size: 1.75rem;
    }
}

/* Trademark Symbol Styling */
sup {
    font-size: 0.6em;
    font-weight: 300;
    opacity: 0.7;
}