/* ========================================
   CUSTOM COMPONENT STYLES
   ======================================== */

/* ========================================
   PREMIUM TYPOGRAPHY HIERARCHY
   These styles must load after tailwind.css
   to properly override base font styles
   ======================================== */
.font-display {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

body,
p,
span,
li {
    font-family: 'Inter', sans-serif;
}

/* IL Y A DES REDONDANCES DANS LE CODE. EDITER INPUT.CSS
.pricing-plan-box {
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-plan-box:hover {
    border-color: #e11d48;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.1);
}

.feature-card {
    position: relative;
    cursor: pointer;
}

.feature-icon-box {
    background-color: var(--color-estran-blue);
    transition: all 0.3s ease;
}

.feature-icon-bg-rotate {
    background-color: rgba(225, 29, 72, 0.1);
    transition: transform 0.3s ease;
}

.feature-icon-dot-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(225, 29, 72, 0.2);
}

.feature-card:hover .feature-icon-box {
    background-color: #e11d48;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon-bg-rotate {
    transform: rotate(45deg);
} 

.feature-card:hover svg {
    filter: brightness(1.1);
} */


/* Active link highlighting in navbar */
.ud-menu-scroll.active {
    color: var(--color-estran-green) !important;
    opacity: 1 !important;
}

.sticky .ud-menu-scroll.active {
    color: var(--color-estran-green) !important;
    opacity: 1 !important;
}

/* On mobile, might need different styling if it's in the collapse menu */
@media (min-width: 1024px) {
    #navbarCollapse .ud-menu-scroll.active {
        opacity: 1;
    }
}

/* ========================================
   DASHBOARD CAROUSEL - Fresh implementation
   ======================================== */

/* Carousel container */
.dashboard-carousel {
    width: 100%;
    padding: 40px 0;
    overflow: visible;
}

/* Swiper slide styling */
.dashboard-carousel .swiper-wrapper {
    overflow: visible;
}

.dashboard-carousel .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.85);
    opacity: 0;
    /* Hidden by default */
}

/* Only show prev, active, and next slides (3 visible) */
.dashboard-carousel .swiper-slide-prev,
.dashboard-carousel .swiper-slide-next {
    opacity: 0.5;
}

.dashboard-carousel .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* Make active slide image clickable */
.dashboard-carousel .swiper-slide-active img {
    cursor: pointer;
}

/* Slide image container */
.dashboard-carousel .slide-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-estran-green);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-carousel .swiper-slide-active .slide-image {
    box-shadow: 0 0 40px rgba(0, 207, 93, 0.4), 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Slide title overlay - appears on hover */
.dashboard-carousel .slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 12px;
    background: linear-gradient(to top, rgba(11, 43, 66, 0.9), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.dashboard-carousel .slide-title span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.dashboard-carousel .slide-image:hover .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Pagination dots */
.dashboard-carousel .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.dashboard-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-estran-blue);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.dashboard-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-estran-green);
    width: 28px;
    border-radius: 5px;
}

/* ========================================
   PRICING EXPERIENCE SWITCH
   ======================================== */

.pricing-view-switch {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: max-content;
    margin: 0 auto 2rem;
    padding: 0.5rem;
    border: 1px solid rgba(11, 43, 66, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 34px rgba(11, 43, 66, 0.08);
    backdrop-filter: blur(18px);
}

.pricing-view-chip {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(11, 43, 66, 0.72);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.8rem 1.2rem;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.pricing-view-chip.is-active {
    background: var(--color-estran-blue);
    color: var(--color-estran-white);
    transform: translateY(-1px);
}

.pricing-view-panel[hidden] {
    display: none !important;
}

.pricing-view-panel.is-active {
    animation: pricing-panel-in 0.35s ease;
}

.pricing-view-intro {
    min-height: 8.5rem;
}

.pricing-view-intro-geo {
    margin-bottom: 2.5rem;
}

.geo-pricing-plan-current {
    background: #14354e;
    color: var(--color-estran-white);
}

.geo-pricing-plan-dark {
    background: #14354e;
    border: 2px solid #14354e;
    box-shadow: 0 20px 40px rgba(11, 43, 66, 0.18);
    color: var(--color-estran-white);
}

.geo-pricing-plan-dark .font-display,
.geo-pricing-plan-dark h2,
.geo-pricing-plan-dark h4,
.geo-pricing-plan-dark h5,
.geo-pricing-plan-dark span:not(.checkmark-green):not(.badge-recommended),
.geo-pricing-plan-dark .text-dark {
    color: var(--color-estran-white) !important;
}

.geo-pricing-plan-dark .text-body-color {
    color: rgba(253, 250, 246, 0.8) !important;
}

.geo-pricing-plan-dark .border-gray-100 {
    border-color: rgba(253, 250, 246, 0.2) !important;
}

.geo-pricing-plan-dark a {
    background-color: var(--color-estran-white) !important;
    color: var(--color-estran-blue) !important;
}

.geo-pricing-plan-dark a:hover {
    background-color: #e9e5dd !important;
}

/* ========================================
   FAQ
   ======================================== */

.faq-grid {
    display: grid;
    align-items: start;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    align-self: start;
    border: 1px solid rgba(11, 43, 66, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 34px rgba(11, 43, 66, 0.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    padding: 1.35rem 1.5rem;
    color: var(--color-estran-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(19, 194, 150, 0.14);
    color: var(--color-estran-green);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(11, 43, 66, 0.82);
    font-size: 0.98rem;
    line-height: 1.8;
}

.faq-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14rem;
}

@keyframes pricing-panel-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .pricing-view-intro {
        min-height: 7rem;
    }

    .pricing-view-switch {
        width: calc(100% - 1rem);
        justify-content: center;
    }

    .pricing-view-chip {
        flex: 1 1 0;
        padding: 0.8rem 0.6rem;
        font-size: 0.82rem;
    }
}

/* ========================================
   IMAGE LIGHTBOX MODAL
   ======================================== */

/* Lightbox container - hidden by default */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show lightbox */
.image-lightbox.active {
    display: flex;
    opacity: 1;
}

/* Backdrop with blur */
.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

/* Content container */
.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Image styling */
.lightbox-image {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Closing animation */
.image-lightbox.closing .lightbox-backdrop {
    animation: fadeOut 0.3s ease-out;
}

.image-lightbox.closing .lightbox-content {
    animation: scaleOut 0.3s ease-out;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes scaleOut {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.8);
        opacity: 0;
    }
}


/* Responsive adjustments */
@media (max-width: 640px) {
    .lightbox-close {
        top: -40px;
        right: -10px;
    }

    .lightbox-image {
        max-height: 90vh;
    }
}

/* ========================================
   HERO CURTAIN SLIDER
   ======================================== */

.hero-curtain {
    --hero-curtain-split: 100%;
    position: relative;
    overflow: hidden;
}

.hero-curtain-stage {
    position: relative;
}

.hero-panel-content[hidden] {
    display: none !important;
}

.hero-panel-content.is-active {
    animation: pricing-panel-in 0.4s ease;
}

.hero-curtain-base {
    position: relative;
    z-index: 1;
}

.hero-curtain-panel-main {
    padding-bottom: 0.75rem;
}

.hero-panel-catalog .hero-content {
    max-width: 980px;
}

.hero-catalog-flow {
    max-width: 1240px;
    margin-inline: auto;
}

.hero-catalog-flow > .flex {
    align-items: stretch;
    gap: 0.5rem;
}

.hero-panel-catalog .flow-column {
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-panel-catalog .step-label {
    min-height: 68px;
    margin-top: 0;
}

.hero-catalog-cta {
    min-height: 6rem;
    margin-top: 2.75rem;
    margin-bottom: 0;
    align-content: center;
}

.hero-demo-button {
    min-width: clamp(13rem, 18vw, 16rem);
    padding-inline: 2.25rem;
    border: 1px solid rgba(253, 250, 246, 0.38);
    background: rgba(253, 250, 246, 0.18);
    box-shadow: 0 14px 32px rgba(3, 16, 28, 0.16);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.hero-demo-button:hover {
    box-shadow: 0 18px 40px rgba(3, 16, 28, 0.22);
}

.hero-catalog-mobile {
    margin-top: 1rem;
}

.hero-catalog-mobile-shell {
    position: relative;
    max-width: 44rem;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(253, 250, 246, 0.16);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(253, 250, 246, 0.12) 0%, rgba(94, 139, 164, 0.12) 52%, rgba(11, 43, 66, 0.16) 100%);
    box-shadow: 0 24px 48px rgba(3, 16, 28, 0.16);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.hero-catalog-mobile-shell::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 9rem;
    height: 9rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(19, 194, 150, 0.24) 0%, rgba(19, 194, 150, 0) 70%);
    transform: translate(-25%, -30%);
    pointer-events: none;
}

.hero-catalog-mobile-shell::after {
    content: '';
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 10rem;
    height: 10rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(253, 250, 246, 0.18) 0%, rgba(253, 250, 246, 0) 72%);
    pointer-events: none;
}

.hero-catalog-mobile-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.95rem;
    align-items: stretch;
}

.hero-catalog-mobile-step + .hero-catalog-mobile-step {
    margin-top: 0.9rem;
}

.hero-catalog-mobile-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-catalog-mobile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(19, 194, 150, 0.35);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(19, 194, 150, 0.25), rgba(11, 43, 66, 0.8));
    box-shadow: 0 12px 28px rgba(3, 16, 28, 0.18);
    color: var(--color-estran-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-catalog-mobile-line {
    width: 2px;
    flex: 1;
    min-height: 2.85rem;
    margin-top: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(19, 194, 150, 0.9) 0%, rgba(19, 194, 150, 0.18) 100%);
}

.hero-catalog-mobile-step.is-last .hero-catalog-mobile-line {
    display: none;
}

.hero-catalog-mobile-card {
    position: relative;
    padding: 1rem 1rem 1rem 1.1rem;
    border: 1px solid rgba(253, 250, 246, 0.14);
    border-radius: 24px;
    background: rgba(7, 31, 48, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 30px rgba(3, 16, 28, 0.14);
    text-align: left;
}

.hero-catalog-mobile-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(19, 194, 150, 1) 0%, rgba(19, 194, 150, 0.08) 100%);
}

.hero-catalog-mobile-title {
    margin: 0;
    color: var(--color-estran-white);
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-catalog-mobile-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.hero-catalog-mobile-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(253, 250, 246, 0.12);
    border-radius: 999px;
    background: rgba(253, 250, 246, 0.08);
    color: rgba(253, 250, 246, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-catalog-mobile-copy {
    margin-top: 0.75rem;
    color: rgba(253, 250, 246, 0.82);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hero-catalog-mobile-shell {
        padding: 0.85rem 0.8rem;
        border-radius: 24px;
    }

    .hero-catalog-mobile-step {
        grid-template-columns: 2.7rem minmax(0, 1fr);
        gap: 0.8rem;
    }

    .hero-catalog-mobile-card {
        padding: 0.95rem 0.9rem 0.95rem 1rem;
        border-radius: 20px;
    }

    .hero-catalog-mobile-title {
        font-size: 1rem;
    }

    .hero-catalog-mobile-chip {
        font-size: 0.76rem;
    }
}

.hero-curtain-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: inset(0 0 0 var(--hero-curtain-split));
    pointer-events: none;
    will-change: clip-path;
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.hero-analytics-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b2b42;
    overflow: hidden;
}

.hero-analytics-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-analytics-image-table {
    object-position: center center;
}

.hero-analytics-image-sources {
    object-position: center bottom;
}

.hero-curtain-controls {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: max-content;
    margin: 0 auto 2rem;
    padding: 0.5rem;
    border: 1px solid rgba(253, 250, 246, 0.18);
    border-radius: 999px;
    background: rgba(11, 43, 66, 0.28);
    backdrop-filter: blur(18px);
}

.hero-curtain-chip {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(253, 250, 246, 0.72);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-curtain-chip.is-active {
    background: var(--color-estran-white);
    color: var(--color-estran-blue);
    transform: translateY(-1px);
}

.hero-panel-geo {
    padding-bottom: 0.75rem;
}

.hero-geo-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(253, 250, 246, 0.18);
    border-radius: 999px;
    background: rgba(253, 250, 246, 0.1);
    color: rgba(253, 250, 246, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-geo-card-grid {
    align-items: stretch;
}

.hero-geo-cta {
    min-height: 6rem;
    margin-top: 3rem;
    margin-bottom: 0;
    align-content: center;
}

.hero-geo-card {
    appearance: none;
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 1.8rem;
    border: 1px solid rgba(253, 250, 246, 0.08);
    border-radius: 28px;
    background: rgba(253, 250, 246, 0.08);
    box-shadow: 0 16px 40px rgba(3, 16, 28, 0.16);
    backdrop-filter: blur(14px);
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hero-geo-card.is-active {
    border-color: rgba(19, 194, 150, 0.44);
    background: rgba(253, 250, 246, 0.12);
    box-shadow: 0 22px 54px rgba(3, 16, 28, 0.24);
}

.hero-geo-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(19, 194, 150, 0.52);
    background: rgba(253, 250, 246, 0.14);
    box-shadow: 0 28px 64px rgba(3, 16, 28, 0.3);
}

.hero-geo-card-dots {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-geo-card:hover .hero-geo-card-dots,
.hero-geo-card.is-active .hero-geo-card-dots {
    opacity: 1;
}

.hero-geo-card-rotate {
    background-color: rgba(74, 108, 247, 0.18);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-geo-card:hover .hero-geo-card-rotate,
.hero-geo-card.is-active .hero-geo-card-rotate {
    transform: rotate(24deg);
    background-color: rgba(19, 194, 150, 0.15);
}

.hero-geo-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 82px;
    padding: 0.45rem;
    border-radius: 20px;
    background: rgba(11, 43, 66, 0.96);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-geo-card:hover .hero-geo-card-media {
    transform: scale(1.05);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.hero-geo-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.hero-geo-card-eyebrow {
    display: inline-flex;
    margin-bottom: 0.65rem;
    color: rgba(19, 194, 150, 0.95);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-geo-card-title {
    margin: 0 0 0.85rem;
    color: var(--color-estran-white);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 1.9vw, 1.78rem);
    line-height: 1.1;
}

.hero-geo-card-description {
    margin: 0;
    color: rgba(253, 250, 246, 0.76);
    font-size: 0.98rem;
    line-height: 1.75;
}

.hero-geo-card:focus-visible,
.hero-geo-card:focus-visible {
    outline: 2px solid rgba(19, 194, 150, 0.92);
    outline-offset: 4px;
}

.geo-audit-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    padding: 2rem;
    border: 1px solid rgba(11, 43, 66, 0.08);
    border-radius: 30px;
    background: linear-gradient(135deg, #0b2b42 0%, #14354e 100%);
    box-shadow: 0 24px 60px rgba(11, 43, 66, 0.16);
    overflow: hidden;
}

.geo-audit-feature::before {
    content: "";
    position: absolute;
    inset: auto -6rem -7rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(19, 194, 150, 0.24) 0%, rgba(19, 194, 150, 0) 70%);
    pointer-events: none;
}

.geo-audit-feature-copy,
.geo-audit-feature-visual {
    position: relative;
    z-index: 1;
}

.geo-audit-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.geo-audit-feature-eyebrow {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: rgba(19, 194, 150, 0.95);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.geo-audit-feature-title {
    margin: 0 0 1rem;
    color: var(--color-estran-white);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3vw, 2.85rem);
    line-height: 1.03;
}

.geo-audit-feature-description {
    margin: 0;
    color: rgba(253, 250, 246, 0.8);
    font-size: 1rem;
    line-height: 1.85;
}

.geo-audit-feature-points {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.geo-audit-feature-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-estran-white);
    line-height: 1.65;
}

.geo-audit-feature-points .checkmark-green {
    margin-top: 0.05rem;
}

.geo-audit-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-audit-feature-frame {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(253, 250, 246, 0.08);
    border-radius: 28px;
    background: rgba(253, 250, 246, 0.08);
    box-shadow: 0 20px 44px rgba(3, 16, 28, 0.24);
    backdrop-filter: blur(10px);
}

.geo-audit-feature-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

@media (max-width: 1024px) {
    .hero-curtain-panel-main {
        padding-bottom: 0.5rem;
    }

    .hero-catalog-cta {
        min-height: 5.5rem;
        margin-top: 2rem;
    }

    .hero-demo-button {
        min-width: 12rem;
    }

    .hero-curtain-controls {
        margin-bottom: 1.5rem;
    }

    .hero-analytics-stage {
        position: absolute;
    }

    .geo-audit-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .geo-audit-feature-title {
        font-size: clamp(1.8rem, 6vw, 2.3rem);
    }
}

@media (max-width: 767px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.15rem 1.15rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.15rem 1.15rem;
    }

    .hero-curtain-controls {
        width: calc(100% - 2rem);
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .hero-curtain-chip {
        flex: 1 1 0;
        padding: 0.75rem 0.5rem;
        font-size: 0.78rem;
    }

    .hero-panel-geo {
        padding-bottom: 0.35rem;
    }

    .hero-geo-cta {
        min-height: 5rem;
        margin-top: 2rem;
    }

    .hero-demo-button {
        width: min(100%, 18rem);
        min-width: 0;
    }

    .hero-geo-card {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .hero-geo-card-media {
        width: 104px;
        height: 74px;
    }

    .hero-geo-card-rotate {
        height: 74px;
        width: 104px;
    }
}

