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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f1ea;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #f9f1ea;
    z-index: 1000;
    padding: 0 24px;
}

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: none;
}

/* Logo */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.favicon-img {
    height: 34px; /* 2x the logo height (17px * 2) */
    width: 34px;
}

.logo-img {
    height: 17px; /* Made 30% smaller (24px * 0.7 ≈ 17px) */
    width: auto;
}

/* Navigation */
.navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
    color: #000;
    background: rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.dropdown-icon {
    color: #666;
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-button {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background: #333;
}

.login-button {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-button:hover {
    background: #333;
}

.logout-button {
    background: #ef4444;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-button:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* Header Social Links */
.header-social {
    display: flex;
    gap: 12px;
}

.header-social-link-wrapper {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-headshot-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.header-linkedin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    color: #0077b5;
}

.header-social-link-wrapper:hover .header-headshot-img {
    opacity: 0;
}

.header-social-link-wrapper:hover .header-linkedin-icon {
    opacity: 1;
}

.header-social-link-wrapper:hover .header-social-link {
    background: rgba(0, 119, 181, 0.1);
}

/* Main Content */
.main {
    /* Removed padding-top since header is now sticky */
}

/* Announcement Banner */
.announcement-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.announcement-content:hover {
    background: #f1f3f4;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-content:hover .arrow-icon {
    transform: translateX(2px);
}

.news-tag {
    background: #000;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-text {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.arrow-icon {
    font-size: 14px;
    color: #666;
    transition: transform 0.2s ease;
    margin-left: 4px;
}

/* Hero Section */
.hero {
    padding: 40px 24px 20px;
    text-align: center;
    background: #f9f1ea;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero CTA Link Styles */
.hero-cta-link {
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.hero-cta-link:hover {
    transform: translateY(-1px);
}

/* Client Logos (inline within hero) */
.client-logos-inline {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.logos-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, #f9f1ea 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.logos-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, #f9f1ea 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.logos-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header Image Section */
.header-image {
    padding: 0 24px 80px;
    background: #f9f1ea;
}

.image-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.header-video-wrapper {
    position: relative;
    width: 100%;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.header-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header-video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.header-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.header-play-button:hover {
    transform: scale(1.1);
}

.header-play-button svg {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Features Section */
.features-section {
    padding: 80px 24px;
    background: #f9f1ea;
}

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

.features-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.testimonial-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    background: #ffffff;
    border-color: #dee2e6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.testimonial-card-large {
    height: 100%;
}

.testimonial-column-double {
    height: 100%;
}

.testimonial-column-double .testimonial-card {
    flex: 1;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.3;
}

.testimonial-title {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 0;
}

.testimonial-avatar {
    flex-shrink: 0;
    margin-left: 16px;
}

.testimonial-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

/* New Testimonial Avatar with LinkedIn Hover */
.testimonial-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 16px;
    flex-shrink: 0;
}

.testimonial-avatar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-headshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.testimonial-linkedin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    color: #0077b5;
}

.testimonial-avatar-wrapper:hover .testimonial-headshot {
    opacity: 0;
}

.testimonial-avatar-wrapper:hover .testimonial-linkedin-icon {
    opacity: 1;
}

.testimonial-avatar-wrapper:hover .testimonial-avatar-link {
    background: rgba(0, 119, 181, 0.1);
}

/* Results Image */
.testimonial-results {
    margin-top: 24px;
}

.results-img {
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Testimonial Quote */
.testimonial-quote {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 24px 0;
    flex: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.company-logo img {
    height: 20px;
    width: auto;
    opacity: 0.7;
}

.read-more-btn {
    background: #000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.read-more-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Features Showcase Section */
.features-showcase {
    padding: 80px 24px;
    background: #f9f1ea;
}

.features-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-showcase-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.features-showcase-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 2 Column Grid */
.features-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* 3 Column Grid */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Feature Cards */
.feature-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: #ffffff;
    border-color: #dee2e6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.feature-image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.feature-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
}

/* Button styles removed - no longer needed */

/* Tech Scroll Section */
.tech-scroll {
    padding: 80px 24px;
    background: #f9f1ea;
}

.tech-scroll-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-scroll-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tech-scroll-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-scroll-markets {
    font-size: 16px;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tech-scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 25px 0;
    position: relative;
}

.tech-scroll-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px; /* Extend above container to accommodate hover animation */
    bottom: -10px; /* Extend below container to accommodate hover animation */
    width: 80px;
    background: linear-gradient(to right, #f9f1ea 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.tech-scroll-wrapper::after {
    content: '';
    position: absolute;
    right: 180px; /* Move to overlap with View All button */
    top: -10px; /* Extend above container to accommodate hover animation */
    bottom: -10px; /* Extend below container to accommodate hover animation */
    width: 100px; /* Wider to ensure full coverage */
    background: linear-gradient(to left, #f9f1ea 0%, transparent 100%);
    z-index: 1; /* Below View All button */
    pointer-events: none;
}

.tech-cards-container {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    animation: scroll-tech 20s linear infinite;
    margin-left: -30px; /* Move 30px further to the left */
    position: relative;
    z-index: 3;
}

.tech-cards-container:hover {
    animation-play-state: paused;
}

@keyframes scroll-tech {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    min-width: 200px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-card:hover {
    border-color: #dee2e6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    position: relative;
    z-index: 10;
}

.tech-logo {
    margin-bottom: 16px;
}

.tech-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.tech-info {
    text-align: center;
}

.tech-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.3;
}

.tech-location {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 0;
}

/* View All Card */
.view-all-link {
    text-decoration: none;
    color: inherit;
}

.view-all-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    min-width: 200px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
    position: sticky;
    right: 0;
    z-index: 5; /* Higher than fade overlay */
    box-shadow: -20px 0 20px #f9f1ea; /* Shadow to hide items behind rounded corners */
}

.view-all-card:hover {
    border-color: #dee2e6;
    box-shadow: -20px 0 20px #f9f1ea, 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.view-all-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-all-icon {
    font-size: 32px;
    color: #000;
    margin-bottom: 16px;
    transition: transform 0.2s ease;
}

.view-all-card:hover .view-all-icon {
    transform: translateX(4px);
}

.view-all-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.3;
}

.view-all-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 0;
}

/* Product Demo Section */
.product-demo {
    padding: 80px 24px;
    background: #f9f1ea;
}

.product-demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-content-wrapper {
    background: #fff9f4;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Video Column */
.demo-video-column {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 aspect ratio (square) */
    background: #000;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-duration {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Content Column */
.demo-content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-content {
    max-width: 500px;
}

.demo-tag {
    display: inline-block;
    background: #000;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.demo-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.demo-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.demo-cta-button {
    display: inline-block;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.demo-cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* API Ready Section */
.api-ready {
    position: relative;
    min-height: 700px; /* Increased height */
    background-image: url('../assets/n8nflow.png');
    background-size: 110%; /* Slightly larger for movement effect */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 140px 24px; /* Increased padding top and bottom */
    transition: background-position 0.3s ease;
}

.api-ready::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.api-ready-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.api-content {
    max-width: 600px;
    color: white;
}

.api-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.api-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.api-cta-link {
    text-decoration: none;
    display: inline-block;
    background: #ffffff;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.api-cta-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #000;
    text-decoration: none;
}

.api-cta-button {
    background: #ffffff;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.api-cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Ending Section */
.cta-ending {
    padding: 80px 24px;
    background: #f9f1ea;
}

.cta-ending-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content-wrapper {
    background: linear-gradient(135deg, #f4e4d1 0%, #e8c5a0 25%, #d4a574 50%, #c19a6b 75%, #b08d5c 100%);
    border-radius: 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Content Column */
.cta-content-column {
    padding: 60px 60px 60px 100px;
}

.cta-content {
    max-width: 500px;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.cta-ending-button {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-ending-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Image Column */
.cta-image-column {
    position: relative;
    height: 100%;
    min-height: 400px;
    padding-top: 60px;
}

.cta-image {
    position: absolute;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    border-top-left-radius: 24px;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
}

/* From Our Blog Section */
.blog-section {
    padding: 80px 24px;
    background: #f9f1ea;
}

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

.blog-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

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

.blog-card {
    background: #ffffff;
    border: 1px solid #f1f3f4;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    opacity: 0.9;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 2;
}

.tag-lead-gen {
    background: #10b981; /* Green */
}

.tag-lead-nurture {
    background: #3b82f6; /* Blue */
}

.tag-lead-convert {
    background: #f59e0b; /* Orange */
}

.tag-marketing {
    background: #8b5cf6; /* Purple */
}

.tag-sales {
    background: #ef4444; /* Red */
}

.tag-automation {
    background: #06b6d4; /* Cyan */
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-headline {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-link:hover {
    text-decoration: none;
    color: inherit;
}

.blog-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-protocol {
    background: #10b981; /* Green */
}

.tag-gravity {
    background: #3b82f6; /* Blue */
}

.tag-goldmine {
    background: #f59e0b; /* Orange */
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 24px 40px;
}

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

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-title-secondary {
    margin-top: 32px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 16px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #d1d5db;
}

.ai-badge {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    display: inline-block;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: #374151;
    margin-bottom: 40px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-text {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.social-link {
    color: #9ca3af;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    text-decoration: none;
}

.linkedin-icon {
    transition: opacity 0.3s ease;
    z-index: 2;
    position: relative;
}

.headshot-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-link-wrapper:hover .linkedin-icon {
    opacity: 0;
}

.social-link-wrapper:hover .headshot-img {
    opacity: 1;
}

.social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .logos-scroll {
        gap: 40px;
    }
    
    .features-title {
        font-size: 40px;
    }
    
    .features-subtitle {
        font-size: 18px;
    }
    
    .testimonials-grid {
        gap: 24px;
    }
    

    
    .tech-scroll-wrapper::after {
        right: 160px; /* Adjust for tablet */
        width: 80px;
    }
    
    .features-grid-2,
    .features-grid-3 {
        gap: 24px;
    }
    
    .tech-cards-container {
        margin-left: -24px; /* Adjust for tablet */
        mask: linear-gradient(to right, transparent 0, black 84px, black calc(100% - 204px), transparent calc(100% - 204px));
        -webkit-mask: linear-gradient(to right, transparent 0, black 84px, black calc(100% - 204px), transparent calc(100% - 204px));
    }
    
    .cta-content-wrapper {
        padding: 0;
        gap: 0;
    }
    
    .cta-content-column {
        padding: 40px 40px 40px 60px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    /* Mobile menu toggle styles moved to mobile-menu-standard.css */

    .login-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .header-social {
        display: none;
    }

    /* Mobile Navigation Overlay */
    /* Mobile navigation styles moved to mobile-menu-standard.css */

    .header-container {
        height: 64px;
    }

    .navigation {
        display: none;
    }

    .header-cta {
        gap: 8px;
    }
    
    .header-social {
        gap: 8px;
    }
    
    .header-social-link-wrapper {
        width: 33px;
        height: 33px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .main {
        /* Removed padding-top since header is now sticky */
    }
    
    .hero {
        padding: 60px 16px 20px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .client-logos-inline {
        margin-top: 32px;
    }
    
    .logos-scroll {
        gap: 30px;
    }
    
    .logo-item img {
        height: 32px;
    }
    
    .header-image {
        padding: 0 16px 60px;
    }
    
    .image-container {
        border-radius: 12px;
    }
    
    .announcement-content {
        padding: 6px 10px;
        margin-bottom: 20px;
    }
    
    .announcement-text {
        font-size: 12px;
    }
    
    .news-tag {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .arrow-icon {
        font-size: 12px;
    }
    
    .features-section {
        padding: 60px 16px;
    }
    
    .features-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .features-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-name {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .testimonial-title {
        font-size: 13px;
    }
    
    .testimonial-quote {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .testimonial-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .company-logo img {
        height: 16px;
    }
    
    .read-more-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .features-showcase {
        padding: 60px 16px;
    }
    
    .features-showcase-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .features-showcase-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .features-grid-2,
    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid-2 {
        margin-bottom: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 15px;
        margin-bottom: 0;
    }
    
    .feature-img {
        height: 160px;
    }
    
    /* Button styles removed - no longer needed */
    
    .tech-scroll {
        padding: 60px 16px;
    }
    
    .tech-scroll-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .tech-scroll-subtitle {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .tech-scroll-markets {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .tech-scroll-wrapper {
        gap: 16px;
        padding: 16px 0;
    }
    
    .tech-scroll-wrapper::before {
        width: 50px;
    }
    
    .tech-scroll-wrapper::after {
        width: 70px;
        right: 140px; /* Adjust for mobile */
    }
    
    .tech-cards-container {
        gap: 16px;
        margin-left: -20px; /* Adjust for mobile */
        mask: linear-gradient(to right, transparent 0, black 70px, black calc(100% - 184px), transparent calc(100% - 184px));
        -webkit-mask: linear-gradient(to right, transparent 0, black 70px, black calc(100% - 184px), transparent calc(100% - 184px));
    }
    

    
    .tech-card,
    .view-all-card {
        min-width: 160px;
        padding: 16px;
        height: 120px;
    }
    
    .tech-logo img {
        width: 50px;
        height: 50px;
    }
    
    .tech-name,
    .view-all-title {
        font-size: 15px;
    }
    
    .tech-location,
    .view-all-subtitle {
        font-size: 13px;
    }
    
    .view-all-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .product-demo {
        padding: 60px 16px;
    }
    
    .demo-content-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }
    
    .demo-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .demo-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .demo-tag {
        font-size: 9px;
        padding: 2px 5px;
        margin-bottom: 20px;
    }
    
    .demo-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .video-duration {
        top: 12px;
        left: 12px;
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .api-ready {
        min-height: 400px;
        padding: 60px 16px;
    }
    
    .api-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .api-description {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .api-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-content-column {
        padding: 32px 24px;
        order: 2;
    }
    
    .cta-image-column {
        order: 1;
        min-height: 250px;
        padding-top: 40px;
    }
    
    .cta-image {
        top: 40px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .cta-ending-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-info {
        gap: 24px;
    }
    
    .blog-title {
        font-size: 40px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .blog-headline {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .announcement-content {
        padding: 6px 8px;
        margin-bottom: 16px;
        gap: 6px;
    }
    
    .announcement-text {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .news-tag {
        font-size: 8px;
        padding: 2px 4px;
    }
    
    .arrow-icon {
        font-size: 11px;
    }
    
    .features-section {
        padding: 40px 16px;
    }
    
    .features-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .features-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-name {
        font-size: 15px;
        margin-bottom: 2px;
    }
    
    .testimonial-title {
        font-size: 12px;
    }
    
    .testimonial-quote {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .testimonial-avatar img {
        width: 36px;
        height: 36px;
    }
    
    .company-logo img {
        height: 14px;
    }
    
    .read-more-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .features-showcase {
        padding: 40px 16px;
    }
    
    .features-showcase-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .features-showcase-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .features-grid-2 {
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .feature-img {
        height: 140px;
    }
    
    /* Button styles removed - no longer needed */
    
    .tech-scroll {
        padding: 40px 16px;
    }
    
    .tech-scroll-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .tech-scroll-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .tech-scroll-markets {
        font-size: 13px;
        margin-bottom: 32px;
    }
    
    .tech-scroll-wrapper {
        gap: 12px;
        padding: 12px 0;
    }
    
    .tech-scroll-wrapper::before {
        width: 40px;
    }
    
    .tech-scroll-wrapper::after {
        width: 40px;
        right: 140px; /* Adjust for small mobile - exactly at View All card edge */
    }
    
    .tech-cards-container {
        gap: 12px;
        margin-left: -16px; /* Adjust for small mobile */
        mask: linear-gradient(to right, transparent 0, black 56px, black calc(100% - 164px), transparent calc(100% - 164px));
        -webkit-mask: linear-gradient(to right, transparent 0, black 56px, black calc(100% - 164px), transparent calc(100% - 164px));
    }
    

    
    .tech-card,
    .view-all-card {
        min-width: 140px;
        padding: 14px;
        height: 100px;
    }
    
    .tech-logo img {
        width: 44px;
        height: 44px;
    }
    
    .tech-name,
    .view-all-title {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .tech-location,
    .view-all-subtitle {
        font-size: 12px;
    }
    
    .view-all-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .product-demo {
        padding: 40px 16px;
    }
    
    .demo-content-wrapper {
        padding: 24px;
        gap: 24px;
        border-radius: 16px;
    }
    
    .demo-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .demo-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .demo-tag {
        font-size: 8px;
        padding: 2px 4px;
        margin-bottom: 16px;
    }
    
    .demo-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .video-container {
        border-radius: 12px;
    }
    
    .video-duration {
        top: 10px;
        left: 10px;
        font-size: 10px;
        padding: 2px 5px;
    }
    
    .play-button svg {
        width: 44px;
        height: 44px;
    }
    
    .footer {
        padding: 40px 16px 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .footer-link {
        font-size: 15px;
    }
    
    .footer-list li {
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-company-info {
        text-align: center;
    }
    
    .blog-section {
        padding: 60px 16px;
    }
    
    .blog-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-thumbnail {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-headline {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .resource-card {
        max-width: 100%;
    }
}

/* Resources Page Styles */
/* Consolidated with the one below */

.search-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #666;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

/* Categories Section */
.categories-section {
    padding: 80px 24px;
    background: #f9f1ea;
}

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

.categories-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.category-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.category-count {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* Featured Resources */
.featured-resources {
    padding: 80px 24px 120px 24px;
    background: #f9f1ea;
}

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

.featured-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.featured-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    background: #ffffff;
    border: 1px solid #f1f3f4;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: 0 auto;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.resource-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.resource-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-img {
    transform: scale(1.05);
}

.resource-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 2;
}

.resource-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 12px;
}

.resource-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resource-type {
    font-size: 12px;
    color: #000;
    font-weight: 600;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.resource-time {
    font-size: 12px;
    color: #666;
}

/* Load More */
.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 24px;
    background: #f9f1ea;
}

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

.newsletter-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.newsletter-description {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    border-color: #000;
}

.newsletter-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Newsletter CTA Button */
.newsletter-cta-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.newsletter-cta-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Resources Search */
.resources-search {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 40px;
}

/* Removed duplicate - keeping the one above */

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #f8f9fa;
    color: #333;
}

/* AI Helper Section */
.ai-helper-section {
    margin-top: 24px;
    text-align: center;
}

.ai-helper-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.chat-toggle-btn {
    background: #000;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    height: 50px;
    white-space: nowrap;
}

.chat-toggle-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* AI Chat Section */
.ai-chat-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ai-chat-section .chat-container {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    height: 70vh;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.chat-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.chat-close-btn:hover {
    background: #e9ecef;
    color: #000;
}

.ai-chat-section .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 60px 24px 24px;
}

.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar .avatar-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.message-content {
    flex: 1;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: #000;
    color: white;
    border-color: #000;
}

.user-message .message-avatar {
    background: #000;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.ai-chat-section .chat-input-container {
    padding: 16px 24px;
    border-top: 1px solid #e9ecef;
}

.ai-chat-section .chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 8px 12px;
}

.ai-chat-section .chat-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    padding: 8px 0;
}

.chat-send-btn {
    background: #000;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn:hover {
    background: #333;
}

/* Resource Button */
.resource-btn {
    background: #000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.resource-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Search Results Count */
.search-results-count {
    text-align: center;
    margin-top: 0; /* Remove extra margin since we have gap in parent */
}

.results-text {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Newsletter Full Width */
.newsletter-full-width {
    background: #f0e6d6 !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 100px 0;
    margin-top: 40px;
}

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

/* ===== ABOUT PAGE STYLES ===== */

/* Mobile Menu Styles for About Page */
/* Mobile menu styles moved to mobile-menu-standard.css for consistency across all pages */

/* Centered Images in Our Story Section */
.chapter-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.chapter-toddler-img,
.chapter-school-img,
.chapter-lasse1-img,
.chapter-lasse2-img,
.chapter-automation-img {
    display: block;
    margin: 0 auto;
}

/* About Hero Section */
.about-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f9f1ea 0%, #f0e6d6 100%);
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-content {
    padding-right: 40px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.about-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.about-hero-description p {
    margin-bottom: 1.5rem;
}

.about-hero-description strong {
    color: #000;
    font-weight: 600;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-founder-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.founder-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
}

.founder-arrow {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    transform: rotate(-45deg);
}

.founder-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.founder-name {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-title {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Our Story Section */
.our-story {
    padding: 120px 0;
    background: #fff;
}

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

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.story-chapter {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.story-chapter:last-child {
    border-bottom: none;
}

.chapter-number {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    opacity: 0.1;
    min-width: 120px;
    text-align: center;
}

.chapter-content {
    max-width: 600px;
}

.chapter-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.chapter-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.chapter-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    background: #f9f1ea;
    border-radius: 50%;
}

.chapter-images-container {
    position: relative;
    width: 280px;
    height: 280px;
}

.chapter-toddler-img {
    position: absolute;
    top: 60px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.chapter-school-img {
    position: absolute;
    bottom: 60px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.chapter-automation-img {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.chapter-lasse1-img {
    position: absolute;
    top: 60px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.chapter-lasse2-img {
    position: absolute;
    bottom: 60px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
    background: #f9f1ea;
    border-radius: 20px;
}

.mission-quote {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-style: italic;
}

.mission-cite {
    font-size: 1.125rem;
    color: #666;
    font-weight: 500;
}

/* Core Values Section */
.core-values {
    padding: 120px 0;
    background: #f9f1ea;
}

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

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.values-subtitle {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-description {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 64px;
    height: 64px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: #fff;
}

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

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Responsive team grid for medium screens */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

.team-member-card {
    text-align: center;
    background: #f9f1ea;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.team-member-image {
    position: relative;
    margin-bottom: 24px;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.member-placeholder {
    width: 150px;
    height: 150px;
    background: #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin: 0 auto 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.member-linkedin {
    width: 40px;
    height: 40px;
    background: #0077b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    color: white;
    text-decoration: none;
}

.member-social:hover .member-linkedin {
    background: #005885;
}

.team-member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Open Positions Section */
.open-positions {
    padding: 120px 0;
    background-image: url('/assets/team.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Parallax effect on larger screens */
@media (min-width: 768px) {
    .open-positions {
        background-attachment: fixed;
    }
}

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

.positions-header {
    text-align: center;
    margin-bottom: 80px;
}

.positions-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.positions-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.positions-content {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}



.positions-text {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.positions-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
}

.positions-cta {
    display: inline-block;
    background: white;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.positions-cta:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-hero-content {
        padding-right: 0;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-founder-img {
        width: 250px;
        height: 250px;
    }

    .founder-overlay {
        bottom: -15px;
        right: -15px;
        padding: 10px 12px;
    }

    .founder-arrow {
        font-size: 16px;
    }

    .founder-name {
        font-size: 12px;
    }

    .founder-title {
        font-size: 11px;
    }

    .story-title,
    .values-title,
    .team-title,
    .positions-title {
        font-size: 2rem;
    }

    .story-chapter {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .chapter-number {
        min-width: auto;
        font-size: 3rem;
    }

    .chapter-image {
        order: -1;
        width: 80px;
        height: 80px;
    }

    .chapter-images-container {
        width: 200px;
        height: 240px;
    }

    .chapter-toddler-img {
        position: absolute;
        top: 50px;
        left: -50px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

    .chapter-school-img {
        position: absolute;
        bottom: 50px;
        right: -30px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

    .chapter-automation-img {
        width: 120px;
        height: 120px;
        border-radius: 16px;
    }

    .chapter-lasse1-img {
        position: absolute;
        top: 50px;
        left: -50px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

    .chapter-lasse2-img {
        position: absolute;
        bottom: 50px;
        right: -30px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

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

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

    .positions-content {
        min-height: 300px;
        padding: 1rem;
    }

    .positions-text {
        padding: 1.5rem;
        max-width: 95%;
    }

    .positions-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .our-story,
    .core-values,
    .team-section,
    .open-positions {
        padding: 80px 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .story-timeline {
        gap: 40px;
    }

    .mission-quote {
        font-size: 1.25rem;
    }

    .values-grid,
    .team-grid {
        gap: 30px;
    }

    .value-card,
    .team-member-card {
        padding: 30px;
    }

    .positions-content {
        min-height: 250px;
        padding: 0.75rem;
    }

    .positions-text {
        padding: 1.25rem;
        max-width: 100%;
    }

    .positions-description {
        font-size: 0.95rem;
    }
}

/* Newsletter Modal Styles */
.newsletter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.newsletter-modal-overlay.active {
    display: flex;
}

.newsletter-modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.newsletter-modal-overlay.active .newsletter-modal {
    transform: scale(1);
    opacity: 1;
}

.newsletter-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 0;
    margin-bottom: 24px;
}

.newsletter-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.newsletter-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.newsletter-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.newsletter-modal-content {
    padding: 0 32px 32px;
}

.newsletter-modal-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-form-group {
    display: flex;
    flex-direction: column;
}

.newsletter-input {
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.newsletter-input:valid {
    border-color: #10b981;
}

.newsletter-submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.newsletter-submit-btn:hover:not(:disabled) {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-btn-text {
    transition: opacity 0.2s ease;
}

.newsletter-loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: newsletter-spin 1s linear infinite;
}

@keyframes newsletter-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-success {
    text-align: center;
    padding: 20px 0;
}

.newsletter-success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.newsletter-checkmark {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: newsletter-checkmark-bounce 0.6s ease;
}

.newsletter-checkmark svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 3;
    animation: newsletter-checkmark-draw 0.8s ease 0.2s both;
}

@keyframes newsletter-checkmark-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes newsletter-checkmark-draw {
    0% {
        stroke-dasharray: 0, 100;
    }
    100% {
        stroke-dasharray: 100, 100;
    }
}

.newsletter-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
}

.newsletter-success-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Mobile Responsive Styles */

/* Tablet and Mobile Header Improvements */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 16px;
    }

    .navigation {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .nav-list {
        gap: 32px;
        justify-content: center;
    }

    /* Better spacing for navigation items */
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }

    /* Improved hero section on tablet */
    .hero {
        padding: 50px 24px 30px;
    }

    .hero-container {
        max-width: 700px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .hero-cta {
        padding: 15px 30px;
        font-size: 15px;
    }

    /* Better client logos spacing */
    .client-logos-inline {
        margin-top: 50px;
    }

    .logos-scroll {
        gap: 35px;
    }

    .logo-item img {
        height: 36px;
    }

    /* Features section improvements */
    .features-section {
        padding: 70px 24px;
    }

    .features-title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .features-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    /* Testimonials grid adjustments */
    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-name {
        font-size: 17px;
    }

    .testimonial-title {
        font-size: 13px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    /* Tech scroll improvements */
    .tech-scroll {
        padding: 70px 24px;
    }

    .tech-scroll-title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .tech-scroll-subtitle {
        font-size: 16px;
    }

    .tech-scroll-markets {
        font-size: 15px;
        margin-bottom: 50px;
    }

    /* Product demo improvements */
    .product-demo {
        padding: 70px 24px;
    }

    .demo-content-wrapper {
        padding: 50px;
        gap: 50px;
    }

    .demo-title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .demo-description {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .demo-cta-button {
        padding: 13px 26px;
        font-size: 15px;
    }

    /* About page tablet responsive */
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-hero-content {
        padding-right: 0;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-founder-img {
        width: 280px;
        height: 280px;
    }

    .founder-overlay {
        bottom: -18px;
        right: -18px;
    }

    .story-title,
    .values-title,
    .team-title,
    .positions-title {
        font-size: 2.5rem;
    }

    .story-chapter {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .chapter-number {
        min-width: auto;
        font-size: 3rem;
    }

    .chapter-image {
        order: -1;
        width: 80px;
        height: 80px;
    }

    .chapter-images-container {
        width: 200px;
        height: 240px;
    }

    .chapter-toddler-img,
    .chapter-school-img,
    .chapter-lasse1-img,
    .chapter-lasse2-img {
        position: absolute;
        top: 50px;
        left: -50px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

    .chapter-school-img,
    .chapter-lasse2-img {
        top: auto;
        bottom: 50px;
        left: auto;
        right: -30px;
    }

    .chapter-automation-img {
        width: 120px;
        height: 120px;
        border-radius: 16px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .positions-content {
        min-height: 350px;
        padding: 1.5rem;
    }

    .positions-text {
        padding: 2rem;
        max-width: 80%;
    }

    .positions-description {
        font-size: 1.125rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header improvements */
    .header-container {
        height: 64px;
        padding: 0 20px;
        justify-content: space-between;
    }

    /* Show mobile menu toggle on mobile */
    /* Mobile menu toggle display handled in mobile-menu-standard.css */

    /* Move logo further left on mobile */
    .logo {
        order: 1;
        margin-right: auto;
    }

    /* Hide navigation on mobile */
    .navigation {
        display: none;
    }

    /* Hide LinkedIn headshots on mobile */
    .header-social-link-wrapper {
        display: none;
    }

    /* Move CTA button further right on mobile */
    .header-cta {
        order: 3;
        margin-left: auto;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .header-cta {
        gap: 8px;
    }

    .header-social {
        gap: 8px;
    }

    .header-social-link-wrapper {
        width: 33px;
        height: 33px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Hero section mobile */
    .hero {
        padding: 60px 20px 20px;
        text-align: center;
    }

    .hero-container {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Client logos mobile */
    .client-logos-inline {
        margin-top: 40px;
    }

    .logos-container {
        max-width: 100%;
    }

    .logos-scroll {
        gap: 30px;
        justify-content: center;
    }

    .logo-item img {
        height: 32px;
    }

    /* Header image section */
    .header-image {
        padding: 0 20px 60px;
    }

    .image-container {
        border-radius: 12px;
    }

    /* Announcement banner mobile */
    .announcement-content {
        padding: 6px 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .announcement-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .news-tag {
        font-size: 9px;
        padding: 2px 5px;
    }

    .arrow-icon {
        font-size: 12px;
    }

    /* Features section mobile */
    .features-section {
        padding: 60px 20px;
    }

    .features-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .features-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-name {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .testimonial-title {
        font-size: 13px;
    }

    .testimonial-quote {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .testimonial-avatar img {
        width: 40px;
        height: 40px;
    }

    /* Results image mobile */
    .testimonial-results {
        margin-top: 20px;
    }

    .results-img {
        width: 60%;
        margin: 0 auto;
    }

    /* Features showcase mobile */
    .features-showcase {
        padding: 60px 20px;
    }

    .features-showcase-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .features-showcase-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .features-grid-2,
    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-grid-2 {
        margin-bottom: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .feature-img {
        height: 160px;
    }

    /* Tech scroll mobile */
    .tech-scroll {
        padding: 60px 20px;
    }

    .tech-scroll-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .tech-scroll-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .tech-scroll-markets {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .tech-scroll-wrapper {
        gap: 16px;
        padding: 16px 0;
    }

    .tech-scroll-wrapper::before {
        width: 50px;
    }

    .tech-scroll-wrapper::after {
        width: 70px;
        right: 140px;
    }

    .tech-cards-container {
        gap: 16px;
        margin-left: -20px;
        mask: linear-gradient(to right, transparent 0, black 70px, black calc(100% - 184px), transparent calc(100% - 184px));
        -webkit-mask: linear-gradient(to right, transparent 0, black 70px, black calc(100% - 184px), transparent calc(100% - 184px));
    }

    .tech-card,
    .view-all-card {
        min-width: 160px;
        padding: 16px;
        height: 120px;
    }

    .tech-logo img {
        width: 50px;
        height: 50px;
    }

    .tech-name,
    .view-all-title {
        font-size: 15px;
    }

    .tech-location,
    .view-all-subtitle {
        font-size: 13px;
    }

    .view-all-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    /* Product demo mobile */
    .product-demo {
        padding: 60px 20px;
    }

    .demo-content-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
        border-radius: 16px;
    }

    .demo-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .demo-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .demo-tag {
        font-size: 9px;
        padding: 2px 5px;
        margin-bottom: 16px;
    }

    .demo-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .video-duration {
        top: 12px;
        left: 12px;
        font-size: 11px;
        padding: 3px 6px;
    }

    .play-button svg {
        width: 50px;
        height: 50px;
    }

    /* API ready section mobile */
    .api-ready {
        min-height: 400px;
        padding: 60px 20px;
    }

    .api-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .api-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .api-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* CTA ending section mobile */
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content-column {
        padding: 32px 24px;
        order: 2;
    }

    .cta-image-column {
        order: 1;
        min-height: 250px;
        padding-top: 40px;
    }

    .cta-image {
        top: 40px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .cta-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .cta-ending-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Footer mobile */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-info {
        gap: 24px;
    }

    .blog-title {
        font-size: 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-headline {
        font-size: 16px;
    }

    /* About page mobile styles */
    .about-hero {
        padding: 100px 0 80px;
    }

    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-hero-content {
        padding-right: 0;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-founder-img {
        width: 250px;
        height: 250px;
    }

    .founder-overlay {
        bottom: -15px;
        right: -15px;
        padding: 10px 12px;
    }

    .founder-arrow {
        font-size: 16px;
    }

    .founder-name {
        font-size: 12px;
    }

    .founder-title {
        font-size: 11px;
    }

    .our-story,
    .core-values,
    .team-section,
    .open-positions {
        padding: 80px 0;
    }

    .story-title,
    .values-title,
    .team-title,
    .positions-title {
        font-size: 2rem;
    }

    .story-timeline {
        gap: 40px;
    }

    .story-chapter {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .chapter-number {
        min-width: auto;
        font-size: 3rem;
    }

    .chapter-image {
        order: -1;
        width: 80px;
        height: 80px;
    }

    .chapter-images-container {
        width: 200px;
        height: 240px;
    }

    .chapter-toddler-img {
        position: absolute;
        top: 50px;
        left: -50px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

    .chapter-school-img {
        position: absolute;
        bottom: 50px;
        right: -30px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

    .chapter-automation-img {
        width: 120px;
        height: 120px;
        border-radius: 16px;
    }

    .chapter-lasse1-img {
        position: absolute;
        top: 50px;
        left: -50px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

    .chapter-lasse2-img {
        position: absolute;
        bottom: 50px;
        right: -30px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

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

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

    .team-member-card {
        padding: 30px;
    }

    .member-photo {
        width: 140px;
        height: 140px;
        margin-bottom: 18px;
    }

    .team-member-info h3 {
        font-size: 1.25rem;
    }

    .member-role {
        font-size: 0.95rem;
    }

    .member-description {
        font-size: 0.95rem;
    }

    .positions-content {
        min-height: 300px;
        padding: 1rem;
    }

    .positions-text {
        padding: 1.5rem;
        max-width: 95%;
    }

    .positions-description {
        font-size: 1rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    /* Header improvements */
    .header-container {
        padding: 0 16px;
    }

    /* Mobile menu toggle on small screens */
    /* Mobile menu toggle padding handled in mobile-menu-standard.css */

    /* Hide LinkedIn headshots on small mobile */
    .header-social-link-wrapper {
        display: none;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Hero section small mobile */
    .hero {
        padding: 50px 16px 15px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Client logos small mobile */
    .client-logos-inline {
        margin-top: 35px;
    }

    .logos-scroll {
        gap: 25px;
    }

    .logo-item img {
        height: 28px;
    }

    /* Announcement banner small mobile */
    .announcement-content {
        padding: 6px 8px;
        margin-bottom: 16px;
        gap: 6px;
    }

    .announcement-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .news-tag {
        font-size: 8px;
        padding: 2px 4px;
    }

    .arrow-icon {
        font-size: 11px;
    }

    /* Features section small mobile */
    .features-section {
        padding: 40px 16px;
    }

    .features-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .features-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    /* Testimonials small mobile */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-name {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .testimonial-title {
        font-size: 12px;
    }

    .testimonial-quote {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .testimonial-avatar img {
        width: 36px;
        height: 36px;
    }

    .results-img {
        width: 70%;
    }

    /* Features showcase small mobile */
    .features-showcase {
        padding: 40px 16px;
    }

    .features-showcase-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .features-showcase-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .features-grid-2 {
        margin-bottom: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .feature-img {
        height: 140px;
    }

    /* Tech scroll small mobile */
    .tech-scroll {
        padding: 40px 16px;
    }

    .tech-scroll-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .tech-scroll-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .tech-scroll-markets {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .tech-scroll-wrapper {
        gap: 12px;
        padding: 12px 0;
    }

    .tech-scroll-wrapper::before {
        width: 40px;
    }

    .tech-scroll-wrapper::after {
        width: 40px;
        right: 140px;
    }

    .tech-cards-container {
        gap: 12px;
        margin-left: -16px;
        mask: linear-gradient(to right, transparent 0, black 56px, black calc(100% - 164px), transparent calc(100% - 164px));
        -webkit-mask: linear-gradient(to right, transparent 0, black 56px, black calc(100% - 164px), transparent calc(100% - 164px));
    }

    .tech-card,
    .view-all-card {
        min-width: 140px;
        padding: 14px;
        height: 100px;
    }

    .tech-logo img {
        width: 44px;
        height: 44px;
    }

    .tech-name,
    .view-all-title {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .tech-location,
    .view-all-subtitle {
        font-size: 12px;
    }

    .view-all-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    /* Product demo small mobile */
    .product-demo {
        padding: 40px 16px;
    }

    .demo-content-wrapper {
        padding: 24px;
        gap: 24px;
        border-radius: 16px;
    }

    .demo-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .demo-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .demo-tag {
        font-size: 8px;
        padding: 2px 4px;
        margin-bottom: 16px;
    }

    .demo-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .video-container {
        border-radius: 12px;
    }

    .video-duration {
        top: 10px;
        left: 10px;
        font-size: 10px;
        padding: 2px 5px;
    }

    .play-button svg {
        width: 44px;
        height: 44px;
    }

    /* API ready section small mobile */
    .api-ready {
        min-height: 350px;
        padding: 50px 16px;
    }

    .api-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .api-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .api-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* CTA ending section small mobile */
    .cta-content-column {
        padding: 24px 20px;
    }

    .cta-image-column {
        min-height: 200px;
        padding-top: 32px;
    }

    .cta-image {
        top: 32px;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-ending-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Footer small mobile */
    .footer {
        padding: 40px 16px 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-list li {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 16px;
    }

    .footer-company-info {
        text-align: center;
    }

    .blog-section {
        padding: 60px 16px;
    }

    .blog-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-thumbnail {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-headline {
        font-size: 16px;
    }

    /* About page small mobile styles */
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .our-story,
    .core-values,
    .team-section,
    .open-positions {
        padding: 60px 0;
    }

    .story-timeline {
        gap: 30px;
    }

    .mission-quote {
        font-size: 1.25rem;
    }

    .values-grid,
    .team-grid {
        gap: 30px;
    }

    .value-card,
    .team-member-card {
        padding: 30px;
    }

    .positions-content {
        min-height: 250px;
        padding: 0.75rem;
    }

    .positions-text {
        padding: 1.25rem;
        max-width: 100%;
    }

    .positions-description {
        font-size: 0.95rem;
    }

    /* Mobile menu small screen adjustments */
    /* Mobile nav responsive styles handled in mobile-menu-standard.css */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .newsletter-modal {
        width: 95%;
        margin: 20px;
    }

    .newsletter-modal-header,
    .newsletter-modal-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .newsletter-modal-title {
        font-size: 20px;
    }
}
