/* 
 * V2 Experimental Styles
 * 
 * This file overrides the base styles for index-v2.html
 * Play around with anything here - it won't affect your main site!
 */

/* ===========================
   SHARP CORNERS OVERRIDE
   =========================== */
/* Remove all rounded corners - everything gets sharp edges */
* {
    border-radius: 0 !important;
}

/* ===========================
   COLOR SCHEME
   =========================== */
/* Cool Professional Palette - Navy & Bright Blue */

:root {
    /* ===== PROFESSIONAL COOL PALETTE ===== */
    /* Primary Colors */
    --primary-brown: #1C2833;         /* Navy-Charcoal (Main) */
    --primary-brown-light: #7F8C8D;   /* Medium Gray (lighter variant) */
    --primary-gold: #3498DB;          /* Bright Blue (Accent) */
    --primary-gold-dark: #2980B9;     /* Darker Blue for hover states */
    --accent-orange: #3498DB;         /* Bright Blue (Accent) */
    
    /* Backgrounds */
    --bg-cream: #F8F9FA;              /* Neutral Cool Off-White (Secondary) */
    --bg-light: #ECF0F1;              /* Slightly darker cool off-white */
    --bg-lighter: #F8F9FA;            /* Neutral Cool Off-White */
    --bg-dark: #F8F9FA;               /* Use cool light background */
    --bg-darker: #ECF0F1;             /* Use slightly darker variant */
    --bg-focus: #ECF0F1;              /* Cool gray for focus states */
    --bg-card: #FFFFFF;               /* Pure white for cards */
    
    /* Text Colors */
    --text-dark: #1C2833;             /* Navy-Charcoal (Main) */
    --text-light: #1C2833;            /* Navy-Charcoal (Main) */
    --text-gray: #7F8C8D;             /* Medium Gray (Tertiary) */
    --text-dark-gray: #7F8C8D;        /* Medium Gray (Tertiary) */
    --text-darker-gray: #7F8C8D;      /* Medium Gray (Tertiary) */
    
    /* Borders */
    --border-dark: #7F8C8D;           /* Medium Gray */
    --border-light: #BDC3C7;          /* Light gray border */
    --border-lighter: #D5DBDD;        /* Lighter gray border */
    --border-lightest: #ECF0F1;       /* Lightest border (matches bg) */
    
    /* Status Colors */
    --success: #3498DB;               /* Bright Blue */
    --success-dark: #2980B9;          /* Darker Blue */
    --warning: #F59E0B;               /* Keep warning orange */
    --error: #EF4444;                 /* Keep error red */
    --white: #FFFFFF;                 /* Pure white */
}


/* ===========================
   BACKGROUND APPLICATIONS
   =========================== */
/* Apply the new color palette to page elements */

body {
    background-color: var(--bg-cream);
}

.hero {
    background-color: var(--bg-cream);
}

.how-it-works-section {
    background-color: var(--bg-light);
}

.value-prop-section {
    background-color: var(--bg-cream);
    padding: 8rem 2rem;
}

/* Designer Statement Section */
.designer-statement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.designer-statement-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.designer-statement-headline {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 200;
    color: var(--text-light);
    margin: 0;
    text-align: left;
}

.designer-statement-headline .crossed-out {
    position: relative;
    display: inline-block;
    color: var(--text-gray);
    padding: 0.5rem 1rem;
}

/* Box around the word */
.designer-statement-headline .crossed-out::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-gold);
    opacity: 0;
    animation: boxAppear 0.5s ease-out forwards;
    animation-delay: 0.3s;
}

/* X cross through the word */
.designer-statement-headline .crossed-out::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    animation: crossAppear 0.6s ease-out forwards;
    animation-delay: 0.8s;
    background:
        linear-gradient(to bottom right, 
            transparent calc(50% - 1px),
            var(--primary-gold) calc(50% - 1px),
            var(--primary-gold) calc(50% + 1px),
            transparent calc(50% + 1px)
        ),
        linear-gradient(to top right,
            transparent calc(50% - 1px),
            var(--primary-gold) calc(50% - 1px),
            var(--primary-gold) calc(50% + 1px),
            transparent calc(50% + 1px)
        );
}

@keyframes boxAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes crossAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.vibechecker-brand {
    font-size: 5rem;
    font-weight: 200;
    color: var(--primary-gold);
    line-height: 1;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: vibeCheckAppear 0.8s ease-out forwards;
    animation-delay: 1.4s;
}

@keyframes vibeCheckAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.designer-statement-image {
    width: 100%;
    border-radius: 0;
    border: 1px solid var(--primary-gold-dark);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: right;
}

.designer-statement-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .designer-statement-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .designer-statement-headline {
        font-size: 3.5rem;
    }
    
    .vibechecker-brand {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    .designer-statement-headline {
        font-size: 2.5rem;
    }
    
    .vibechecker-brand {
        font-size: 2.5rem;
    }
}

.pricing-section {
    background-color: var(--white);
    padding: 8rem 2rem;
}

.faq-section {
    background-color: var(--bg-cream);
}


/* ===========================
   TYPOGRAPHY EXPERIMENTS
   =========================== */
/* Try different font pairings or sizes here */

/*
body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}
*/


/* ===========================
   HERO SECTION
   =========================== */
/* Customize the hero section look & feel */

.hero {
    padding-left: 16rem;
    padding-right: 16rem;
    padding-top: 2rem; /* Reduced from 6rem to bring content closer to navbar */
    padding-bottom: 8rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto; /* Text is flexible, image is auto-sized */
    gap: 6rem;
    max-width: none;
    width: 100%;
    align-items: center;
}

.hero-text-container {
    width: 100%;
    max-width: 600px; /* Limit text width for readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero .hero-headline,
.hero h1.hero-headline {
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    text-align: left !important;
    font-size: 4.5rem !important; /* Reduced from 7rem */
    font-weight: 400 !important; /* Increased from 200 */
    color: var(--text-light) !important;
    line-height: 1 !important;
    width: 100% !important;
}

.hero-subtext {
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: left;
    font-size: 1.5rem; /* Reduced from 3rem */
    font-weight: 200;
    color: var(--text-light); /* Changed from var(--text-gray) to match h1 */
    line-height: 1.2;
}

.hero-demo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0; /* Prevent image container from shrinking */
}

.hero-demo-image {
    display: block;
    width: 1200px; /* Fixed size - double the original 600px */
    height: auto;
    border-radius: 0;
    flex-shrink: 0; /* Prevent image from shrinking */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    filter: blur(1px);
}

.hero-input-container {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 600px;
    width: 100%;
    width: 100%;
}

.hero-url-input {
    flex: 1;
    padding: 0.75rem 1rem; /* Halved from 1.5rem 2rem */
    font-size: 1rem; /* Reduced from 1.5rem */
    font-family: 'Mukta', sans-serif;
    font-weight: 300;
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--primary-brown);
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
}

.hero-url-input::placeholder {
    color: var(--text-gray);
}

.hero-url-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.hero-analyze-btn {
    padding: 0.5rem 0.75rem; /* Halved from 1rem 1.5rem */
    background-color: var(--white);
    border: 1px solid var(--primary-brown);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-analyze-btn svg {
    width: 32px; /* Halved from default 64px */
    height: 32px; /* Halved from default 64px */
    transition: all 0.3s ease;
    animation: triangleAppear 1s ease-out 0.5s backwards;
}

@keyframes triangleAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-90deg);
    }
    60% {
        transform: scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.hero-analyze-btn:hover {
    background-color: rgba(52, 152, 219, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.hero-analyze-btn:hover svg path {
    stroke: var(--primary-gold-dark);
}

.hero-analyze-btn:active {
    transform: translateY(0);
}

.hero-left {
    width: 100%;
}

.hero-left h1 {
    margin: 0;
    line-height: 1.1;
}

/* Hero Title and Input Row */
.hero-title-input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

/* Hero Try Button */
.hero-try-btn {
    flex-shrink: 0;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    background-color: var(--primary-gold);
    color: var(--white);
    border: 1px solid var(--primary-gold-dark);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-try-btn:hover {
    background-color: var(--primary-gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-try-btn:active {
    transform: translateY(0);
}

/* Hero Before/After Comparison Slider */
.hero-comparison-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-comparison-slider {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: transparent;
    --divider-width: 3px;
    --divider-color: var(--primary-gold);
    --default-handle-opacity: 1;
    --default-handle-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    outline: none;
}

/* Show desktop version by default, hide mobile version */
.hero-comparison-desktop {
    display: block;
}

.hero-comparison-mobile {
    display: none;
}

/* Remove focus outline */
.hero-comparison-slider:focus,
.hero-comparison-slider:focus-visible {
    outline: none;
    border: none;
}

.hero-comparison-slider img {
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
}

/* Remove any default backgrounds from slider internals */
.hero-comparison-slider::part(first-container),
.hero-comparison-slider::part(second-container) {
    background: transparent !important;
}

/* Remove focus border from divider and handle */
.hero-comparison-slider::part(divider) {
    outline: none;
}

.hero-comparison-slider::part(handle) {
    outline: none;
}

/* Subtle slide-in animation for the slider divider */
@keyframes slideInFromRight {
    0% {
        transform: translateX(25%);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animation to the slider's divider handle */
.hero-comparison-slider::part(divider) {
    animation: slideInFromRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

/* Next section overlaps the hero slider */
.how-it-works-section {
    position: relative;
    z-index: 2;
    margin-top: -15vh;
    /* Negative margin pulls section up to overlap the slider */
    padding: 8rem 2rem;
    background-color: var(--white);
}

/* Two Column Layout for How It Works */
.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 4rem auto;
}

.how-it-works-description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.how-it-works-description p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    text-align: left;
}

.how-it-works-description .emphasis-blue {
    color: var(--primary-gold);
    font-weight: 500;
}

/* Test Cases Grid */
.test-cases-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

/* Test Case Card - styled like product.html test checkboxes */
.test-case-card {
    background: var(--white);
    border: 1px solid var(--primary-gold-dark);
    border-radius: 0;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.test-case-card:hover {
    border-color: var(--primary-gold);
    background: rgba(52, 152, 219, 0.08);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.test-case-card.checked {
    border-color: var(--primary-gold);
    background: rgba(52, 152, 219, 0.08);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.12);
}

.test-case-card input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-gold);
    flex-shrink: 0;
}

.test-case-card label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.test-case-card .test-info {
    flex: 1;
    display: flex;
    align-items: left;
    gap: 1rem;
}

.test-case-card .test-name {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    white-space: nowrap;
}

.test-case-card .test-description {
    font-size: 0.85rem;
    color: var(--text-dark-gray);
}

.test-case-card input[type="checkbox"]:checked ~ .test-info .test-name {
    color: var(--primary-gold);
}

.cta-title {
    font-size: 5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

/* How It Works Input Container */
.how-it-works-input-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-url-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-family: 'Mukta', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--primary-brown);
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
}

.how-it-works-url-input::placeholder {
    color: var(--text-gray);
}

.how-it-works-url-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.how-it-works-submit-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    background-color: var(--primary-gold);
    color: var(--white);
    border: 1px solid var(--primary-gold-dark);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.how-it-works-submit-btn:hover {
    background-color: var(--primary-brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for test cases */
@media (max-width: 768px) {
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-it-works-description p {
        font-size: 1.25rem;
    }
    
    .test-cases-grid {
        max-width: 100%;
    }
    
    .how-it-works-input-container {
        flex-direction: column;
    }
    
    .how-it-works-url-input {
        width: 100%;
    }
    
    .how-it-works-submit-btn {
        width: 100%;
    }
}

/*
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.hero h1 {
    font-size: 4rem !important;
    background: linear-gradient(to right, #f8ff00, #ff00e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
*/


/* ===========================
   LAYOUT CHANGES
   =========================== */
/* Experiment with spacing, widths, etc. */

/*
.hero-content-wrapper {
    max-width: 1400px;
    gap: 4rem;
}

section {
    padding: 6rem 2rem;
}
*/


/* ===========================
   BUTTONS & INTERACTIONS
   =========================== */
/* Try different button styles */

/*
.hero-cta-btn {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}
*/


/* ===========================
   CARD STYLES
   =========================== */
/* Modify cards, pricing, steps, etc. */

/*
.step-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.pricing-card {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
*/


/* ===========================
   NAVBAR CUSTOMIZATION (V2)
   =========================== */
/* Customize the experimental navbar */

.navbar-v2 {
    background: var(--bg-cream) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    padding: 0.75rem 16rem !important; /* Reduced from 1.5rem */
    position: static !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: none !important;
    border-bottom: none !important;
}

.navbar-v2 .logo {
    font-size: 1.2rem !important; /* Reduced from 1.8rem */
    font-weight: 200;
    color: var(--primary-brown) !important;
    text-decoration: none;
}

.navbar-v2 .logo:hover {
    color: var(--primary-gold) !important;
}

.navbar-v2 .nav-link {
    color: var(--primary-brown);
    font-weight: 400;
    font-size: 0.9rem; /* Added smaller font size */
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.navbar-v2 .nav-link:hover {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.navbar-v2 .login-btn {
    background: var(--primary-gold);
    color: white;
    border: 1px solid var(--primary-gold-dark);
    border-radius: 0;
    padding: 0.5rem 1rem; /* Reduced from 0.75rem 1.5rem */
    font-weight: 400;
    font-size: 0.9rem; /* Added smaller font size */
}

.navbar-v2 .login-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    position: relative;
}

/* Customize Hamburgers Library Colors */
.hamburger-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
}

/* Override hamburger colors to match theme */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: var(--primary-brown);
    border-radius: 0; /* Square ends */
    height: 1px; /* Thin lines */
}

/* Two-line hamburger: hide the middle line */
.hamburger-inner::before {
    display: none;
}

/* Adjust spacing for two lines */
.hamburger-inner::after {
    bottom: -10px; /* Increase spacing between the two lines */
}

/* Change to blue on hover */
.hamburger-btn:hover .hamburger-inner,
.hamburger-btn:hover .hamburger-inner::before,
.hamburger-btn:hover .hamburger-inner::after {
    background-color: var(--primary-gold);
}

/* Keep blue color when active (X state) */
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--primary-gold);
}

.hamburger-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid var(--primary-gold-dark);
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.hamburger-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hamburger-link:hover {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-gold);
}


/* ===========================
   FOOTER CUSTOMIZATION (V2)
   =========================== */
/* Customize the experimental footer */

.footer-v2 {
    background: var(--bg-cream);
    color: var(--text-dark);
    padding: 2rem;
    border-top: none !important;
}

.footer-v2 .footer-bottom {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.footer-v2 .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-v2 .footer-bottom p {
    color: var(--text-gray);
    margin: 0;
}

.footer-v2 .footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-v2 .footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-v2 .footer-legal a:hover {
    color: var(--primary-gold);
}


/* ===========================
   RESPONSIVE STYLES FOR V2
   =========================== */

/* Tablet and smaller */
@media (max-width: 1024px) {
    .hero {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    
    .hero-content-wrapper {
        gap: 4rem;
    }
    
    .hero .hero-headline,
    .hero h1.hero-headline {
        font-size: 5rem !important;
    }

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

    .hero-demo-image {
        width: 1000px; /* Slightly smaller but still fixed on tablets */
        max-width: 100%; /* Allow it to shrink if container is too small */
    }
    
    .hero-url-input {
        font-size: 1.25rem;
        padding: 1.25rem 1.75rem;
    }
    
    .hero-analyze-btn {
        padding: 0.875rem 1.25rem;
    }
    
    .hero-analyze-btn svg {
        width: 56px;
        height: 56px;
    }
    
    .navbar-v2 {
        padding: 1.5rem 4rem !important;
    }
    
    .cta-title {
        font-size: 3.5rem;
    }
    
    .pricing-title {
        font-size: 3.5rem !important;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .navbar-v2 {
        padding: 1rem 1.5rem !important;
        flex-wrap: wrap;
    }

    .navbar-v2 .logo {
        font-size: 2rem !important;
    }
    
    .navbar-v2 .logo img {
        height: 40px !important;
        width: 40px !important;
    }
    
    .navbar-v2 .logo span {
        font-size: 1.5rem !important;
    }

    .footer-v2 {
        padding: 3rem 1.5rem 1.5rem;
    }

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

    .footer-v2 .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-v2 .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Hero Section - Mobile */
    .hero {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    /* Ensure all sections have matching 1.5rem gutters */
    .how-it-works-section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        margin-top: 0 !important;
    }
    
    .value-prop-section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .pricing-section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    /* Remove extra padding/margins from inner containers */
    .how-it-works-container,
    .value-prop-container,
    .pricing-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 3rem;
    }

    .hero-text-container {
        width: 100%;
        max-width: 100%; /* Remove max-width constraint on mobile */
        gap: 2rem;
    }

    .hero .hero-headline,
    .hero h1.hero-headline {
        font-size: 3.5rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center !important;
    }
    
    .hero-subtext {
        font-size: 1.75rem;
        text-align: center !important;
    }

    .hero-input-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        max-width: 100%;
        margin: 0;
        gap: 0.75rem;
        justify-content: flex-start;
    }
    
    .hero-url-input {
        flex: 1;
        min-width: 0;
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .hero-analyze-btn {
        padding: 0.875rem;
        flex: 0 0 auto;
        width: auto;
        aspect-ratio: 1;
    }
    
    .hero-analyze-btn svg {
        width: 36px;
        height: 36px;
    }
    
    .hero-analyze-btn svg path {
        stroke-width: 2;
    }

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

    .hero-demo-image {
        width: 100%; /* Full width on mobile to fit screen */
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-title-input-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .hero-try-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-comparison-container {
        justify-content: center;
    }

    .hero-comparison-slider {
        width: 100%;
        max-width: 100%;
    }
    
    /* Switch to mobile images on mobile devices */
    .hero-comparison-desktop {
        display: none;
    }
    
    .hero-comparison-mobile {
        display: block;
        max-height: 60vh;
        overflow: hidden;
    }
    
    .hero-comparison-mobile img {
        max-height: 60vh;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }
    
    /* How It Works Section */
    .how-it-works-section {
        margin-top: -8vh;
        padding: 4rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .test-case-card .test-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .test-case-card .test-name {
        white-space: normal;
    }
    
    /* Value Prop Section */
    .value-prop-section {
        padding: 4rem 1.5rem;
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: 4rem 1.5rem;
    }
    
    .pricing-title {
        font-size: 2.5rem !important;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .hero .hero-headline,
    .hero h1.hero-headline {
        font-size: 5rem !important;
    }
    
    .hero-subtext {
        font-size: 2rem;
    }
    
    .hero-input-container {
        max-width: 100%;
        margin: 0;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .hero-url-input {
        flex: 1;
        min-width: 0;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-analyze-btn {
        padding: 0.75rem;
        width: auto;
        flex-shrink: 0;
        aspect-ratio: 1;
    }
    
    .hero-analyze-btn svg {
        width: 30px;
        height: 30px;
    }
    
    .hero-analyze-btn svg path {
        stroke-width: 2;
    }
    
    .hero-left h1 {
        font-size: 1.75rem !important;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .pricing-title {
        font-size: 2rem !important;
    }
    
    .navbar-v2 .logo {
        font-size: 2rem !important;
    }
    
    .navbar-v2 .logo img {
        height: 36px !important;
        width: 36px !important;
    }
    
    .navbar-v2 .logo span {
        font-size: 1.35rem !important;
    }
    
    .hero-try-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .how-it-works-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .test-case-card {
        padding: 0.875rem;
    }
    
    .footer-v2 {
        padding: 2rem 1rem 1rem;
    }
}

/* Touch Target Improvements */
@media (max-width: 768px) {
    /* Ensure buttons meet minimum touch target size (44x44px) */
    button, .login-btn, .hero-try-btn, .how-it-works-submit-btn, .pricing-cta {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Hamburger menu button should be easily tappable */
    .hamburger-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
    }
    
    /* Input fields should be easy to tap */
    .how-it-works-url-input {
        min-height: 44px;
    }
    
    /* Checkboxes should have adequate tap area */
    .test-case-card label {
        padding: 0.5rem 0;
        min-height: 44px;
    }
    
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }
    
    /* Ensure all images scale properly */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure comparison slider doesn't overflow */
    .hero-comparison-slider {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Ensure pricing cards don't overflow */
    .pricing-card {
        max-width: 100%;
    }
    
    /* Ensure long words don't cause overflow */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}


/* ===========================
   PRICING CARD CUSTOMIZATION
   =========================== */
/* Style pricing cards with main color scheme */

.pricing-title {
    color: var(--text-dark) !important;
    font-size: 5rem !important; /* Doubled from 2.5rem */
    font-weight: 200 !important;
}

.pricing-card {
    background-color: var(--primary-brown) !important;
    background: var(--primary-brown) !important;
    color: white !important;
    border: 2px solid var(--primary-brown) !important;
}

/* Remove movement on pricing cards but keep shadow */
.pricing-card:hover {
    transform: none !important;
}

.pricing-card h3 {
    color: white !important;
}

.pricing-card .pricing-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-card .pricing-amount {
    color: white !important;
}

.pricing-card .currency {
    color: white !important;
}

.pricing-card .price {
    color: white !important;
}

.pricing-card .period {
    color: white !important;
}

.pricing-card .feature-item {
    color: white !important;
}

.pricing-card .feature-item span {
    color: white !important;
}

.pricing-card .feature-item.disabled span {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Style SVG icons to be white for visibility */
.pricing-card .feature-item svg path {
    stroke: white !important;
}

.pricing-card .feature-item.disabled svg path {
    stroke: rgba(255, 255, 255, 0.5) !important;
}

.pricing-card.featured {
    background-color: var(--primary-brown) !important;
    background: var(--primary-brown) !important;
    border: 3px solid var(--primary-gold) !important;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3) !important;
}

.pricing-card .featured-badge {
    background: var(--primary-gold) !important;
    color: white !important;
}

.pricing-card .pricing-cta {
    background: var(--primary-gold) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary-gold-dark) !important;
}

/* Remove movement on pricing buttons but keep glow */
.pricing-card .pricing-cta:hover {
    transform: none !important;
    background: var(--primary-gold-dark) !important;
    color: var(--white) !important;
}

.pricing-card .pricing-cta.featured {
    background: var(--primary-gold) !important;
    color: var(--white) !important;
}

.pricing-card .pricing-cta.featured:hover {
    transform: none !important;
    background: var(--primary-gold-dark) !important;
    color: var(--white) !important;
}


/* ===========================
   YOUR CUSTOM EXPERIMENTS
   =========================== */
/* Add your experimental styles below */

/* ===========================
   IMPROVED RESPONSIVE FIXES
   =========================== */

/* Gradual padding reduction for smoother responsive experience */

/* Extra large screens - slightly reduce gutters */
@media (max-width: 1400px) {
    .hero {
        padding-left: 12rem !important;
        padding-right: 12rem !important;
    }
    
    .navbar-v2 {
        padding-left: 12rem !important;
        padding-right: 12rem !important;
    }
}

/* Large screens - continue reducing */
@media (max-width: 1200px) {
    .hero {
        padding-left: 8rem !important;
        padding-right: 8rem !important;
    }
    
    .navbar-v2 {
        padding-left: 8rem !important;
        padding-right: 8rem !important;
    }
    
    .how-it-works-section,
    .value-prop-section,
    .pricing-section {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    
    .navbar-v2 {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    
    .how-it-works-section,
    .value-prop-section,
    .pricing-section {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    
    .designer-statement-headline {
        font-size: 3.5rem !important;
    }
    
    .vibechecker-brand {
        font-size: 3.5rem !important;
    }
    
    .pricing-title {
        font-size: 3.5rem !important;
    }
}

/* Small tablet - further reduction */
@media (max-width: 900px) {
    .hero {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    
    .navbar-v2 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    
    .how-it-works-section,
    .value-prop-section,
    .pricing-section {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

/* Mobile specific improvements */
@media (max-width: 768px) {
    /* Adjust hero section font sizes for better mobile readability */
    .hero .hero-headline,
    .hero h1.hero-headline {
        font-size: 2.75rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.25rem !important;
        text-align: left !important;
    }
    
    .hero-subtext {
        font-size: 1.25rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.75rem !important;
        text-align: left !important;
    }
    
    .hero-text-container {
        text-align: left !important;
    }
    
    /* Adjust How It Works section content */
    .how-it-works-content {
        margin: 2rem 0 !important;
        padding: 0 !important;
    }
    
    .cta-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
    }
    
    .how-it-works-description {
        padding: 0 !important;
    }
    
    .how-it-works-description p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .test-cases-grid {
        gap: 0.875rem !important;
        padding: 0 !important;
    }
    
    .test-case-card {
        padding: 0.875rem !important;
    }
    
    .test-case-card .test-name {
        font-size: 0.95rem !important;
    }
    
    .test-case-card .test-description {
        font-size: 0.8rem !important;
    }
    
    /* Adjust Value Prop section content */
    .designer-statement-grid {
        gap: 1.5rem !important;
        padding: 0 !important;
    }
    
    .designer-statement-headline {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .vibechecker-brand {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    /* Adjust Pricing section content */
    .pricing-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .pricing-grid {
        gap: 1.25rem !important;
        padding: 0 !important;
    }
    
    .pricing-card {
        padding: 1.25rem 1rem !important;
    }
    
    .pricing-card .pricing-header h3 {
        font-size: 1.25rem !important;
    }
    
    .pricing-card .pricing-description {
        font-size: 0.85rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .pricing-card .price {
        font-size: 2rem !important;
    }
    
    .pricing-card .feature-item {
        font-size: 0.85rem !important;
        margin-bottom: 0.625rem !important;
    }
    
    .pricing-card .pricing-cta {
        font-size: 0.95rem !important;
        padding: 0.75rem 1.25rem !important;
    }
    
    .pricing-card .featured-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.65rem !important;
        top: -10px !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding-top: 3.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .hero .hero-headline,
    .hero h1.hero-headline {
        font-size: 2.25rem !important;
        text-align: left !important;
    }

    .hero-subtext {
        font-size: 1.1rem !important;
        text-align: left !important;
    }
    
    .hero-text-container {
        text-align: left !important;
    }
    
    .hero-url-input {
        font-size: 0.85rem !important;
        padding: 0.65rem 0.875rem !important;
    }
    
    .hero-analyze-btn svg {
        width: 28px !important;
        height: 28px !important;
    }
    
    .cta-title {
        font-size: 1.5rem !important;
    }
    
    .how-it-works-description p {
        font-size: 0.9rem !important;
    }
    
    .designer-statement-headline {
        font-size: 1.5rem !important;
    }
    
    .vibechecker-brand {
        font-size: 1.5rem !important;
    }
    
    .pricing-title {
        font-size: 1.5rem !important;
    }
    
    .pricing-card {
        padding: 1rem 0.875rem !important;
    }
    
    .pricing-card .pricing-header h3 {
        font-size: 1.1rem !important;
    }
    
    .pricing-card .price {
        font-size: 1.75rem !important;
    }
}

