/* Design Tokens */
:root {
    --color-primary: #2f2ef7;
    --color-background: #f5f5ff;
    --color-text: #111111;
    --color-white: #ffffff;
    --color-danger: #b1112c;
    --color-border: #eaeaea;
    --color-text-light: #3d3d3d;
    
    --font-family: 'Noto Sans', sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    --container-width: 1200px;
    --border-radius: 24px;
    --border-radius-sm: 8px;
    --banner-height: 60px;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: #FFFFFF;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding-top: var(--banner-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Screen Reader Only - Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
    width: 100%;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xs) 0 8px 0;
    animation: bannerSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translateY(-100%);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    will-change: transform;
}

/* Extend banner background above viewport to cover overscroll area - absolute so it tracks with banner */
.top-banner::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 10000px;
    background-color: var(--color-primary);
    z-index: 0;
    pointer-events: none;
    /* Always visible to ensure banner extends continuously above viewport */
    opacity: 1;
}

@keyframes bannerSlideDown {
    to {
        transform: translateY(0);
    }
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.banner-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.banner-emoji-wrapper {
    display: inline-block;
    vertical-align: middle;
    padding: 8px;
    margin-right: 4px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.banner-emoji {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.banner-emoji-wrapper:hover .banner-emoji,
.banner-emoji.confetti-active {
    transform: rotate(100deg) scale(1.2);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.banner-link {
    text-decoration: underline;
    text-underline-offset: 1px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.banner-link:hover {
    opacity: 0.8;
}

.banner-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    padding-right: 6px;
    border: 1px solid var(--color-white);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: opacity 0.2s, background-color 0.2s;
}

.banner-button svg {
    transform: translateY(0);
}

.banner-button:hover {
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 80px 0 0;
    text-align: center;
}

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

.logo-img {
    height: 48px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.4px;
    margin-bottom: 24px;
    max-width: 874px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
    max-width: 728px;
    margin-left: auto;
    margin-right: auto;
}

.hero-testimonial {
    display: none;
}

.testimonial-text-content {
    flex: 1;
    text-align: left;
    line-height: 1.2;
    max-width: 100%;
}

.testimonial-profile {
    flex-shrink: 0;
    position: relative;
}

picture {
    display: inline-block;
    line-height: 0;
}

.testimonial-profile picture {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    line-height: 0;
}

.profile-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}


.testimonial-quote-text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: var(--color-text);
}

.testimonial-author-text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--color-text);
}

.hero-visual-wrapper {
    width: 100%;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(245, 245, 255, 0.00) 11.87%, #F5F5FF 100%);
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.hero-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-header-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@keyframes heroImageFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Features Section */
.features-section {
    padding: var(--spacing-md) 0 var(--spacing-3xl) 0;
}

@media (min-width: 1025px) {
    .hero {
        padding-top: 56px;
    }
    
    .features-section {
        padding-top: 56px;
    }
}

.features-section .section-heading {
    margin-bottom: 80px;
}

.section-heading {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.4px;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 776px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0px 4px 12px rgba(17, 17, 17, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonials-scroll-button {
    display: none;
}

.testimonial-card-text {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
    flex-shrink: 0;
}

.testimonial-highlight {
    font-weight: 600;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: auto;
    flex-shrink: 0;
}

.testimonial-card-author > div {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.testimonial-card-author picture {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    line-height: 0;
}

.author-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.author-title {
    font-size: 16px;
    font-weight: 400;
    display: inline;
    color: var(--color-text);
    line-height: 1.2;
    margin-left: 0;
}

.author-title::before {
    content: "•";
    margin-left: 4px;
    margin-right: 4px;
    color: var(--color-text);
}

/* Featured In */
.featured-in {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 48px;
}

.featured-label {
    font-size: 16px;
    margin-bottom: var(--spacing-xs);
}

.featured-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.featured-logo {
    display: inline-block;
    padding: 24px;
    flex-shrink: 0;
}

.featured-logo img {
    height: 32px;
    width: auto;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
    display: block;
    border-radius: 0;
    outline-offset: 16px;
}

.featured-logo:hover img {
    opacity: 0.75;
    outline: 1px solid #d0d0d0;
    border-radius: 0.5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--color-background);
    border: 0.5px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg) var(--spacing-lg) 0 var(--spacing-lg);
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 1px rgba(47, 46, 247, 0.1);
    overflow: hidden;
}

.feature-card-large {
    grid-column: span 2;
}

.feature-content {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.feature-content:has(.feature-list) {
    max-width: none;
}

.feature-card-large .feature-content {
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--spacing-xs);
}

.feature-description {
    font-size: 20px;
    line-height: 120%;
    margin-top: var(--spacing-xs);
}

.feature-card:not(.feature-card-large) .feature-description {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card-large .feature-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-sm);
    display: flex;
    flex-direction: row;
    gap: var(--spacing-sm);
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
}

.feature-list li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.feature-visual {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
}

.feature-card-large .feature-visual {
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
}

.feature-img {
    max-width: 100%;
    height: auto;
}

.feature-card-large .feature-img {
    width: 100%;
    display: block;
}

/* Comparison Section */
.comparison-section {
    padding: 24px 0 var(--spacing-3xl) 0;
}

.comparison-section .section-heading {
    max-width: none;
    white-space: nowrap;
    font-size: 48px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.comparison-section .section-heading.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.comparison-table {
    max-width: 992px;
    margin: 40px auto 0;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.comparison-table::after {
    display: none;
}

/* Full-height white background for feature column */
.comparison-table::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    /* Grid: 2fr 1fr 1fr 1fr = 5fr total, first column is 2fr = 40% */
    width: 40%;
    background-color: var(--color-white);
    z-index: 1;
    pointer-events: none;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: var(--spacing-lg) 12px;
    font-weight: 600;
    font-size: 24px;
    position: relative;
    z-index: 1;
    gap: 0;
}

.comparison-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background-color: var(--color-border);
}

.comparison-feature-label {
    font-weight: 600;
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
    min-height: calc(1em + 2px);
}

.comparison-option {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Reduce text opacity for Allstar (3rd column) and Credit card (4th column) */
.comparison-header .comparison-option:nth-child(3),
.comparison-header .comparison-option:nth-child(4) {
    opacity: 0.8;
}

.comparison-option-image {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 80px;
    object-fit: contain;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: var(--spacing-lg) 12px;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 0;
}

.comparison-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background-color: var(--color-border);
}

.comparison-row:last-child::after {
    display: none;
}

.comparison-feature {
    font-size: 18px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}

.comparison-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Reduce opacity for Allstar (3rd column) and Credit card (4th column) */
/* Keep Bypass (2nd column) at 100% opacity */
.comparison-row .comparison-cell:nth-child(3) svg,
.comparison-row .comparison-cell:nth-child(4) svg {
    opacity: 0.5;
}


/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    min-height: 600px;
    background-image: url('../images/cta-bg.webp');
    background-image: -webkit-image-set(url('../images/cta-bg.webp') 1x);
    background-image: image-set(url('../images/cta-bg.webp') type('image/webp'), url('../images/cta-bg.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.cta-card {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0px 12px 48px rgba(17, 17, 17, 0.25), 0px 4px 16px rgba(17, 17, 17, 0.15), 0px 2px 4px rgba(17, 17, 17, 0.1);
    max-width: 800px;
    min-height: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    text-align: center;
}

.cta-card .cta-notice {
    margin-top: auto;
    margin-left: -32px;
    margin-right: -32px;
    margin-bottom: -32px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    width: calc(100% + 64px);
}

.cta-notice {
    background-color: var(--color-background);
    color: var(--color-text);
    padding: 16px var(--spacing-md);
    border-radius: 0;
    border-top: 0.5px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    text-align: center;
    flex-wrap: wrap;
}

.cta-notice-emoji {
    font-size: 24px;
    display: inline-block;
    flex-shrink: 0;
}

.cta-notice-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: var(--color-text);
}

.cta-notice-link {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cta-notice-link:hover {
    opacity: 0.7;
}

.cta-notice-button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    padding-right: 8px;
    border: 1px solid var(--color-text);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s, background-color 0.2s;
    text-decoration: none;
}

.cta-notice-button:hover {
    opacity: 0.9;
    background-color: rgba(17, 17, 17, 0.05);
}

.cta-heading {
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.84px;
    margin-bottom: 0;
    max-width: 566px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext {
    font-size: 18px;
    margin-bottom: -4px;
}

.cta-pricing {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.96px;
    margin-bottom: var(--spacing-lg);
}

/* FAQ Section */
.faq-section {
    padding-top: var(--spacing-3xl);
    padding-bottom: 0;
    margin-bottom: 56px;
}

.faq-content {
    display: grid;
    grid-template-columns: 364px 1fr;
    gap: var(--spacing-2xl);
    max-width: 1120px;
    margin: 0 auto;
}

.faq-heading {
    text-align: left;
    margin-bottom: var(--spacing-2xl);
    font-size: 46px;
    letter-spacing: -1.84px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    padding: 4px var(--spacing-sm) 0 var(--spacing-sm);
    gap: 8px;
    margin-left: var(--spacing-3xl);
}

.faq-item {
    overflow: hidden;
}

.faq-item.faq-transitioning .faq-question,
.faq-item.faq-transitioning .faq-answer {
    border: 0.5px solid transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-item.faq-transitioning:hover .faq-question,
.faq-item.faq-transitioning:hover .faq-answer,
.faq-item.faq-transitioning:hover .faq-question[aria-expanded="true"],
.faq-item.faq-transitioning:hover .faq-question[aria-expanded="true"] + .faq-answer {
    background-color: transparent !important;
    border-color: transparent !important;
    color: var(--color-text) !important;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.2s ease, 
                background-color 0.2s ease,
                border-color 0s ease;
    border-radius: 16px;
    margin: 0 calc(-1 * var(--spacing-sm)) 0 0;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    box-sizing: border-box;
    border: 0.5px solid transparent;
}

.faq-item:hover .faq-question:not([aria-expanded="true"]) {
    color: var(--color-primary);
    background-color: rgba(47, 46, 247, 0.05);
    border-radius: 16px;
    border-color: var(--color-border);
    transition: color 0.2s ease, 
                background-color 0.2s ease,
                border-color 0s ease;
}

.faq-item:hover .faq-question:not([aria-expanded="true"]) + .faq-answer {
    border: none;
}

.faq-item:hover .faq-question[aria-expanded="true"],
.faq-item[aria-expanded="true"]:hover .faq-question {
    color: var(--color-primary);
    background-color: rgba(47, 46, 247, 0.05);
    border-radius: 16px 16px 0 0 !important;
    border-color: var(--color-border);
    border-bottom: none;
    transition: color 0.2s ease, 
                background-color 0.2s ease,
                border-color 0s ease;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-icon path {
    transition: stroke 0.2s ease;
}

.faq-item:hover .faq-question .faq-icon path {
    stroke: var(--color-primary);
}

.faq-question[aria-expanded="true"] {
    border-radius: 16px 16px 0 0 !important;
    border: 0.5px solid transparent;
    border-bottom: none;
    transition: color 0.2s ease, 
                background-color 0.2s ease,
                border-color 0s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.2s ease,
                border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    width: 100%;
    margin: 0 calc(-1 * var(--spacing-sm)) var(--spacing-sm) 0;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    padding-bottom: 0;
    border-radius: 0;
    box-sizing: border-box;
    border: 0.5px solid transparent;
    border-top: none;
    visibility: hidden;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: none;
    padding-bottom: var(--spacing-sm);
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    border: 0.5px solid transparent;
    border-top: none;
    visibility: visible;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.2s ease,
                border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0s ease;
}

.faq-item:hover .faq-question[aria-expanded="true"] + .faq-answer {
    background-color: rgba(47, 46, 247, 0.05);
    padding-bottom: var(--spacing-sm) !important;
    border-radius: 0 0 16px 16px;
    border-color: var(--color-border);
    border-top: none;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.2s ease,
                border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0s ease;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text-light);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.faq-close-all {
    width: 100%;
    display: flex;
    align-items: center;
    padding: var(--spacing-sm) 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.2s ease, 
                background-color 0.2s ease, 
                border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-sm);
    margin: var(--spacing-xs) calc(-1 * var(--spacing-sm)) 0 0;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    box-sizing: border-box;
    background-color: transparent;
    border: none;
}

.faq-close-all:hover {
    color: var(--color-primary);
    background-color: rgba(47, 46, 247, 0.05);
    border-radius: 16px;
}

.faq-close-all:hover .faq-icon path {
    stroke: var(--color-primary);
}

.faq-close-all span {
    flex: 1;
}

.faq-close-all .faq-icon {
    margin-left: auto;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.faq-close-all .faq-icon path {
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* News Section */
.news-section {
    padding-top: 56px;
    padding-bottom: var(--spacing-xl);
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 60px;
}

.news-card {
    background: var(--color-background);
    border: 0.5px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px 32px 40px var(--spacing-lg);
    display: block;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.news-label {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.news-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.28px;
    max-width: 720px;
}

.news-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.news-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.news-author picture {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    line-height: 0;
}

.news-author-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.news-author-name {
    font-size: 16px;
    font-weight: 500;
}

.news-author-role {
    font-size: 16px;
    font-weight: 400;
}

.news-button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid var(--color-text);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s, background-color 0.2s;
    text-decoration: none;
    margin-right: 0;
    width: fit-content;
    flex-shrink: 0;
}

.news-button:hover {
    opacity: 0.9;
    background-color: rgba(17, 17, 17, 0.05);
}

.news-logo {
    display: none;
}

.news-logo img {
    display: none;
}

/* Footer */
.footer {
    padding: var(--spacing-3xl) 0 40px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: 96px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-address,
.footer-contact {
    font-size: 16px;
    line-height: 1.5;
    font-style: normal;
}

.footer-email {
    font-weight: 600;
}

.footer-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-link-text {
    font-size: 16px;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.footer-legal {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
}

/* ============================================
   RESPONSIVE DESIGN BREAKPOINTS GUIDE
   ============================================
   
   BREAKPOINT STRATEGY:
   - Desktop (default): Base styles apply to all screens
   - Tablet: max-width: 1024px (overrides desktop)
   - Mobile: max-width: 768px (overrides desktop + tablet)
   - Small Mobile: max-width: 480px (overrides mobile)
   - Very Small Mobile: max-width: 320px (overrides all)
   
   BEST PRACTICES FOR EDITING:
   1. Always test changes at multiple breakpoints
   2. When changing a style in one breakpoint, check if it needs
      to be reset in smaller breakpoints
   3. Use specific selectors to avoid unintended cascading
   4. Group related styles by component within each breakpoint
   5. Consider using CSS custom properties for breakpoint values
   
   COMMON PITFALLS:
   - Changing a property in mobile that affects tablet
   - Forgetting to reset a property in smaller breakpoints
   - Using overly broad selectors that affect multiple components
   
   TIP: When making changes, search for the selector across all
   breakpoints to see where else it's defined.
   
   ============================================ */

/* ============================================
   RESPONSIVE DESIGN - TABLET (max-width: 1024px)
   ============================================
   Styles for tablet devices. These override base styles
   but are themselves overridden by mobile breakpoints below.
   ============================================ */
@media (max-width: 1024px) {
    /* --- Hero Section --- */
    .hero-headline {
        font-size: 48px;
        letter-spacing: -1.92px;
        line-height: 1.1;
    }
    
    .hero-subheadline {
        font-size: 20px;
        line-height: 1.3;
    }
    
    /* --- Section Headings --- */
    .section-heading {
        font-size: 48px;
        letter-spacing: -1.92px;
        line-height: 1.2;
    }
    
    /* --- Testimonials Grid (screens < 1025px) --- */
    .features-section {
        padding-top: 72px;
    }
    
    .testimonials-wrapper {
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-2xl);
    }
    
    /* Center the last card when there are 3 cards (odd number in 2-column grid) */
    /* Make it the same width as the top 2 cards by calculating: (100% - gap) / 2 */
    .testimonials-grid .testimonial-card:last-child:nth-child(3) {
        grid-column: 1 / -1;
        width: calc((100% - var(--spacing-lg)) / 2);
        max-width: calc((100% - var(--spacing-lg)) / 2);
        justify-self: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Hide carousel buttons - not needed for grid layout */
    .testimonials-scroll-button {
        display: none !important;
    }
    
    .testimonial-card-text {
        font-size: 20px;
        line-height: 1.4;
    }
    
    /* --- Features Grid --- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-card-large {
        grid-column: span 1;
    }
    
    .feature-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .feature-description {
        font-size: 18px;
        line-height: 1.4;
    }
    
    /* --- Comparison Table --- */
    .comparison-table {
        max-width: 992px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .comparison-table::after {
        display: none;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        font-size: 16px;
        padding: var(--spacing-md) 4px;
    }
    
    .comparison-option {
        font-size: 18px;
    }
    
    .comparison-feature {
        font-size: 16px;
    }
    
    /* --- FAQ Section --- */
    .faq-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }
    
    .faq-heading {
        font-size: 40px;
        letter-spacing: -1.6px;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .faq-list {
        margin-left: auto;
        margin-right: auto;
        width: 600px;
        max-width: 100%;
    }
    
    /* --- Footer --- */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    /* --- CTA Section --- */
    .cta-heading {
        font-size: 40px;
        letter-spacing: -1.6px;
    }
    
    /* --- News Section --- */
    .news-title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (max-width: 768px)
   ============================================
   Styles for mobile devices. These override both base
   and tablet styles. Changes here affect mobile only.
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-md: 16px;
        --spacing-lg: 20px;
        --spacing-xl: 32px;
        --spacing-2xl: 40px;
        --spacing-3xl: 56px;
        --banner-height: 75px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent horizontal overflow on mobile */
    body {
        overflow-x: hidden;
    }
    
    /* ============================================
       COMPONENT SECTIONS - MOBILE BREAKPOINT
       ============================================
       Use these markers to quickly find and edit
       specific components within this breakpoint.
       ============================================ */
    
    /* --- Top Banner --- */
    .top-banner {
        padding: var(--spacing-xs) 0 8px 0;
    }
    
    .top-banner .container {
        text-align: center;
        column-gap: 16px;
        row-gap: 4px;
    }
    
    .banner-text {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .banner-emoji-wrapper {
        padding: 4px;
        margin-right: 2px;
    }
    
    .banner-emoji {
        font-size: 20px;
    }
    
    .banner-button {
        font-size: 14px;
        padding: 6px 16px;
        padding-right: 10px;
        margin-top: 0;
        min-height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    /* --- Hero Section --- */
    .hero {
        padding: 40px 0 0;
    }
    
    .hero-logo {
        margin-bottom: var(--spacing-sm);
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-headline {
        font-size: 32px;
        letter-spacing: -1.28px;
        line-height: 1.1;
        margin-bottom: var(--spacing-md);
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subheadline {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 8px;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-testimonial {
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    .profile-img {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text-content {
        text-align: left;
        width: 100%;
    }
    
    .testimonial-quote-text {
        font-size: 16px;
        line-height: 1.4;
        display: block;
        margin-bottom: 4px;
    }
    
    .testimonial-author-text {
        font-size: 14px;
        line-height: 1.4;
        display: block;
    }
    
    .hero-visual-wrapper {
        padding-top: 0;
    }
    
    .hero-visual {
        min-height: 200px;
    }
    
    .hero-charger,
    .hero-van {
        display: none;
    }
    
    /* --- Features Section --- */
    .features-section {
        padding: 40px 0 var(--spacing-2xl) 0;
    }
    
    .features-section .section-heading {
        margin-bottom: var(--spacing-2xl);
        padding: 0;
    }
    
    .section-heading {
        font-size: 32px;
        letter-spacing: -1.28px;
        line-height: 1.2;
        margin-bottom: var(--spacing-xl);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* --- Testimonials Grid --- */
    .testimonials-wrapper {
        margin: 0;
        padding: 0;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-2xl);
    }
    
    /* Center the last card when there are 3 cards (odd number in 2-column grid) */
    /* Make it the same width as the top 2 cards by calculating: (100% - gap) / 2 */
    .testimonials-grid .testimonial-card:last-child:nth-child(3) {
        grid-column: 1 / -1;
        width: calc((100% - var(--spacing-lg)) / 2);
        max-width: calc((100% - var(--spacing-lg)) / 2);
        justify-self: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Hide carousel buttons */
    .testimonials-scroll-button {
        display: none !important;
    }
    
    .testimonial-card-text {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .testimonial-card-author {
        gap: var(--spacing-sm);
    }
    
    .author-img {
        width: 44px;
        height: 44px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .author-title {
        font-size: 14px;
        line-height: 1.3;
    }
    
    /* --- Featured In --- */
    .featured-in {
        margin-top: 48px;
        margin-bottom: 48px;
    }
    
    .featured-label {
        font-size: 14px;
        margin-bottom: var(--spacing-sm);
    }
    
    .featured-logos {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }
    
    .featured-logo {
        padding: var(--spacing-sm);
        flex-shrink: 0;
    }
    
    .featured-logo img {
        height: 24px;
        width: auto;
        object-fit: contain;
    }
    
    /* --- Features Grid --- */
    .features-grid {
        gap: var(--spacing-lg);
    }
    
    .feature-card {
        padding: var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);
    }
    
    .feature-content {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-description {
        font-size: 16px;
        line-height: 1.4;
        margin-top: var(--spacing-xs);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature-card:has(.feature-list) .feature-content {
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-card:has(.feature-list) .feature-description {
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-xs);
        justify-content: center;
        align-items: center;
        margin-top: var(--spacing-sm);
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
    
    .feature-list li {
        font-size: 14px;
        line-height: 1.3;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }
    
    .feature-list li svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-visual {
        min-height: 120px;
    }
    
    .feature-card-large .feature-visual {
        margin-left: calc(-1 * var(--spacing-md));
        margin-right: calc(-1 * var(--spacing-md));
    }
    
    /* --- Comparison Section --- */
    .comparison-section {
        padding: var(--spacing-lg) 0 var(--spacing-2xl) 0;
        position: relative;
    }
    
    .comparison-section .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .comparison-section .section-heading {
        font-size: 32px;
        letter-spacing: -1.28px;
        white-space: normal;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .comparison-table {
        margin: var(--spacing-lg) auto 0;
        width: 100%;
        max-width: 560px;
        border-radius: var(--border-radius-sm);
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        background: var(--color-white);
        position: relative;
        /* Always show scrollbar when scrollable - use grey colors */
        scrollbar-width: thin;
        scrollbar-color: var(--color-text-light) var(--color-border);
        /* Reserve space for scrollbar to prevent layout shift */
        padding-bottom: 12px;
    }
    
    .comparison-table::-webkit-scrollbar {
        height: 10px;
        -webkit-appearance: none;
        appearance: none;
        /* Force scrollbar to always be visible */
        display: block;
    }
    
    .comparison-table::-webkit-scrollbar-track {
        background: var(--color-border);
        border-radius: 5px;
        border: 1px solid var(--color-border);
        /* Make track always visible with solid background */
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    
    .comparison-table::-webkit-scrollbar-thumb {
        background: var(--color-white);
        border-radius: 5px;
        border: 2px solid var(--color-text-light);
        min-height: 10px;
        /* Strong outline to ensure visibility */
        -webkit-box-shadow: 0 0 0 1px var(--color-text-light);
        box-shadow: 0 0 0 1px var(--color-text-light);
    }
    
    .comparison-table::-webkit-scrollbar-thumb:hover {
        background: var(--color-border);
        border-color: var(--color-text);
    }
    
    .comparison-table::-webkit-scrollbar-thumb:active {
        background: var(--color-text-light);
        border-color: var(--color-text);
    }
    
    /* Blue background disabled on mobile - doesn't work with horizontal scrolling */
    .comparison-table::after {
        display: none;
    }
    
    /* Full-height white background for feature column on mobile */
    .comparison-table::before {
        content: '';
        position: absolute;
        top: -9999px;
        bottom: 0;
        left: 0;
        width: calc(160px + 12px);
        background-color: var(--color-white);
        z-index: 0;
        pointer-events: none;
        display: none;
    }
    
    .comparison-table.scrollable::after {
        /* Keep background visible even when scrollable */
        display: block;
    }
    
    .comparison-table.scrollable.scrolled::before {
        display: block;
    }
    
    .comparison-header {
        display: grid;
        grid-template-columns: 160px repeat(3, 125px);
        gap: 0px;
        padding: var(--spacing-sm) 12px;
        font-size: 14px;
        min-width: min-content;
        background: var(--color-white);
        z-index: 1;
        border-bottom: 1px solid var(--color-border);
    }
    
    .comparison-feature-label {
        font-weight: 600;
        font-size: 12px;
        color: var(--color-text-light);
        display: flex;
        align-items: center;
        position: sticky;
        top: 0;
        left: 12px;
        z-index: 3;
        padding-right: var(--spacing-xs);
        background-color: var(--color-white);
        min-height: calc(1em + 2px);
    }
    
    /* Full-height vertical column with drop shadow - only visible when user has scrolled right */
    /* Add shadow to sticky elements - since they're sticky, the shadow stays fixed */
    .comparison-table.scrollable.scrolled .comparison-feature-label::after,
    .comparison-table.scrollable.scrolled .comparison-feature::after {
        content: '';
        position: absolute;
        top: -10000px;
        bottom: -10000px;
        right: 0;
        width: 0;
        pointer-events: none;
        z-index: 3;
        /* Add drop shadow to right edge for scroll affordance */
        box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-option {
        text-align: center;
        font-weight: 600;
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-width: 90px;
    }
    
    .comparison-option-image {
        max-height: 40px;
        width: auto;
    }
    
    .comparison-option span {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .comparison-row {
        display: grid;
        grid-template-columns: 160px repeat(3, 125px);
        gap: 0px;
        padding: var(--spacing-sm) 12px;
        align-items: center;
        min-width: min-content;
        border-bottom: 1px solid var(--color-border);
    }
    
    .comparison-row:first-child {
        border-bottom: none;
    }
    
    .comparison-row:last-child {
        border-bottom: none;
    }
    
    .comparison-feature {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.4;
        text-align: left;
        position: sticky;
        top: 0;
        left: 12px;
        z-index: 3;
        padding-right: var(--spacing-xs);
        background-color: var(--color-white);
    }
    
    .comparison-cell {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 32px;
    }
    
    .comparison-cell svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .comparison-header::after {
        display: none;
    }
    
    .comparison-row::after {
        display: none;
    }
    
    
    /* --- CTA Section --- */
    .cta-section {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }
    
    .cta-card {
        padding: 32px;
        min-height: auto;
        margin: 0 auto;
        max-width: 480px;
        box-sizing: border-box;
    }
    
    .cta-card .cta-notice {
        margin-left: -32px;
        margin-right: -32px;
        margin-bottom: -32px;
        width: calc(100% + 64px);
    }
    
    .cta-content {
        gap: var(--spacing-sm);
    }
    
    .cta-heading {
        font-size: 28px;
        letter-spacing: -1.12px;
        line-height: 1.2;
        margin-bottom: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-subtext {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: -8px;
    }
    
    .cta-pricing {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
    
    .cta-notice {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 16px var(--spacing-md);
        text-align: center;
    }
    
    .cta-notice-text {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .cta-notice-button {
        font-size: 14px;
        padding: 8px 16px;
        padding-right: 10px;
        width: 100%;
        max-width: 240px;
        justify-content: center;
        min-height: 36px;
    }
    
    /* --- FAQ Section --- */
    .faq-section {
        padding-top: var(--spacing-2xl);
        padding-bottom: 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .faq-heading {
        font-size: 32px;
        letter-spacing: -1.28px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: var(--spacing-lg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq-list {
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        gap: var(--spacing-xs);
        width: 100%;
        max-width: 600px;
    }
    
    .faq-question {
        font-size: 16px;
        line-height: 1.4;
        padding: var(--spacing-sm);
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
        min-height: 44px;
    }
    
    .faq-answer p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .faq-close-all {
        font-size: 16px;
        padding: var(--spacing-sm);
        margin-top: var(--spacing-xs);
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* --- News Section --- */
    .news-section {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
    }
    
    .news-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: var(--spacing-md);
        position: relative;
    }
    
    .news-content {
        gap: var(--spacing-sm);
    }
    
    .news-label {
        font-size: 18px;
    }
    
    .news-logo {
        display: none;
    }
    
    .news-logo img {
        display: none;
    }
    
    .news-title {
        font-size: 22px;
        letter-spacing: -0.88px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .news-author-row {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }
    
    .news-author {
        gap: var(--spacing-sm);
        flex: 1;
        min-width: 0;
    }
    
    .news-author-img {
        width: 40px;
        height: 40px;
    }
    
    .news-author-name {
        font-size: 14px;
    }
    
    .news-button {
        font-size: 14px;
        padding: 8px 16px;
        margin-right: 0;
        width: auto;
        flex-shrink: 0;
        justify-content: center;
        min-height: 36px;
    }
    
    /* --- Footer --- */
    .footer {
        padding: var(--spacing-2xl) 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }
    
    .footer-column {
        gap: var(--spacing-sm);
    }
    
    .footer-address,
    .footer-contact,
    .footer-link-text {
        font-size: 15px;
        line-height: 1.5;
        font-style: normal;
    }
    
    .footer-bottom {
        padding-top: 40px;
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        padding-bottom: 0;
    }
    
    .footer-copyright {
        font-size: 15px;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-legal {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* ============================================
   RESPONSIVE DESIGN - VERY SMALL MOBILE (max-width: 320px)
   ============================================
   Styles for very small mobile devices. These override
   all previous breakpoints. Use with caution - test
   that changes don't break larger mobile sizes.
   ============================================ */
@media (max-width: 320px) {
    :root {
        --spacing-xs: 6px;
        --spacing-sm: 10px;
        --spacing-md: 12px;
        --spacing-lg: 16px;
        --spacing-xl: 20px;
        --spacing-2xl: 28px;
        --spacing-3xl: 36px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Top Banner */
    .top-banner {
        padding: 8px 0 16px 0;
    }
    
    .top-banner .container {
        gap: 4px;
        padding: 0 var(--spacing-sm);
    }
    
    .banner-text {
        font-size: 13px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 4px;
        margin: 0;
    }
    
    .banner-emoji-wrapper {
        padding: 4px;
        margin-right: 2px;
    }
    
    .banner-emoji {
        font-size: 18px;
    }
    
    .banner-button {
        font-size: 13px;
        padding: 6px 16px;
        padding-right: 10px;
        min-height: 32px;
        width: auto;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
        margin-left: -2px;
        margin-top: 0;
        line-height: 1;
    }
    
    .banner-button svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        transform: translateY(0);
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 8px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .hero-headline {
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: 1.1;
        margin-bottom: var(--spacing-sm);
        padding: 0;
    }
    
    .hero-subheadline {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 8px;
        padding: 0;
    }
    
    .hero-testimonial {
        padding: 0;
        margin-bottom: var(--spacing-md);
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        width: fit-content;
    }
    
    .profile-img {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-quote-text {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .testimonial-author-text {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .hero-visual {
        min-height: 160px;
    }
    
    /* Features Section */
    .features-section {
        padding: 24px 0 28px 0;
    }
    
    .features-section .section-heading {
        margin-bottom: 32px;
        padding: 0;
    }
    
    .section-heading {
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: 1.2;
        margin-bottom: var(--spacing-lg);
    }
    
    /* --- Testimonials Stack (vertical layout) --- */
    .testimonials-wrapper {
        margin: 0;
        padding: 0;
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Remove centered 3rd card rule - not needed for vertical stack */
    .testimonials-grid .testimonial-card:last-child:nth-child(3) {
        grid-column: auto;
        width: 100%;
        max-width: 100%;
        justify-self: auto;
    }
    
    /* Hide carousel buttons */
    .testimonials-scroll-button {
        display: none !important;
    }
    
    .testimonials-scroll-button svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-card-text {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }
    
    .author-img {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-title {
        font-size: 12px;
        line-height: 1.2;
    }
    
    /* Featured In */
    .featured-in {
        margin-top: 48px;
        margin-bottom: 48px;
    }
    
    .featured-label {
        font-size: 12px;
        margin-bottom: var(--spacing-md);
    }
    
    .featured-logos {
        gap: 8px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .featured-logo {
        width: 100%;
        max-width: 150px;
        padding: 8px;
        display: flex;
        justify-content: center;
    }
    
    .featured-logo img {
        height: 16px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* Features Grid */
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: var(--spacing-sm) var(--spacing-sm) 0 var(--spacing-sm);
    }
    
    .feature-content {
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-description {
        font-size: 14px;
        line-height: 1.4;
        margin-top: var(--spacing-xs);
    }
    
    .feature-list {
        gap: 6px;
        margin-top: var(--spacing-xs);
    }
    
    .feature-list li {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .feature-list li svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-visual {
        min-height: 140px;
    }
    
    .feature-card-large .feature-visual {
        margin-left: calc(-1 * var(--spacing-sm));
        margin-right: calc(-1 * var(--spacing-sm));
    }
    
    /* Comparison Section */
    .comparison-section {
        padding: 20px 0 24px 0;
    }
    
    .comparison-section .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    .comparison-section .section-heading {
        font-size: 24px;
        letter-spacing: -0.96px;
        padding: 0;
    }
    
    .comparison-table {
        margin: var(--spacing-md) auto 0;
        width: 100%;
        max-width: 100%;
        /* Always show scrollbar when scrollable - use grey colors */
        scrollbar-width: thin;
        scrollbar-color: var(--color-text-light) var(--color-border);
        /* Reserve space for scrollbar to prevent layout shift */
        padding-bottom: 12px;
    }
    
    .comparison-table::-webkit-scrollbar {
        height: 10px;
        -webkit-appearance: none;
        appearance: none;
        /* Force scrollbar to always be visible */
        display: block;
    }
    
    .comparison-table::-webkit-scrollbar-track {
        background: var(--color-border);
        border-radius: 5px;
        border: 1px solid var(--color-border);
        /* Make track always visible with solid background */
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    
    .comparison-table::-webkit-scrollbar-thumb {
        background: var(--color-white);
        border-radius: 5px;
        border: 2px solid var(--color-text-light);
        min-height: 10px;
        /* Strong outline to ensure visibility */
        -webkit-box-shadow: 0 0 0 1px var(--color-text-light);
        box-shadow: 0 0 0 1px var(--color-text-light);
    }
    
    .comparison-table::-webkit-scrollbar-thumb:hover {
        background: var(--color-border);
        border-color: var(--color-text);
    }
    
    .comparison-table::-webkit-scrollbar-thumb:active {
        background: var(--color-text-light);
        border-color: var(--color-text);
    }
    
    /* Blue background disabled on mobile - doesn't work with horizontal scrolling */
    .comparison-table::after {
        display: none;
    }
    
    /* Full-height white background for feature column on very small mobile */
    .comparison-table::before {
        content: '';
        position: absolute;
        top: -9999px;
        bottom: 0;
        left: 0;
        width: calc(110px + var(--spacing-sm));
        background-color: var(--color-white);
        z-index: 0;
        pointer-events: none;
        display: none;
    }
    
    .comparison-table.scrollable.scrolled::before {
        display: block;
    }
    
    /* Full-height vertical column with drop shadow - only visible when user has scrolled right */
    /* Add shadow to sticky elements - since they're sticky, the shadow stays fixed */
    .comparison-table.scrollable.scrolled .comparison-feature-label::after,
    .comparison-table.scrollable.scrolled .comparison-feature::after {
        content: '';
        position: absolute;
        top: -10000px;
        bottom: -10000px;
        right: 0;
        width: 0;
        pointer-events: none;
        z-index: 3;
        /* Add drop shadow to right edge for scroll affordance */
        box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-header {
        grid-template-columns: 110px repeat(3, 90px);
        gap: 4px;
        padding: var(--spacing-xs) 0px;
        font-size: 12px;
    }
    
    .comparison-feature-label {
        font-size: 10px;
        top: 0;
        left: var(--spacing-sm);
        background-color: var(--color-white);
        min-height: calc(1em + 2px);
    }
    
    .comparison-option {
        font-size: 10px;
        gap: 3px;
        min-width: 75px;
    }
    
    .comparison-option-image {
        max-height: 32px;
    }
    
    .comparison-option span {
        font-size: 9px;
        line-height: 1.1;
    }
    
    .comparison-row {
        grid-template-columns: 110px repeat(3, 90px);
        gap: 4px;
        padding: var(--spacing-xs) 0px;
    }
    
    .comparison-feature {
        font-size: 10px;
        line-height: 1.3;
        top: 0;
        left: var(--spacing-sm);
        background-color: var(--color-white);
    }
    
    .comparison-cell {
        min-height: 28px;
    }
    
    .comparison-cell svg {
        width: 16px;
        height: 16px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 24px 0;
    }
    
    .cta-card {
        padding: 32px;
        margin: 0;
    }
    
    .cta-card .cta-notice {
        margin-left: -32px;
        margin-right: -32px;
        margin-bottom: -32px;
        width: calc(100% + 64px);
    }
    
    .cta-content {
        gap: var(--spacing-xs);
    }
    
    .cta-heading {
        font-size: 22px;
        letter-spacing: -0.88px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .cta-subtext {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: -6px;
    }
    
    .cta-pricing {
        font-size: 14px;
        letter-spacing: -0.56px;
    }
    
    .cta-notice {
        padding: 16px var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .cta-notice-text {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .cta-notice-button {
        font-size: 12px;
        padding: 6px 12px;
        padding-right: 8px;
        min-height: 32px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding-top: 24px;
        padding-bottom: 0;
        margin-bottom: 24px;
    }
    
    .faq-content {
        gap: var(--spacing-md);
        padding: 0;
    }
    
    .faq-heading {
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }
    
    .faq-list {
        gap: 6px;
        padding: 0;
    }
    
    .faq-question {
        font-size: 14px;
        line-height: 1.3;
        padding: var(--spacing-xs);
        min-height: 40px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .faq-close-all {
        font-size: 14px;
        padding: var(--spacing-xs);
        min-height: 36px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    /* News Section */
    .news-section {
        padding-top: 24px;
        padding-bottom: var(--spacing-md);
        margin-bottom: 24px;
    }
    
    .news-card {
        padding: 24px;
        gap: var(--spacing-sm);
    }
    
    .news-content {
        gap: var(--spacing-xs);
    }
    
    .news-label {
        font-size: 16px;
    }
    
    .news-title {
        font-size: 18px;
        letter-spacing: -0.72px;
        line-height: 1.2;
    }
    
    .news-author {
        gap: var(--spacing-xs);
    }
    
    .news-author-img {
        width: 36px;
        height: 36px;
    }
    
    .news-author-name {
        font-size: 12px;
    }
    
    .news-button {
        font-size: 12px;
        padding: 6px 12px;
        min-height: 32px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Footer */
    .footer {
        padding: 24px 0 40px;
    }
    
    .footer-content {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        padding: 0;
    }
    
    .footer-column {
        gap: var(--spacing-xs);
    }
    
    .footer-address,
    .footer-contact,
    .footer-link-text {
        font-size: 13px;
        line-height: 1.4;
        font-style: normal;
    }
    
    .footer-bottom {
        padding-top: 40px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }
    
    .footer-copyright {
        font-size: 13px;
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-legal {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (max-width: 480px)
   ============================================
   Styles for small mobile devices. These override mobile
   styles but are more specific than very small mobile.
   NOTE: This comes after 768px, so it will override
   mobile styles for screens 480px and below.
   ============================================ */
@media (max-width: 480px) {
    :root {
        --spacing-md: 12px;
        --spacing-lg: 16px;
        --spacing-xl: 24px;
        --spacing-2xl: 32px;
        --spacing-3xl: 40px;
        --banner-height: 85px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-headline {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    
    /* --- Testimonials Stack (vertical layout) - same as <320px --- */
    .testimonials-wrapper {
        margin: 0;
        padding: 0;
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Remove centered 3rd card rule - not needed for vertical stack */
    .testimonials-grid .testimonial-card:last-child:nth-child(3) {
        grid-column: auto;
        width: 100%;
        max-width: 100%;
        justify-self: auto;
    }
    
    /* Hide carousel buttons */
    .testimonials-scroll-button {
        display: none !important;
    }
    
    .testimonial-card-text {
        font-size: 16px;
    }
    
    /* --- Featured In --- */
    .featured-logos {
        gap: 8px;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        justify-items: center;
    }
    
    .featured-logo {
        padding: 6px;
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
    }
    
    .featured-logo img {
        height: 20px;
        width: auto !important;
        min-width: 60px;
        max-width: 120px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .cta-heading {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
    
    .faq-heading {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    
    .news-title {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    
    .comparison-section .section-heading {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    
    /* Ensure touch targets are at least 44px */
    .cta-notice-button,
    .news-button {
        min-height: 44px;
    }
    
    .faq-question {
        min-height: 44px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (max-width: 400px)
   ============================================
   Styles for small mobile devices between 400px and 320px.
   ============================================ */
@media (max-width: 400px) {
    /* --- Featured In --- */
    .featured-label {
        margin-bottom: var(--spacing-md);
    }
    
    .featured-logos {
        gap: 8px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .featured-logo {
        padding: 4px;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        flex-basis: auto !important;
    }
    
    .featured-logo {
        width: 100%;
        max-width: 150px;
        display: flex;
        justify-content: center;
    }
    
    .featured-logo img {
        height: 18px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN - VERY SMALL MOBILE (max-width: 362px)
   ============================================
   Styles for very small mobile devices between 362px and 320px.
   ============================================ */
@media (max-width: 362px) {
    /* --- Featured In --- */
    .featured-label {
        margin-bottom: var(--spacing-md);
    }
    
    .featured-logos {
        gap: 8px !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        width: 100%;
        max-width: 100%;
    }
    
    .featured-logo {
        width: 100%;
        max-width: 150px;
        padding: 8px;
        display: flex;
        justify-content: center;
    }
    
    .featured-logo img {
        height: 16px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (max-width: 435px)
   ============================================
   Styles for small mobile devices between 435px and 320px.
   ============================================ */
@media (max-width: 435px) {
    .news-author-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .news-button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
    /* top and height are set dynamically in JavaScript to start from banner bottom */
}

.confetti-wrapper {
    position: absolute;
    pointer-events: none;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--confetti-color);
    opacity: 0;
    z-index: inherit;
    animation: confettiFall linear forwards;
}

/* Long rectangular strips (party popper style) */
.confetti-piece:nth-child(5n+1) {
    width: 24px;
    height: 3px;
    border-radius: 1px;
}

/* Medium strips */
.confetti-piece:nth-child(5n+2) {
    width: 18px;
    height: 3px;
    border-radius: 1px;
}

/* Short strips */
.confetti-piece:nth-child(5n+3) {
    width: 14px;
    height: 3px;
    border-radius: 1px;
}

/* Twirls/Spirals - S-curved strips using extreme border-radius */
.confetti-twirl {
    width: 26px !important;
    height: 5px !important;
    background-color: var(--confetti-color) !important;
    border-radius: 50% 0% 50% 0% / 50% 0% 50% 0% !important;
}

.confetti-twirl:nth-child(even) {
    border-radius: 0% 50% 0% 50% / 0% 50% 0% 50% !important;
}

/* Extra curly twirls - more pronounced curves */
.confetti-curly {
    width: 30px !important;
    height: 7px !important;
    border-radius: 70% 5% 70% 5% / 70% 5% 70% 5% !important;
}

.confetti-curly:nth-child(odd) {
    border-radius: 5% 70% 5% 70% / 5% 70% 5% 70% !important;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(var(--confetti-initial-rotate, 0deg));
    }
    100% {
        opacity: 0;
        transform: translateY(var(--confetti-fall-distance, 100vh)) translateX(var(--confetti-x)) rotate(calc(var(--confetti-initial-rotate, 0deg) + var(--confetti-rotate)));
    }
}

/* Blue background above viewport when at top - only affects overscroll area */
html {
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
}

html.at-top {
    background-color: var(--color-primary);
}

/* Additional overlay to ensure coverage - covers overscroll area above viewport only */
body::before {
    content: '';
    position: fixed;
    top: -10000px;
    left: 0;
    right: 0;
    height: 10000px;
    background-color: var(--color-primary);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

body.at-top::before {
    opacity: 1;
}

/* Blue background overlay element - covers area above viewport including overscroll */
.blue-background-overlay {
    position: fixed;
    top: -10000px;
    left: 0;
    right: 0;
    height: 10000px;
    background-color: var(--color-primary);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blue-background-overlay.visible {
    opacity: 1;
}
