:root {
    --primary-brown: #4a3429;
    --secondary-brown: #6b4423;
    --accent-tan: #d4b896;
    --light-tan: #f0e6d2;
    --dark-brown: #2d1f1a;
    --white: #ffffff;
    --gray-light: #a0a0a0;
    --gradient-start: #6b4423;
    --gradient-end: #4a3429;
    
    /* Gold/yellow from logo */
    --gold-primary: #f1c40f;
    --gold-secondary: #f39c12;
    --gold-light: #fff3cd;
    --gold-dark: #b7950b;
    
    /* Accent colors for cards */
    --blue-accent: #4a90e2;
    --green-accent: #7ed321;
    --purple-accent: #9013fe;
    --orange-accent: #f5a623;
    --teal-accent: #50e3c2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Floating Header */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(74, 52, 41, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
    border-bottom: 1px solid rgba(212, 184, 150, 0.2);
}

.floating-header.visible {
    transform: translateY(0);
}

.floating-header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
}

.floating-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-tan);
    letter-spacing: -0.5px;
}

.floating-cta-button {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
}

/* Mobile adjustments for floating header */
@media (max-width: 768px) {
    .floating-header-content {
        padding: 0.6rem 1rem;
    }
    
    .floating-logo {
        width: 32px;
        height: 32px;
    }
    
    .floating-brand-text {
        font-size: 1.25rem;
    }
    
    .floating-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    min-height: 100vh;
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 184, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 184, 150, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 184, 150, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 2rem 0;
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
}

.logo {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(212, 184, 150, 0.1), rgba(240, 230, 210, 0.05));
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent,
        rgba(240, 230, 210, 0.1),
        transparent);
    transform: rotate(45deg);
    animation: logoShine 4s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 20px rgba(212, 184, 150, 0.3));
    background: linear-gradient(135deg, rgba(212, 184, 150, 0.2), rgba(240, 230, 210, 0.1));
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light-tan);
    letter-spacing: -2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    line-height: 1.1;
}

.headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-tan), transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { opacity: 0.3; width: 80px; }
    100% { opacity: 0.8; width: 120px; }
}

.subheadline {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent-tan);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    margin-bottom: 4rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--dark-brown);
    transition: width 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(241, 196, 15, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 80%;
    background: var(--dark-brown);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.content {
    z-index: 1;
    position: relative;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    margin-bottom: 6rem;
    padding: 4rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.what-gibon-does {
    background: #f0e6d2;
    border-color: #d4b896;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.for-developers {
    background: #f0e6d2;
    border-color: #d4b896;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.for-teams {
    background: #f0e6d2;
    border-color: #d4b896;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.integrations {
    background: #f0e6d2;
    border-color: #d4b896;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gibon-comparison {
    background: #f0e6d2;
    border-color: #d4b896;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Compact Comparison Section */
.gibon-comparison-compact {
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f0e6d2 0%, #e8dcc8 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.what-gibon-does h2,
.for-developers h2,
.for-teams h2,
.integrations h2,
.gibon-comparison h2,
.gibon-comparison-compact h2 {
    color: var(--dark-brown);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.gibon-comparison-compact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.developer-benefits,
.team-benefits,
.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Process Flow Styles */
.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.process-step:nth-child(1) {
    background: #3498db;
    border-color: #2980b9;
    color: white;
}

.process-step:nth-child(2) {
    background: #2ecc71;
    border-color: #27ae60;
    color: white;
}

.process-step:nth-child(3) {
    background: #9b59b6;
    border-color: #8e44ad;
    color: white;
}

.process-step:nth-child(4) {
    background: #e67e22;
    border-color: #d35400;
    color: white;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: inherit;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 1rem;
    color: inherit;
    opacity: 0.9;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-brown);
    font-weight: bold;
    opacity: 1;
    justify-self: center;
}

.feature,
.benefit,
.comparison-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 184, 150, 0.15);
    transition: all 0.3s ease;
}

.category {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 184, 150, 0.15);
    transition: all 0.3s ease;
}

/* Add color variety to different sections */
.for-developers .benefit:nth-child(1) {
    background: #3498db;
    border-color: #2980b9;
    color: white;
}

.for-developers .benefit:nth-child(2) {
    background: #2ecc71;
    border-color: #27ae60;
    color: white;
}

.for-developers .benefit:nth-child(3) {
    background: #9b59b6;
    border-color: #8e44ad;
    color: white;
}

.for-teams .benefit:nth-child(1) {
    background: #e67e22;
    border-color: #d35400;
    color: white;
}

.for-teams .benefit:nth-child(2) {
    background: #1abc9c;
    border-color: #16a085;
    color: white;
}

.for-teams .benefit:nth-child(3) {
    background: #3498db;
    border-color: #2980b9;
    color: white;
}

.integrations .category:nth-child(1) {
    background: #2ecc71;
    border-color: #27ae60;
    color: white;
}

.integrations .category:nth-child(2) {
    background: #9b59b6;
    border-color: #8e44ad;
    color: white;
}

.integrations .category:nth-child(3) {
    background: #e67e22;
    border-color: #d35400;
    color: white;
}

.gibon-comparison .comparison-item:nth-child(1) {
    background: #3498db;
    border-color: #2980b9;
    color: white;
}

.gibon-comparison .comparison-item:nth-child(2) {
    background: #2ecc71;
    border-color: #27ae60;
    color: white;
}

.gibon-comparison .comparison-item:nth-child(3) {
    background: #9b59b6;
    border-color: #8e44ad;
    color: white;
}

.gibon-comparison .comparison-item:nth-child(4) {
    background: #e67e22;
    border-color: #d35400;
    color: white;
}

.benefit:hover,
.category:hover,
.comparison-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 184, 150, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature h3,
.benefit h3,
.category h3,
.comparison-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: inherit;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.category p,
.comparison-item p {
    color: inherit;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.comparison-intro {
    color: var(--dark-brown);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

/* Carousel Styles */
.comparison-carousel {
    position: relative;
    margin: 0 -1rem;
    padding: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d4b896 transparent;
}

.comparison-carousel::-webkit-scrollbar {
    height: 6px;
}

.comparison-carousel::-webkit-scrollbar-track {
    background: rgba(212, 184, 150, 0.1);
    border-radius: 3px;
}

.comparison-carousel::-webkit-scrollbar-thumb {
    background: #d4b896;
    border-radius: 3px;
}

.comparison-track {
    display: flex;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.comparison-card {
    flex: 0 0 250px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--start-color) 0%, var(--end-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-card.autonomous {
    --start-color: #3498db;
    --end-color: #2980b9;
}

.comparison-card.pricing {
    --start-color: #2ecc71;
    --end-color: #27ae60;
}

.comparison-card.independent {
    --start-color: #9b59b6;
    --end-color: #8e44ad;
}

.comparison-card.workflow {
    --start-color: #e67e22;
    --end-color: #d35400;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.comparison-card:hover::before {
    opacity: 1;
}

.comparison-card .card-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    filter: grayscale(0.2);
}

.comparison-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.comparison-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.comparison-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-brown);
    font-style: italic;
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* Logo List Styles */
.logo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.logo-item {
    background: white;
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

/* Feature Image Styles */
.feature-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
}

.feature-image-square {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: block;
}

.feature-image-container {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 15px;
}

.developer-focus-visual,
.flow-visual,
.team-metrics-visual,
.integration-ecosystem-visual {
    margin-top: 3rem;
    text-align: center;
    padding: 0 2rem;
}

/* Hero image specific styling */
.hero-visual {
    margin-top: 3rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Grid Layouts */
.image-grid-2, .image-grid-3, .image-grid-4 {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    padding: 2rem 0;
}

.image-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.image-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.image-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(212, 184, 150, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    aspect-ratio: 3 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-placeholder h4 {
    color: var(--accent-tan);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.image-placeholder p {
    color: var(--gray-light);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.3;
}

/* Smaller text for 4-column grids */
.image-grid-4 .image-placeholder h4 {
    font-size: 0.95rem;
}

.image-grid-4 .image-placeholder p {
    font-size: 0.8rem;
}

/* Placeholder Styles */
.hero-creatives-placeholder,
.flow-visual-placeholder,
.developer-focus-placeholder,
.team-metrics-placeholder,
.integration-visuals-placeholder {
    margin-top: 3rem;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.creative-placeholder {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    border: 1px dashed rgba(212, 184, 150, 0.2);
}

.creative-placeholder h4,
.hero-creatives-placeholder h4,
.flow-visual-placeholder h4,
.split-view-placeholder h4,
.team-metrics-placeholder h4,
.integration-visuals-placeholder h4 {
    color: var(--accent-tan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.creative-placeholder p,
.hero-creatives-placeholder p,
.flow-visual-placeholder p,
.split-view-placeholder p,
.team-metrics-placeholder p,
.integration-visuals-placeholder p {
    color: var(--gray-light);
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.stealth-message {
    text-align: center;
    margin-bottom: 3rem;
}

.stealth-message p {
    font-size: 1.4rem;
    color: var(--accent-tan);
    font-weight: 500;
    font-style: italic;
    opacity: 0.8;
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    margin: 4rem auto 3rem auto;
    z-index: 1;
    position: relative;
}

.footer {
    text-align: center;
    color: var(--accent-tan);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.7;
    z-index: 1;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .headline {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .subheadline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .logo {
        width: 140px;
        height: 140px;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    section {
        margin-bottom: 4rem;
        padding: 2rem 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .developer-benefits,
    .team-benefits,
    .integration-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gibon-comparison-compact {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .gibon-comparison-compact h2 {
        font-size: 1.75rem;
    }
    
    .comparison-card {
        flex: 0 0 220px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .process-step {
        min-width: 100%;
        max-width: 300px;
    }
    
    .benefit,
    .category,
    .comparison-item {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    /* Adjust feature images for mobile */
    .feature-image {
        width: 100%;
        height: auto;
    }
    
    /* Responsive image grids */
    .image-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .image-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .image-grid-2 {
        max-width: 800px;
    }
    
    .image-placeholder {
        padding: 1.25rem 0.75rem;
    }
    
    .image-placeholder h4 {
        font-size: 0.95rem;
    }
    
    .image-placeholder p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .content {
        padding: 0 1rem;
    }
    
    /* Stack all image grids on mobile */
    .image-grid-2,
    .image-grid-3,
    .image-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .image-placeholder {
        padding: 1.5rem 1rem;
    }
}

/* Enhanced animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.logo-container {
    animation: float 6s ease-in-out infinite;
}

.hero {
    animation: pulse 8s ease-in-out infinite;
}

/* Enhanced loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero > * {
    animation: fadeInUp 1s ease-out forwards;
}

.logo-container {
    animation: fadeInScale 1.2s ease-out forwards, float 6s ease-in-out infinite 1.2s;
}

.hero > *:nth-child(1) { animation-delay: 0.2s; }
.hero > *:nth-child(2) { animation-delay: 0.5s; }
.hero > *:nth-child(3) { animation-delay: 0.8s; }
.hero > *:nth-child(4) { animation-delay: 1.1s; }

/* Subtle particle effect */
.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 184, 150, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(240, 230, 210, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-20px) translateX(10px); }
}

/* Comparison card entrance animation */
@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comparison-card {
    animation: slideInCard 0.6s ease-out forwards;
}

.comparison-card:nth-child(1) { animation-delay: 0.1s; }
.comparison-card:nth-child(2) { animation-delay: 0.2s; }
.comparison-card:nth-child(3) { animation-delay: 0.3s; }
.comparison-card:nth-child(4) { animation-delay: 0.4s; }

/* Ultra Compact Tabbed Version */
.gibon-comparison-ultra-compact {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f0e6d2;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gibon-comparison-ultra-compact h2 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    color: #6b4423;
    font-size: 1rem;
    opacity: 0.8;
}

.comparison-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-tabs input[type="radio"] {
    display: none;
}

.tab-labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Auto-rotate progress indicator - only on active tabs */
#tab-autonomous:checked ~ .tab-labels label[for="tab-autonomous"]::before,
#tab-pricing:checked ~ .tab-labels label[for="tab-pricing"]::before,
#tab-independent:checked ~ .tab-labels label[for="tab-independent"]::before,
#tab-workflow:checked ~ .tab-labels label[for="tab-workflow"]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(45, 31, 26, 0.15);
    z-index: 1;
}

#tab-autonomous:checked ~ .tab-labels label[for="tab-autonomous"]::after,
#tab-pricing:checked ~ .tab-labels label[for="tab-pricing"]::after,
#tab-independent:checked ~ .tab-labels label[for="tab-independent"]::after,
#tab-workflow:checked ~ .tab-labels label[for="tab-workflow"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #1e3a8a);
    box-shadow: 0 0 8px rgba(44, 90, 160, 0.5);
    z-index: 2;
    animation: tabProgress 5s linear forwards;
}

@keyframes tabProgress {
    0% { 
        width: 0%;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    100% { 
        width: 100%;
        opacity: 1;
    }
}

/* Stop animation when auto-rotation is disabled */
.comparison-tabs.user-controlled #tab-autonomous:checked ~ .tab-labels label[for="tab-autonomous"]::after,
.comparison-tabs.user-controlled #tab-pricing:checked ~ .tab-labels label[for="tab-pricing"]::after,
.comparison-tabs.user-controlled #tab-independent:checked ~ .tab-labels label[for="tab-independent"]::after,
.comparison-tabs.user-controlled #tab-workflow:checked ~ .tab-labels label[for="tab-workflow"]::after {
    animation: none !important;
    width: 0 !important;
}

.tab-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.tab-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-brown);
    text-align: center;
}

#tab-autonomous:checked ~ .tab-labels label[for="tab-autonomous"],
#tab-pricing:checked ~ .tab-labels label[for="tab-pricing"],
#tab-independent:checked ~ .tab-labels label[for="tab-independent"],
#tab-workflow:checked ~ .tab-labels label[for="tab-workflow"] {
    background: linear-gradient(135deg, #f5a623 0%, #f39c12 100%);
    color: white;
    border-color: #f39c12;
}

#tab-autonomous:checked ~ .tab-labels label[for="tab-autonomous"] .tab-text,
#tab-pricing:checked ~ .tab-labels label[for="tab-pricing"] .tab-text,
#tab-independent:checked ~ .tab-labels label[for="tab-independent"] .tab-text,
#tab-workflow:checked ~ .tab-labels label[for="tab-workflow"] .tab-text {
    color: white;
}

.tab-contents {
    position: relative;
    min-height: 120px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-content h3 {
    font-size: 1.25rem;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

.tab-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

#tab-autonomous:checked ~ .tab-contents .tab-content[data-tab="autonomous"],
#tab-pricing:checked ~ .tab-contents .tab-content[data-tab="pricing"],
#tab-independent:checked ~ .tab-contents .tab-content[data-tab="independent"],
#tab-workflow:checked ~ .tab-contents .tab-content[data-tab="workflow"] {
    display: block;
}

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

/* Mobile responsiveness for ultra compact version */
@media (max-width: 768px) {
    .gibon-comparison-ultra-compact {
        padding: 1.5rem 1rem;
    }
    
    .tab-labels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-label {
        padding: 0.75rem 0.5rem;
    }
    
    .tab-icon {
        font-size: 1.25rem;
    }
    
    .tab-text {
        font-size: 0.75rem;
    }
    
    .tab-contents {
        padding: 1.5rem;
    }
    
    .tab-content h3 {
        font-size: 1.1rem;
    }
    
    .tab-content p {
        font-size: 0.9rem;
    }
}