/* CapChur Color Palette */
:root {
    --primary-green: #00bf63;
    --dark-green: #00994e;
    --soft-green: #e6f8f0;
    --muted-border-green: #b3e6cf;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --subtle-gray: #e0e0e0;
    --text-black: #000000;
}

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

/* Text Selection Highlight - CapChur Green */
::selection {
    background: var(--primary-green);
    color: var(--pure-white);
}

::-moz-selection {
    background: var(--primary-green);
    color: var(--pure-white);
}

body {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    line-height: 1.5;
    color: var(--text-black);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    margin-right: 2rem;
}

.nav-brand a {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.nav-brand a:hover {
    transform: scale(1.05);
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.login-btn {
    background: var(--primary-green) !important;
    color: var(--pure-white) !important;
    padding: 10px 18px !important;
    border-radius: 6px !important;
    margin-left: 0.5rem !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

.login-btn:hover {
    background: var(--dark-green) !important;
    color: var(--pure-white) !important;
    transform: translateY(-1px) !important;
}

/* Hero Section */
.hero {
    padding: 0;
    background: var(--primary-green);
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px; /* Account for fixed navbar */
    z-index: 1;
}

.hero-learn-more {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--pure-white);
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.hero-learn-more:hover {
    transform: translateX(-50%) translateY(-5px);
}

.hero-learn-more i {
    font-size: 1.2rem;
    animation: bounce-down 2s ease-in-out infinite;
}

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

/* Section Scroll Links */
.section-scroll-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: var(--text-black);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.section-scroll-link:hover {
    transform: translateX(-50%) translateY(-3px);
}

.section-scroll-link i {
    animation: bounce-down 2s ease-in-out infinite;
}

.section-scroll-link-light {
    color: var(--pure-white);
}

.hero-image-container {
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-main-image {
    width: 70%;
    height: calc(100vh - 80px);
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
}

/* Ensure picture element is responsive */
.hero-image-container picture {
    width: 100%;
    display: block;
}

.hero-image-container picture img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--pure-white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 99, 0.3);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #9ca3af;
}

.hero .placeholder-image {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

/* What CapChur Does Section */
.what-capchur-does-section {
    background: url('images/QTpic.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 40px 0;
    margin-top: 0;
    position: relative;
    overflow: visible;
    z-index: 2;
    scroll-margin-top: 80px;
    height: calc(100vh - 80px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.what-capchur-does-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

.what-capchur-does-section > .container {
    position: relative;
    z-index: 1;
}

.what-capchur-does-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.what-capchur-does-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    order: 1;
}

.what-capchur-does-image::before {
    display: none;
}

.multi-focal-image {
    width: 280%;
    max-width: none;
    height: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 60px 150px rgba(0, 0, 0, 0.3));
    margin-left: -120%;
    margin-top: -15%;
    transform-origin: center center;
}

.multi-focal-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 70px 170px rgba(0, 0, 0, 0.35));
}

.what-does-title {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: left;
}

.what-does-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    margin-top: 1rem;
    border-radius: 2px;
}

.what-capchur-does-section .what-capchur-does-content {
    margin-top: 0;
}

.what-capchur-does-text {
    padding-left: 100px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    order: 2;
    max-width: 1000px;
    margin-left: auto;
}

.what-capchur-does-text .what-does-title {
    width: 100%;
    margin-bottom: 1.5rem;
}

.what-capchur-does-text .what-does-description {
    width: 100%;
}

/* Three Step Diagram */
.three-step-diagram {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.three-step-diagram .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--muted-border-green);
    border-radius: 12px;
}

.three-step-diagram .step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
    transition: all 0.3s ease;
}

.three-step-diagram .step-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 99, 0.4);
}

.three-step-diagram .step-icon i {
    color: var(--pure-white);
    font-size: 1.4rem;
}

.three-step-diagram .step-label {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-black);
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
}

.three-step-diagram .step-arrow {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin: 0 0.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .three-step-diagram {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .three-step-diagram .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .three-step-diagram .step-icon i {
        font-size: 1.2rem;
    }
    
    .three-step-diagram .step-label {
        font-size: 0.85rem;
    }
}

.what-does-description p {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.what-does-description p:last-child {
    margin-bottom: 0;
}

.what-does-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.what-does-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--text-black);
}

.what-does-buttons .btn-secondary:hover {
    background: var(--primary-green);
    color: var(--pure-white);
}

/* Responsive - What CapChur Does */
@media (max-width: 1024px) {
    .what-capchur-does-content {
        gap: 3rem;
    }
    
    .what-capchur-does-text h2 {
        font-size: 2.75rem;
    }
    
    .what-does-description p {
        font-size: 1.2rem;
    }
    
    .what-does-description p:first-child {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .what-capchur-does-section {
        padding: 80px 0;
    }
    
    .what-does-title {
        margin-bottom: 3rem;
    }
    
    .what-capchur-does-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 15px;
    }
    
    .what-capchur-does-image {
        order: 1;
        justify-self: center;
    }
    
    .multi-focal-image {
        max-width: 400px;
    }
    
    .what-capchur-does-text {
        order: 2;
        padding-left: 0;
        text-align: center;
    }
    
    .what-capchur-does-text h2 {
        font-size: 2.5rem;
    }
    
    .what-capchur-does-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .what-does-description p {
        font-size: 1.15rem;
    }
    
    .what-does-description p:first-child {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .what-capchur-does-section {
        padding: 60px 0;
    }
    
    .what-capchur-does-text h2 {
        font-size: 2rem;
    }
    
    .multi-focal-image {
        max-width: 320px;
    }
    
    .what-does-description p {
        font-size: 1.05rem;
    }
    
    .what-does-description p:first-child {
        font-size: 1.15rem;
    }
}

/* AI Editing Section - Modern Dark Theme */
.ai-editing {
    background: url('images/motherboardbg.svg') no-repeat center center;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
    height: calc(100vh - 80px);
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    scroll-margin-top: 80px;
}

.ai-editing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    pointer-events: none;
    z-index: 0;
}

.ai-editing .container {
    position: relative;
    z-index: 1;
}

.ai-editing-intro {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ai-intro-title {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ai-intro-text {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.ai-editing-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ai-editing-image {
    position: relative;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-editing-image::before {
    display: none;
}

.ai-image-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap;
    animation: btn-pulse 2s ease-in-out infinite;
}

.ai-image-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 191, 99, 0.4);
    animation: none;
}

@keyframes btn-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.03);
        box-shadow: 0 6px 20px rgba(0, 191, 99, 0.5);
    }
}

.ai-editor-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.ai-editing-text {
    padding: 0 1rem;
    order: 1;
}

.ai-feature {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 191, 99, 0.3);
}

.ai-feature.active {
    border-color: rgba(0, 191, 99, 0.4);
}

.ai-feature-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.ai-feature-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ai-feature-header h3 {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.collapse-icon {
    color: var(--primary-green);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.ai-feature.active .collapse-icon {
    transform: rotate(180deg);
}

.ai-feature-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding: 0 2rem;
}

.ai-feature.active .ai-feature-content {
    max-height: 500px;
    opacity: 1;
    padding: 0 2rem 2rem 2rem;
}

.ai-feature-content h4 {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.ai-feature-content p {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin: 0;
    font-weight: 400;
}

.ai-feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-feature-content li {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 400;
}

.ai-feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.ai-feature-content li:last-child {
    margin-bottom: 0;
}

/* What CapChur Does Section */
.what-capchur-does {
    background: var(--pure-white);
    padding: 0;
    position: relative;
    z-index: 1;
}

.section-layout {
    display: flex;
    height: calc(100vh - 80px);
    min-height: 600px;
}

.what-capchur-does .section-title {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--text-black);
    margin: 3.236rem 0 4.236rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: center;
    position: relative;
    left: 250px;
}

.left-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.left-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    position: relative;
    z-index: 10;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.618rem 1.618rem 0 1.618rem;
    position: relative;
    z-index: 5;
    margin-left: -100px;
}

.right-content .container {
    max-width: none;
    padding: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.three-column-content {
    display: flex;
    gap: 0.618rem;
    align-items: stretch;
    margin-bottom: 0;
    width: 100%;
    flex: 1;
}

.icons-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    justify-content: space-evenly;
    padding-bottom: 180px;
}

.timeline-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1.618rem;
    height: 100%;
    align-items: stretch;
}

.circles-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    flex-shrink: 0;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 1.618rem;
    text-align: left;
    width: 100%;
    padding: 0.618rem 0;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-arrow i {
    animation: bounce-arrow 2s ease-in-out infinite;
}

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

.text-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
    max-width: 600px;
    justify-content: space-evenly;
    padding-top: 0;
    margin-right: auto;
    margin-left: 100px;
}

.text-item {
    text-align: left;
    padding: 2.618rem 3.236rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(0, 191, 99, 0.2);
    border-left: 4px solid var(--primary-green);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.text-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.text-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.text-item:hover {
    transform: translateX(-8px) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 191, 99, 0.25),
                0 0 0 1px rgba(0, 191, 99, 0.3);
    border-left-color: var(--primary-green);
}

.text-item:hover::before {
    opacity: 1;
}

.text-item:hover::after {
    opacity: 0.15;
}

.text-item p {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e8e8e8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding-right: 0;
    position: relative;
    z-index: 1;
}

.text-item:first-child {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
}

.text-item:first-child p {
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.618rem;
    padding: 1.618rem 2.618rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--pure-white);
    text-decoration: none;
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
    transition: all 0.3s ease;
    margin-top: 1.618rem;
    align-self: center;
    border: 2px solid transparent;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 99, 0.5);
    border-color: var(--pure-white);
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.icons-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 99, 0.4);
}

.icon-circle i {
    color: var(--pure-white);
    font-size: 2rem;
}

.icon-text-content {
    flex: 0 1 auto;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.icon-text-content h4 {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-black);
    margin: 0;
    line-height: 1.3;
    padding-top: 0;
    padding-bottom: 0.25rem;
}

.icon-text-content p {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #4a5568;
    margin: 0;
    padding-top: 1rem;
}

.description-text {
    margin-top: 2rem;
}

.description-text p {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.description-text p:last-child {
    margin-bottom: 0;
}

.description-text p:first-child {
    font-weight: 500;
    color: var(--text-black);
}

/* Responsive Design for What CapChur Does */
@media (max-width: 1763px) {
    .what-capchur-does {
        padding: 60px 20px;
    }
    
    .section-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: auto;
        min-height: auto;
        align-items: center;
    }
    
    /* Image centered at top */
    .left-image {
        width: fit-content;
        display: flex;
        justify-content: center;
    }
    
    .left-image img {
        max-height: 400px;
        width: auto;
        display: block;
        content: url('images/slant1.svg');
    }
    
    /* Content below - centered */
    .right-content {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0;
    }
    
    .right-content .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: auto;
        padding: 0;
        width: 100%;
        max-width: 900px;
        align-items: center;
        margin: 0 auto;
    }
    
    /* Show title and center it */
    .right-content .container .section-title {
        margin: 0 0 1rem 0;
        font-size: 3rem;
        line-height: 1.2;
        text-align: center;
        display: block;
    }
    
    .what-capchur-does .section-title::after {
        display: none;
    }
    
    .three-column-content {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        align-items: center;
    }
    
    .icons-column {
        padding-bottom: 0;
        max-width: 800px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .timeline-container {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 600px;
    }
    
    .circles-timeline {
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        gap: 0;
        align-items: flex-start;
        padding-left: 10%;
    }
    
    .icon-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 600px;
        padding: 0.5rem 0;
        justify-content: flex-start;
    }
    
    .icon-text-content {
        display: flex;
        flex: 1;
        padding-top: 0;
    }
    
    .timeline-arrow {
        display: flex;
        align-self: flex-start;
        justify-content: flex-start;
        padding: 0.75rem 0;
        margin-left: 0;
        width: auto;
        padding-left: 35px;
    }
    
    .timeline-arrow i {
        transform: rotate(0deg);
    }
    
    .text-column {
        max-width: 800px;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .what-capchur-does .section-title {
        font-size: 2.5rem !important;
        margin-bottom: 0 !important;
    }
    
    .section-layout {
        display: flex !important;
        flex-direction: column !important;
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 2rem;
    }
    
    .left-image {
        width: fit-content !important;
    }
    
    .left-image img {
        max-height: 300px !important;
        content: url('images/slant1.svg');
    }
    
    .right-content {
        padding: 0 !important;
        display: block !important;
    }
    
    .right-content .container {
        padding: 0 1rem !important;
        height: auto;
        max-width: 100% !important;
    }
    
    .right-content .container .section-title {
        display: block !important;
        grid-column: unset !important;
        grid-row: unset !important;
        margin-bottom: 1.5rem !important;
    }
    
    .three-column-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .icons-column {
        flex: none;
        min-width: auto;
        width: 100%;
        padding-bottom: 0;
        max-width: 100% !important;
    }
    
    .timeline-container {
        flex-direction: column !important;
        gap: 0;
    }
    
    .circles-timeline {
        flex-direction: column !important;
        justify-content: flex-start;
        width: 100%;
        gap: 0;
    }
    
    .icon-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100% !important;
        padding: 0.5rem 0 !important;
    }
    
    .icon-text-content {
        display: flex !important;
        flex: 1 !important;
        padding-top: 0 !important;
    }
    
    .timeline-arrow {
        display: flex !important;
        align-self: flex-start !important;
        padding: 0.75rem 0 !important;
        margin-left: 35px !important;
    }
    
    .text-column {
        flex: none;
        min-width: auto;
        width: 100%;
        max-width: none;
        gap: 2rem;
        margin-right: 0;
    }
    
    .text-item {
        padding: 1.5rem;
    }
    
    .text-item p {
        padding-right: 0;
    }
    
    .content-middle {
        flex: none;
        justify-content: flex-start;
    }
    
    .icons-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .icon-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }
    
    .icon-circle {
        margin: 0;
        flex-shrink: 0;
    }
    
    .icon-content {
        flex: 1;
    }
    
    .description-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .what-capchur-does .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .right-content .container {
        padding: 0 1rem;
    }
    
    .icons-column {
        flex: none;
        width: 100%;
        min-width: auto;
        padding-bottom: 0;
    }
    
    .text-column {
        flex: none;
        width: 100%;
        min-width: auto;
        max-width: none;
        margin-right: 0;
    }
    
    .text-item {
        padding: 1.25rem 1rem;
    }
    
    .text-item p {
        padding-right: 0;
        font-size: 1rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .icon-circle i {
        font-size: 1.2rem;
    }
    
    .text-item p {
        font-size: 1rem;
    }
    
    .description-text p {
        font-size: 1rem;
    }
}

/* Blob Animation Keyframes */
@keyframes blob-morph {
    0%, 100% { 
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 46% 54% 37% 63% / 45% 52% 48% 55%;
        transform: rotate(90deg) scale(1.05);
    }
    50% { 
        border-radius: 54% 46% 63% 37% / 48% 55% 45% 52%;
        transform: rotate(180deg) scale(0.95);
    }
    75% { 
        border-radius: 37% 63% 46% 54% / 52% 45% 55% 48%;
        transform: rotate(270deg) scale(1.02);
    }
}

@keyframes blob-float {
    0%, 100% { 
        border-radius: 45% 55% 72% 28% / 35% 67% 33% 65%;
        transform: translateY(0px) translateX(0px);
    }
    50% { 
        border-radius: 72% 28% 45% 55% / 65% 33% 67% 35%;
        transform: translateY(-25px) translateX(10px);
    }
}

@keyframes blob-wiggle {
    0%, 100% { 
        border-radius: 58% 42% 63% 37% / 41% 44% 56% 59%;
        transform: rotate(0deg);
    }
    33% { 
        border-radius: 42% 58% 37% 63% / 59% 56% 44% 41%;
        transform: rotate(5deg);
    }
    66% { 
        border-radius: 63% 37% 58% 42% / 44% 41% 59% 56%;
        transform: rotate(-5deg);
    }
}

@keyframes blob-pulse {
    0%, 100% { 
        border-radius: 73% 27% 44% 56% / 49% 68% 32% 51%;
        transform: scale(1);
    }
    50% { 
        border-radius: 44% 56% 73% 27% / 68% 32% 51% 49%;
        transform: scale(1.08);
    }
}

@keyframes blob-bounce {
    0%, 100% { 
        border-radius: 64% 36% 47% 53% / 68% 55% 45% 32%;
        transform: translateY(0px);
    }
    50% { 
        border-radius: 47% 53% 64% 36% / 55% 45% 32% 68%;
        transform: translateY(-18px);
    }
}

@keyframes blob-drift {
    0%, 100% { 
        border-radius: 39% 61% 74% 26% / 53% 44% 56% 47%;
        transform: translateX(0px) translateY(0px);
    }
    25% { 
        border-radius: 74% 26% 39% 61% / 44% 56% 47% 53%;
        transform: translateX(15px) translateY(-8px);
    }
    50% { 
        border-radius: 61% 39% 26% 74% / 56% 47% 53% 44%;
        transform: translateX(8px) translateY(-15px);
    }
    75% { 
        border-radius: 26% 74% 61% 39% / 47% 53% 44% 56%;
        transform: translateX(-8px) translateY(-5px);
    }
}

@keyframes blob-sway {
    0%, 100% { 
        border-radius: 52% 48% 33% 67% / 42% 51% 49% 58%;
        transform: rotate(0deg) translateX(0px);
    }
    50% { 
        border-radius: 33% 67% 52% 48% / 51% 49% 58% 42%;
        transform: rotate(8deg) translateX(12px);
    }
}

@keyframes blob-morph-slow {
    0%, 100% { 
        border-radius: 67% 33% 42% 58% / 48% 71% 29% 52%;
        transform: scale(1) rotate(0deg);
    }
    33% { 
        border-radius: 42% 58% 67% 33% / 71% 29% 52% 48%;
        transform: scale(1.06) rotate(120deg);
    }
    66% { 
        border-radius: 58% 42% 33% 67% / 29% 52% 48% 71%;
        transform: scale(0.94) rotate(240deg);
    }
}

@keyframes blob-wobble {
    0%, 100% { 
        border-radius: 41% 59% 76% 24% / 63% 37% 63% 37%;
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        border-radius: 76% 24% 41% 59% / 37% 63% 37% 63%;
        transform: translateY(-8px) rotate(3deg);
    }
    75% { 
        border-radius: 59% 41% 24% 76% / 63% 37% 63% 37%;
        transform: translateY(5px) rotate(-3deg);
    }
}

@keyframes blob-slide {
    0%, 100% { 
        border-radius: 54% 46% 38% 62% / 49% 61% 39% 51%;
        transform: translateX(0px);
    }
    50% { 
        border-radius: 38% 62% 54% 46% / 61% 39% 51% 49%;
        transform: translateX(20px);
    }
}

@keyframes blob-rotate {
    0%, 100% { 
        border-radius: 72% 28% 51% 49% / 44% 56% 44% 56%;
        transform: rotate(0deg);
    }
    50% { 
        border-radius: 51% 49% 72% 28% / 56% 44% 56% 44%;
        transform: rotate(180deg);
    }
}

@keyframes blob-drift-large {
    0%, 100% { 
        border-radius: 48% 52% 69% 31% / 55% 43% 57% 45%;
        transform: translateX(0px) translateY(0px) scale(1);
    }
    25% { 
        border-radius: 69% 31% 48% 52% / 43% 57% 45% 55%;
        transform: translateX(25px) translateY(-12px) scale(1.03);
    }
    50% { 
        border-radius: 52% 48% 31% 69% / 57% 45% 55% 43%;
        transform: translateX(15px) translateY(-25px) scale(0.97);
    }
    75% { 
        border-radius: 31% 69% 52% 48% / 45% 55% 43% 57%;
        transform: translateX(-12px) translateY(-8px) scale(1.01);
    }
}

@keyframes blob-stretch {
    0%, 100% { 
        border-radius: 43% 57% 28% 72% / 34% 66% 34% 66%;
        transform: scaleY(1) scaleX(1);
    }
    50% { 
        border-radius: 28% 72% 43% 57% / 66% 34% 66% 34%;
        transform: scaleY(1.15) scaleX(0.9);
    }
}

@keyframes blob-breathe {
    0%, 100% { 
        border-radius: 61% 39% 44% 56% / 72% 28% 72% 28%;
        transform: scale(1);
    }
    50% { 
        border-radius: 44% 56% 61% 39% / 28% 72% 28% 72%;
        transform: scale(1.12);
    }
}

@keyframes blob-flow {
    0%, 100% { 
        border-radius: 35% 65% 58% 42% / 47% 53% 47% 53%;
        transform: translateX(0px) rotate(0deg);
    }
    33% { 
        border-radius: 58% 42% 35% 65% / 53% 47% 53% 47%;
        transform: translateX(18px) rotate(5deg);
    }
    66% { 
        border-radius: 42% 58% 65% 35% / 47% 53% 47% 53%;
        transform: translateX(-10px) rotate(-3deg);
    }
}

@keyframes blob-mega-drift {
    0%, 100% { 
        border-radius: 84% 16% 89% 11% / 92% 8% 92% 8%;
        transform: translateX(0px) translateY(0px) scale(1) rotate(0deg);
    }
    25% { 
        border-radius: 89% 11% 84% 16% / 8% 92% 8% 92%;
        transform: translateX(30px) translateY(-15px) scale(1.05) rotate(90deg);
    }
    50% { 
        border-radius: 16% 84% 11% 89% / 92% 8% 92% 8%;
        transform: translateX(20px) translateY(-30px) scale(0.95) rotate(180deg);
    }
    75% { 
        border-radius: 11% 89% 16% 84% / 8% 92% 8% 92%;
        transform: translateX(-15px) translateY(-10px) scale(1.02) rotate(270deg);
    }
}

@keyframes blob-mega-sway {
    0%, 100% { 
        border-radius: 95% 5% 97% 3% / 86% 14% 86% 14%;
        transform: rotate(0deg) translateX(0px) scale(1);
    }
    33% { 
        border-radius: 97% 3% 95% 5% / 14% 86% 14% 86%;
        transform: rotate(8deg) translateX(25px) scale(1.04);
    }
    66% { 
        border-radius: 5% 95% 3% 97% / 86% 14% 86% 14%;
        transform: rotate(-5deg) translateX(-12px) scale(0.96);
    }
}



/* How CapChur Works Section */
.how-capchur-works {
    background: url('images/QTpic.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 40px 0;
    position: relative;
    height: calc(100vh - 80px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
    z-index: 3;
}

.how-capchur-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.how-capchur-works::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    border-radius: 2px;
}

.how-capchur-works .container {
    position: relative;
    z-index: 1;
}

.how-capchur-works-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.how-capchur-works-text {
    order: 1;
    padding-right: 1rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.how-capchur-works-text h2 {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.how-capchur-works-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    margin: 1.5rem 0 2rem 0;
    border-radius: 2px;
}

.how-works-description p {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.how-works-description p:last-child {
    margin-bottom: 0;
}

.inline-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.how-works-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.how-works-buttons .btn-primary {
    letter-spacing: 0.05em;
}

.how-works-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--text-black);
}

.how-works-buttons .btn-secondary:hover {
    background: var(--primary-green);
    color: var(--pure-white);
}

.how-capchur-works-image {
    order: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-green);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.how-works-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}


.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-black);
    position: relative;
    z-index: 3; /* Above container background */
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    line-height: 1.1;
}

/* Simple, elegant green accent line */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
}

/* Services Section */
.services {
    background: var(--off-white);
}

.what-we-do-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--text-black);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--muted-border-green);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--pure-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

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

/* How It Works Section */
.how-it-works {
    background: var(--pure-white);
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--off-white);
    border: 1px solid var(--muted-border-green);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--primary-green);
    color: var(--pure-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-black);
}

.step-content p {
    color: var(--text-black);
    line-height: 1.6;
}

/* Why CapChur Section */
.about {
    background: var(--off-white);
}

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

.benefit-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--muted-border-green);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--pure-white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

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

/* Built for Operators Section */
.built-for-operators {
    background: var(--pure-white);
}

.operator-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.operator-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--muted-border-green);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.operator-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.operator-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

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

/* Powered by AI Section */
.powered-by-ai {
    background: var(--off-white);
}

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

.ai-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--muted-border-green);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ai-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--pure-white);
}

.ai-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

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

/* Customer Experience Section */
.customer-experience {
    background: var(--pure-white);
}

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

.customer-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--muted-border-green);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.customer-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.customer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

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

/* Who It's For Section */
.who-its-for {
    background: var(--off-white);
}

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

.target-item {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--muted-border-green);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.target-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.target-item p {
    color: var(--text-black);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--pure-white);
    padding: 40px 0;
    height: calc(100vh - 80px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.modern-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--pure-white);
    font-size: 1rem;
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.form-group select {
    cursor: pointer;
}

.form-group option {
    background: #2d2d2d;
    color: var(--pure-white);
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-text {
    color: var(--pure-white);
    font-weight: 500;
}

/* Contact form button styling */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--pure-white);
    border: none;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Avant Garde', sans-serif;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 191, 99, 0.4);
}

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

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

.footer-brand h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.footer-links a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--subtle-gray);
    color: #cccccc;
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Responsive Design */
/* Medium to large screens */
@media (max-width: 1586px) {
    .hero-main-image {
        width: 85%;
    }
    
    .hero-image-container picture img {
        width: 85%;
    }
}

/* Smaller screens */
@media (max-width: 1150px) {
    .hero-main-image {
        width: 100%;
    }
    
    .hero-image-container picture img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero {
        margin-top: 70px; /* Smaller navbar on mobile */
    }

    .hero-image-container {
        height: calc(100vh - 70px); /* Account for smaller mobile navbar */
    }

    .hero-main-image {
        width: 70%;
        height: calc(100vh - 70px);
    }

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

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

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }

    .ai-editing {
        padding: 80px 0;
    }

    .ai-intro-title {
        font-size: 2.5rem;
    }

    .ai-intro-text {
        font-size: 1.1rem;
    }

    .ai-editing-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 15px;
    }

    .ai-editing-image {
        order: 1;
        justify-self: center;
    }

    .ai-editing-text {
        order: 2;
        padding: 0;
    }

    .ai-feature-header {
        padding: 1rem 1.5rem;
    }

    .ai-feature-content {
        padding: 0 1.5rem;
    }

    .ai-feature.active .ai-feature-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .ai-feature-header h3 {
        font-size: 1.2rem;
    }


    .how-capchur-works {
        padding: 80px 0;
    }

    .how-capchur-works-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 15px;
    }

    .how-capchur-works-text {
        order: 2;
        padding-right: 0;
        text-align: center;
    }

    .how-capchur-works-text h2 {
        font-size: 2.25rem;
    }

    .how-capchur-works-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .how-capchur-works-image {
        order: 1;
        justify-self: center;
    }

    .how-capchur-works-image::before {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }

    .how-works-image {
        max-width: 400px;
    }

    .stats {
        justify-content: center;
    }

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

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

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

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

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

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

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

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

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image .placeholder-image {
        width: 250px;
        height: 250px;
    }

    .hero-logo {
        width: 250px;
        height: 250px;
    }

    .ai-editing-content {
        gap: 3rem;
    }

    .ai-intro-title {
        font-size: 2.2rem;
    }

    .ai-feature-header {
        padding: 0.8rem 1.2rem;
    }

    .ai-feature-content {
        padding: 0 1.2rem;
    }

    .ai-feature.active .ai-feature-content {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .ai-feature-header h3 {
        font-size: 1.1rem;
    }

    .smarter-cameras-content {
        gap: 3rem;
    }

    .smarter-cameras-text h2 {
        font-size: 2rem;
    }

    .cameras-description p {
        font-size: 1.05rem;
    }
    

    .how-capchur-works-content {
        gap: 3rem;
    }

    .how-capchur-works-text h2 {
        font-size: 2rem;
    }

    .how-works-description p {
        font-size: 1.05rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.portfolio-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Responsive Fixes for Main Sections */
@media (max-width: 768px) {
    /* What CapChur Does - Mobile */
    .what-capchur-does-section {
        height: auto;
        min-height: calc(100vh - 70px);
        padding: 60px 0 50px 0;
    }
    
    .what-capchur-does-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .what-capchur-does-image {
        display: none;
    }
    
    .what-capchur-does-text {
        padding: 0 20px;
        max-width: 100%;
        text-align: center;
    }
    
    .what-does-title {
        font-size: 2rem;
    }
    
    .what-does-title::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .what-does-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* How CapChur Works - Mobile */
    .how-capchur-works {
        height: auto;
        min-height: calc(100vh - 70px);
        padding: 60px 0 50px 0;
    }
    
    .how-capchur-works-content {
        grid-template-columns: 1fr;
    }
    
    .how-capchur-works-text {
        padding: 1.5rem;
        order: 1;
    }
    
    .how-capchur-works-image {
        order: 2;
        padding: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .how-works-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* AI Editing - Mobile */
    .ai-editing {
        height: auto;
        min-height: calc(100vh - 70px);
        padding: 60px 0 50px 0;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    .ai-editing-intro {
        margin-top: 0;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .ai-intro-title {
        font-size: 1.8rem;
    }
    
    .ai-intro-text {
        font-size: 1rem;
    }
    
    .ai-editing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-editing-image {
        order: 2;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .ai-editor-image {
        max-width: 100%;
    }
    
    .ai-image-btn {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .ai-editing-text {
        order: 1;
        padding: 0 10px;
    }
    
    .ai-feature {
        margin-bottom: 0.75rem;
    }
    
    .ai-feature-header h3 {
        font-size: 1rem;
    }
    
    /* Contact - Mobile */
    .contact {
        height: auto;
        min-height: calc(100vh - 70px);
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .modern-form {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Section scroll links - Mobile */
    .section-scroll-link {
        bottom: 15px;
    }
    
    .hero-learn-more {
        bottom: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .what-does-title {
        font-size: 1.75rem;
    }
    
    .what-does-description p {
        font-size: 1rem;
    }
    
    .how-capchur-works-text h2 {
        font-size: 1.75rem;
    }
    
    .how-works-description p {
        font-size: 0.95rem;
    }
    
    .ai-intro-title {
        font-size: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .what-does-buttons,
    .how-works-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}
