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

/* Additional reset for h3 and p elements */
h3, p {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #121212; /* Deep dark purple */
    --text-color: #333333;
    --background-color: #ffffff;
    --spacing-unit: 1rem;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Typography */
h1, h2, p, .subtext, .nav-link, .cta-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    max-width: 1400px;
    transition: color 0.4s ease;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.subtext {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-color);
    max-width: 800px;
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 90px;
    display: flex;
    align-items: center;
    background: rgba(18, 18, 18, 0.9);
    box-shadow: 0 1px 8px rgba(18,18,18,0.3);
    transition: background 0.3s, box-shadow 0.3s;
}

/* Navigation scrolled state - ENABLED FOR HEADER TO CONTENT TRANSITION */
.main-nav.scrolled {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 1px 8px rgba(18,18,18,0.07);
}

.main-nav.scrolled .nav-link {
    color: var(--text-color);
}

.main-nav.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.main-nav.scrolled .nav-link.active {
    color: var(--primary-color);
}

.main-nav.scrolled .nav-link.active::after {
    background-color: var(--primary-color);
}

.main-nav.scrolled .cta-button {
    background-color: var(--primary-color);
    color: white;
}

.main-nav.scrolled .cta-button:hover {
    background-color: #2a2a3e;
    color: white;
}

.main-nav.scrolled .logo svg mask *,
.main-nav.scrolled .logo svg clipPath * {
    fill: white !important;
}

/* Navigation blog-scrolled state - for #121212 background sections */
.main-nav.blog-scrolled {
    background: rgba(18, 18, 18, 0.9);
    box-shadow: 0 1px 8px rgba(18,18,18,0.3);
}

.main-nav.blog-scrolled .nav-link {
    color: white;
}

.main-nav.blog-scrolled .nav-link:hover {
    color: #f0f0f0;
}

.main-nav.blog-scrolled .nav-link.active {
    color: white;
}

.main-nav.blog-scrolled .nav-link.active::after {
    background-color: white;
}

.main-nav.blog-scrolled .cta-button {
    background-color: white;
    color: #121212;
}

.main-nav.blog-scrolled .cta-button:hover {
    background-color: #f0f0f0;
    color: #121212;
}

.main-nav.blog-scrolled .logo svg {
    fill: white;
}

.main-nav.blog-scrolled .logo svg mask *,
.main-nav.blog-scrolled .logo svg path {
    fill: white !important;
}

.nav-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: block;
    transition: var(--transition);
    height: 40px;
    width: auto;
}

.logo svg {
    height: 100%;
    width: auto;
    transition: all 0.4s ease;
}

.logo svg path {
    transition: fill 0.4s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* Logo scrolled state - ENABLED FOR NAV TRANSITION */
.main-nav.scrolled .logo svg {
    filter: invert(1) brightness(0);
}

/* Remove the individual path selectors that aren't working */
/* .main-nav.scrolled .logo svg path {
    fill: #000000 !important;
}

.main-nav.scrolled .logo svg g path {
    fill: #000000 !important;
}

.main-nav.scrolled .logo svg g g path {
    fill: #000000 !important;
}

.main-nav.scrolled .logo svg g[clip-path] g path {
    fill: #000000 !important;
} */

/* Target the specific paths in the masked group */
/* .main-nav.scrolled .logo svg g[clip-path] g path {
    fill: #000000 !important;
}

.main-nav.scrolled .logo svg g g path {
    fill: #000000 !important;
}

.main-nav.scrolled .logo svg g[clip-path] g path {
    fill: #000000 !important;
}

.main-nav.scrolled .logo svg * {
    fill: #000000 !important;
}

.main-nav.scrolled .logo svg mask *,
.main-nav.scrolled .logo svg clipPath * {
    fill: white !important;
} */

/* Ensure the mask and clipPath elements don't get affected */
.main-nav.scrolled .logo svg mask *,
.main-nav.scrolled .logo svg clipPath * {
    fill: white !important;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    position: relative;
}

.nav-link:hover {
    color: #cccccc;
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: background-color 0.4s ease;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background-color: white;
    color: #121212;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    background-color: #f0f0f0;
    color: #121212;
    transform: translateY(-1px);
}

/* Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

section {
    padding: calc(var(--spacing-unit) * 8) 0;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 90px;
    padding-bottom: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 100%;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    max-width: 1400px;
    transition: color 0.4s ease;
}

.hero .subtext {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: white;
    margin-bottom: 3rem;
    max-width: 800px;
    transition: color 0.4s ease;
}

.hero-subtext {
    margin-bottom: 2rem;
    max-width: 1400px;
}

.hero-subtext p:last-child {
    margin-bottom: 0;
}

.hero-subtext p:nth-child(3),
.hero-subtext p:nth-child(4) {
    color: #666666;
}

.hero-subtext p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.4;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.4s ease;
}

.hero-subtext p:first-child {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 3rem 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(18, 18, 18, 0.1);
    aspect-ratio: 16/9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

/* Features List */
.features {
    list-style: none;
    max-width: 800px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
    flex: 0 0 calc(50% - 1.5rem);
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: calc(var(--spacing-unit) * 6) 0;
    border-top: 2px solid #f6f6f6;
    background: white;
    color: var(--text-color);
}

.cta-inner, .cta-section h2, .cta-section .cta-subtext {
    color: var(--text-color);
}

.cta-inner {
    padding-left: 2rem;
    padding-right: 2rem;
}

.cta-section h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.cta-subtext {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Thank You Message */
.thank-you {
    font-size: 1.25rem;
    color: var(--text-color);
    text-align: left;
    margin: 2rem 0;
    font-weight: 500;
}

/* Email Form */
.email-form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#form-container {
    max-width: 500px;
}

#form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#form-container input {
    width: 100%;
    padding: 1rem;
    background: #fff;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

#form-container input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(18, 18, 18, 0.1);
}

#form-container button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

#form-container button:hover {
    background-color: #2a2a3e;
    color: white;
    transform: translateY(-1px);
}

#email-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    font-size: 1rem;
    min-width: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: calc(var(--spacing-unit) * 2) 0;
    color: #666;
    font-size: 0.9rem;
}

/* Overview Section */
.overview {
    padding: calc(var(--spacing-unit) * 8) 0;
}

.overview-content {
    max-width: 800px;
}

.overview h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.overview h2:first-child {
    margin-top: 0;
}

.overview .features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.overview .features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
    flex: 0 0 calc(50% - 1.5rem);
}

.overview .features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Features Stacked Section */
.features-stacked {
    display: flex;
    flex-direction: column;
    gap: 120px;
    position: relative;
    z-index: 2;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: calc(var(--spacing-unit) * 8) 2rem;
}

.feature-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.feature-image {
    width: 100%;
}

.feature-block.left-image,
.feature-block.right-image {
    flex-direction: column;
}

.feature-img {
    width: 100%;
    max-width: 100%;
    border-radius: 0px;
    box-shadow: 0 4px 24px rgba(18,18,18,0.07);
    object-fit: cover;
    background: #f7f7f7;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.feature-text {
    flex: 1;
    text-align: left;
    max-width: none;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.feature-text p {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--text-color);
    max-width: none;
}

.feature-block h3 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: -0.5rem;
    letter-spacing: -0.01em;
}

.feature-block p {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1.4;
    color: var(--text-color);
    max-width: none;
    margin-top: 0;
}

/* Large Desktop Layout (2-column) */
@media (min-width: 1024px) {
    .features-stacked {
        padding: calc(var(--spacing-unit) * 8) 2rem;
        gap: 140px;
    }
    
    .feature-block {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }
    
    .feature-content {
        order: 2;
        padding-left: 0;
        max-width: none;
        width: 100%;
    }
    
    .feature-image {
        order: 1;
        width: 100%;
    }
    
    /* Middle block (2nd) - keep original layout: text left, image right */
    .feature-block:nth-child(2) .feature-content {
        order: 1;
    }
    
    .feature-block:nth-child(2) .feature-image {
        order: 2;
    }
    
    .feature-block h3 {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        margin-bottom: -0.5rem;
    }
    
    .feature-block p {
        font-size: clamp(1.3rem, 2vw, 1.7rem);
        line-height: 1.4;
        margin-top: 0;
        max-width: none;
    }
    
    .feature-img {
        margin-bottom: 0;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    section {
        padding: calc(var(--spacing-unit) * 3) 0;
    }

    .hero {
        padding-top: calc(var(--spacing-unit) * 4);
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero .subtext {
        margin-bottom: 2rem;
    }

    .video-container {
        margin: 2rem 0;
    }

    .features li {
        flex: 0 0 100%;
    }

    .overview {
        padding: calc(var(--spacing-unit) * 4) 0;
    }

    .overview h2 {
        font-size: 1.75rem;
        margin-top: 2rem;
    }

    .overview .features li {
        flex: 0 0 100%;
    }

    main {
        margin-top: 70px;
    }

    .cta-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .logo {
        height: 36px;
    }

    .hero-subtext p:nth-child(3),
    .hero-subtext p:nth-child(4) {
        display: none;
    }
    
    .hero-demo-button.mobile-hidden {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 2rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-link {
        display: none !important;
    }
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .features li {
        font-size: 1.1rem;
    }
    .video-container {
        margin: 1.5rem 0;
    }
    .hero {
        padding-top: 120px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hero .subtext {
        margin-bottom: 1.5rem;
    }
    .overview h2 {
        font-size: 1.5rem;
    }
    .overview .features li {
        font-size: 1.1rem;
    }
    main {
        margin-top: 60px;
    }
    .logo {
        height: 32px;
    }
    .cta-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .mobile-demo-link {
        display: inline-block !important;
    }
    .header-bg-container .overlay {
        opacity: 1;
    }
    .nav-link[href*="cal.com"] {
        display: none !important;
    }
    
    /* Update CTA button for mobile */
    .cta-button[data-mobile-href] {
        content: attr(data-mobile-text);
    }
}

@media (max-width: 900px) {
    .feature-block {
        flex-direction: column !important;
        gap: 32px;
        align-items: flex-start;
    }
    .feature-img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 1023px) {
    .feature-block {
        flex-direction: column !important;
        gap: 32px;
        align-items: flex-start;
    }
    .feature-img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .features-stacked {
        gap: 56px;
    }
    .feature-block {
        padding: 0 0.5rem;
    }
    .feature-text h3 {
        font-size: 1.25rem;
    }
    .feature-text p {
        font-size: 1rem;
    }
}

.header-bg-container {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background-color: #121212;
    border-bottom: 2px solid #f6f6f6;
}

.header-bg-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.header-bg-container .main-nav,
.header-bg-container .hero {
    position: relative;
    z-index: 2;
}

.header-bg-container main {
    position: relative;
    z-index: 2;
}

.hero-text-bg {
    background: white;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(18,18,18,0.07);
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-top: 0;
    z-index: 3;
    position: relative;
}

.highlight-bg {
    background: white;
}

.mobile-demo-link {
    display: none;
    color: white;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: color 0.4s ease;
}

.mobile-demo-link:hover {
    color: #cccccc;
}

/* Blog Section */
.blog-section {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: calc(var(--spacing-unit) * 8) 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #121212;
    color: white;
    z-index: 2;
}

.blog-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 3rem;
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 2rem;
}

.blog-card {
    background: #121212;
    color: white;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.blog-card.active {
    background: #121212;
    color: white;
    transform: none;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.blog-card.active h3,
.blog-card.active .blog-description,
.blog-card.active .author-info {
    color: white;
}

.blog-card.active .share-button {
    background: rgba(255, 255, 255, 0.9);
    color: #121212;
    border: 1px solid rgba(255, 255, 255, 1);
}

.blog-card.active .share-button:hover {
    background: white;
    border: 1px solid white;
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.blog-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
    flex-grow: 1;
    transition: var(--transition);
    opacity: 0.8;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    object-fit: cover;
}

.author-info {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.7;
}

.blog-content-expanded {
    display: none;
    background: #121212;
    color: white;
    padding: 3rem 2rem;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-in-out;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    grid-column: 1 / -1;
}

.blog-content-expanded.active {
    display: block;
}

.blog-content-expanded h1,
.blog-content-expanded h2,
.blog-content-expanded h3,
.blog-content-expanded p,
.blog-content-expanded ul,
.blog-content-expanded ol,
.blog-content-expanded blockquote,
.blog-content-expanded .blog-image,
.blog-content-expanded .video-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Force alignment for headers - more specific */
.blog-content-expanded h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
}

.blog-content-expanded h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-content-expanded h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content-expanded p,
.blog-content-expanded ul,
.blog-content-expanded ol {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

.blog-content-expanded ul,
.blog-content-expanded ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.blog-content-expanded li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.blog-content-expanded blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem auto;
    font-style: italic;
    font-size: 1.125rem;
}

.blog-content-expanded blockquote p {
    margin-bottom: 0.5rem;
}

.blog-content-expanded blockquote cite {
    font-size: 1rem;
    color: #cccccc;
    font-style: normal;
}

.blog-content-expanded .blog-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    border-radius: 0;
    display: block;
}

.blog-content-expanded .small-image {
    max-width: 400px;
}

.blog-content-expanded .video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
}

.blog-content-expanded .next-post {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.blog-content-expanded .next-post-link {
    color: white !important;
    text-decoration: underline;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-content-expanded .next-post-link:hover {
    color: #cccccc !important;
    text-decoration: underline;
}

.blog-content-expanded a {
    color: white;
    text-decoration: underline;
}

.blog-content-expanded a:hover {
    color: #cccccc;
}

.blog-content-expanded .blog-content-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.blog-content-expanded .blog-content-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-content-expanded .blog-content-author span {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    opacity: 0.7;
}

.blog-card-full-width {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
}

.blog-card-full-width .blog-description {
    flex-grow: 1;
}

.blog-card-full-width.active {
    height: auto;
    min-height: 220px;
}

.share-button {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.blog-card.active .share-button {
    background: rgba(255, 255, 255, 0.9);
    color: #121212;
    border: 1px solid rgba(255, 255, 255, 1);
}

.blog-card.active .share-button:hover {
    background: white;
    border: 1px solid white;
}

.share-button svg {
    width: 16px;
    height: 16px;
}

.share-button.copied {
    background: #10b981 !important;
    color: white !important;
    border-color: #10b981 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.share-button.copied:hover {
    background: #059669 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

/* Ensure copied state works properly with active cards */
.blog-card.active .share-button.copied {
    background: #10b981 !important;
    color: white !important;
    border-color: #10b981 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.blog-card.active .share-button.copied:hover {
    background: #059669 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .blog-section {
        padding: calc(var(--spacing-unit) * 3) 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-card h3 {
        font-size: 1.25rem;
    }
    
    .blog-description {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h1,
    .blog-content h2 {
        font-size: 1.75rem;
    }
    
    .blog-content p,
    .blog-content ul,
    .blog-content ol {
        font-size: 1rem;
    }
    
    .share-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

.blog-content .blog-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    border-radius: 0;
    display: block;
}

.blog-content .blog-image.chatbot {
    max-width: 300px;
    border-radius: 0;
}

/* Link styles */
a {
    text-decoration: underline;
    color: #333333;
}

a:hover {
    color: #333333;
}

.two-column {
    padding: 4rem 0;
}

.columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.column h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.column ul, .column ol {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.column ul li, .column ol li {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.column ol li {
    padding-left: 0.5rem;
}

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

/* Header scrolled state - COMMENTED OUT FOR NOW */
/*
.header-bg-container.scrolled {
    background-color: white;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.header-bg-container.scrolled .overlay {
    background-color: white;
    opacity: 0.8;
}

.header-bg-container.scrolled .hero {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.header-bg-container.scrolled .hero h1 {
    color: var(--primary-color);
    position: relative;
    z-index: 3;
}

.header-bg-container.scrolled .hero .subtext {
    color: var(--text-color);
    position: relative;
    z-index: 3;
}

.header-bg-container.scrolled .hero-subtext p {
    color: var(--text-color);
    position: relative;
    z-index: 3;
}

.header-bg-container.scrolled .mobile-demo-link {
    color: var(--primary-color);
    position: relative;
    z-index: 3;
}

.header-bg-container.scrolled .mobile-demo-link:hover {
    opacity: 0.8;
}

.header-bg-container.scrolled .cta-button {
    background-color: var(--primary-color);
    color: white;
}

.header-bg-container.scrolled .cta-button:hover {
    background-color: #2a2a3e;
    color: white;
}
*/

/* Remove the custom How we help section CSS - revert to original */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-demo-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 2.5rem 0;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.hero-demo-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-demo-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    width: fit-content;
    align-self: flex-start;
}

.feature-demo-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Social media links in CTA */
.social-link {
    display: inline-flex;
    align-items: center;
    margin: 0 0.1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #2a2a3e;
    transform: translateY(-1px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    margin: 0 0.25rem;
}

/* Mobile responsive button changes */
@media (max-width: 768px) {
    .hero-demo-button.mobile-hidden {
        display: none !important;
    }
    
    .cta-button[data-mobile-href] {
        content: attr(data-mobile-text);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 2rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-link {
        display: none !important;
    }
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .features li {
        font-size: 1.1rem;
    }
    .video-container {
        margin: 1.5rem 0;
    }
    .hero {
        padding-top: 120px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hero .subtext {
        margin-bottom: 1.5rem;
    }
    .overview h2 {
        font-size: 1.5rem;
    }
    .overview .features li {
        font-size: 1.1rem;
    }
    main {
        margin-top: 60px;
    }
    .logo {
        height: 32px;
    }
    .cta-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .mobile-demo-link {
        display: inline-block !important;
    }
    .header-bg-container .overlay {
        opacity: 1;
    }
    .nav-link[href*="cal.com"] {
        display: none !important;
    }
    
    /* Update CTA button for mobile */
    .cta-button[data-mobile-href] {
        content: attr(data-mobile-text);
    }
} 