/**
 * Developer Pages - Styles
 * Curl terminal demos, map examples, satellite split, pricing tables
 * Migrated from Ormeo.Web.Corp
 */

.text-gray {
    color: var(--text-secondary);
}

/* ==========================================================================
   Curl Terminal Section (variant 1 - terminal on left, text on right)
   ========================================================================== */

.curl-example-section {
    background: var(--bg-primary);
}

.curl-example-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 900px) {
    .curl-example-content-wrapper {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2rem;
    }
}

.curl-example-box-content {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    max-width: 50%;
}

@media (max-width: 900px) {
    .curl-example-box-content {
        width: 100%;
        max-width: 100%;
    }
}

.curl-example-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 901px) {
    .curl-example-text-content {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .curl-example-text-content {
        width: 100%;
        text-align: center;
    }
}

.curl-example-text-container {
    max-width: 480px;
    padding-left: 5rem;
}

@media (max-width: 900px) {
    .curl-example-text-container {
        padding-left: 0;
        margin: 0 auto;
    }
}

.curl-example-terminal {
    width: 36rem;
    max-width: 36rem;
    min-width: 36rem;
    height: 400px;
    min-height: 400px;
    background: #1a1a1a;
    border-radius: 1rem;
    border: 1px solid #333;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -2px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.curl-example-terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
    height: 2rem;
    flex-shrink: 0;
}

.curl-example-terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.curl-example-terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.curl-example-terminal-dot.red {
    background: #ff5f56;
}

.curl-example-terminal-dot.yellow {
    background: #ffbd2e;
}

.curl-example-terminal-dot.green {
    background: #27ca3f;
}

.curl-example-terminal-title {
    margin-left: 1rem;
    color: #888;
    font-size: 0.875rem;
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.curl-example-terminal-content {
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #00ff00;
    height: calc(100% - 4rem);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-right: 0.5rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.curl-example-prompt {
    color: #00ff00;
}

.curl-example-command {
    color: #ffffff;
}

.curl-example-flag {
    color: #ffbd2e;
}

.curl-example-string {
    color: #ff6b6b;
}

.curl-example-response {
    color: #4ecdc4;
    margin-top: 0.5rem;
}

.curl-example-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #00ff00;
    animation: curl-blink 1s infinite;
    animation-fill-mode: both;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

@keyframes curl-blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .curl-example-terminal {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 350px;
        min-height: 350px;
    }

    .curl-example-terminal-content {
        font-size: 0.65rem;
        height: calc(100% - 4rem);
    }
}

.curl-example-chevron-icon {
    width: 1rem;
    height: 1rem;
}

/* ==========================================================================
   Curl Terminal Section Two (variant 2 - text on left, terminal on right)
   ========================================================================== */

.curl-example-section-two {
    background: var(--bg-primary);
}

.curl-example-content-wrapper-two {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 900px) {
    .curl-example-content-wrapper-two {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

.curl-example-box-content-two {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    max-width: 50%;
}

@media (max-width: 900px) {
    .curl-example-box-content-two {
        width: 100%;
        max-width: 100%;
    }
}

.curl-example-text-content-two {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 901px) {
    .curl-example-text-content-two {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .curl-example-text-content-two {
        width: 100%;
        text-align: center;
    }
}

.curl-example-text-container-two {
    max-width: 480px;
    padding-right: 5rem;
}

@media (max-width: 900px) {
    .curl-example-text-container-two {
        padding-right: 0;
        margin: 0 auto;
    }
}

.curl-example-terminal-two {
    width: 36rem;
    max-width: 36rem;
    min-width: 36rem;
    height: 400px;
    min-height: 400px;
    background: #1a1a1a;
    border-radius: 1rem;
    border: 1px solid #333;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -2px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.curl-example-terminal-header-two {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
    height: 2rem;
    flex-shrink: 0;
}

.curl-example-terminal-dots-two {
    display: flex;
    gap: 0.5rem;
}

.curl-example-terminal-dot-two {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.curl-example-terminal-dot-two.red {
    background: #ff5f56;
}

.curl-example-terminal-dot-two.yellow {
    background: #ffbd2e;
}

.curl-example-terminal-dot-two.green {
    background: #27ca3f;
}

.curl-example-terminal-title-two {
    margin-left: 1rem;
    color: #888;
    font-size: 0.875rem;
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.curl-example-terminal-content-two {
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #00ff00;
    height: calc(100% - 4rem);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-right: 0.5rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.curl-example-prompt-two {
    color: #00ff00;
}

.curl-example-command-two {
    color: #ffffff;
}

.curl-example-flag-two {
    color: #ffbd2e;
}

.curl-example-string-two {
    color: #ff6b6b;
}

.curl-example-response-two {
    color: #4ecdc4;
    margin-top: 0.5rem;
}

.curl-example-cursor-two {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #00ff00;
    animation: curl-blink-two 1s infinite;
    animation-fill-mode: both;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

@keyframes curl-blink-two {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .curl-example-terminal-two {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 350px;
        min-height: 350px;
    }

    .curl-example-terminal-content-two {
        font-size: 0.65rem;
        height: calc(100% - 4rem);
    }
}

.curl-example-chevron-icon-two {
    width: 1rem;
    height: 1rem;
}

/* Custom scrollbar for terminal content */
.curl-example-terminal-content::-webkit-scrollbar,
.curl-example-terminal-content-two::-webkit-scrollbar {
    width: 6px;
}

.curl-example-terminal-content::-webkit-scrollbar-track,
.curl-example-terminal-content-two::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 3px;
}

.curl-example-terminal-content::-webkit-scrollbar-thumb,
.curl-example-terminal-content-two::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.curl-example-terminal-content::-webkit-scrollbar-thumb:hover,
.curl-example-terminal-content-two::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* ==========================================================================
   Map Example Section
   ========================================================================== */

.map-example-section {
    background: var(--bg-primary);
}

.map-example-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 900px) {
    .map-example-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

.map-example-box-content {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

@media (max-width: 900px) {
    .map-example-box-content {
        width: 100%;
        justify-content: center;
    }
}

.map-example-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 901px) {
    .map-example-text-content {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .map-example-text-content {
        width: 100%;
        text-align: center;
    }
}

.map-example-text-container {
    max-width: 480px;
    padding-right: 5rem;
}

@media (max-width: 900px) {
    .map-example-text-container {
        padding-right: 0;
        margin: 0 auto;
    }
}

.map-example-terminal {
    width: 100%;
    max-width: 36rem;
    height: 500px;
    border-radius: 1rem;
    border: 1px solid var(--border-primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.map-example-terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

.map-example-terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.map-example-terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.map-example-terminal-dot.red {
    background: #ff5f56;
}

.map-example-terminal-dot.yellow {
    background: #ffbd2e;
}

.map-example-terminal-dot.green {
    background: #27ca3f;
}

.map-example-terminal-title {
    margin-left: 1rem;
    color: #888;
    font-size: 0.875rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.map-example-terminal-content {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #00ff00;
    height: calc(100% - 3rem);
    overflow-y: auto;
}

.map-example-prompt {
    color: #00ff00;
}

.map-example-command {
    color: #ffffff;
}

.map-example-flag {
    color: #ffbd2e;
}

.map-example-string {
    color: #ff6b6b;
}

.map-example-response {
    color: #4ecdc4;
    margin-top: 0.5rem;
}

.map-example-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #00ff00;
    animation: map-example-blink 1s infinite;
}

@keyframes map-example-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .map-example-terminal {
        max-width: 100%;
        height: 350px;
        margin: 0 auto;
    }

    .map-example-terminal-content {
        font-size: 0.65rem;
    }
}

.map-example-chevron-icon {
    width: 1rem;
    height: 1rem;
}

/* ==========================================================================
   Satellite Image Split Comparison
   ========================================================================== */

.satellite-images-section {
    width: 100%;
}

@media (max-width: 899px) {
    .satellite-images-section {
        position: relative;
        left: -20px;
        width: 100vw;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .satellite-content-wrapper {
        align-items: center;
        max-width: none;
    }

    .satellite-images-split {
        width: 100%;
        max-width: none;
    }
}

.satellite-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 900px) {
    .satellite-content-wrapper {
        flex-direction: row;
    }
}

.satellite-text-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 900px) {
    .satellite-text-content {
        width: 50%;
        justify-content: center;
    }
}

.satellite-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
    text-decoration: none;
}

.satellite-cta-button:hover {
    background-color: #374151;
}

.satellite-chevron-icon {
    width: 1rem;
    height: 1rem;
}

.satellite-image-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

@media (min-width: 900px) {
    .satellite-image-content {
        width: 50%;
    }
}

.satellite-image-content.fullscreen {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
}

.satellite-fullscreen-toggle {
    position: absolute;
    right: 0.25rem;
    top: 1rem;
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.satellite-fullscreen-toggle:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.satellite-fullscreen-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.satellite-images-split {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    cursor: ew-resize;
    user-select: none;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--bg-secondary);
    --slider-position: 50%;
    --clip-position: 50%;
    will-change: transform;
    transform: translateZ(0);
}

.satellite-background-image,
.satellite-foreground-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.satellite-foreground-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 var(--clip-position, 50%) 0 0);
    transition: clip-path 0.1s ease-out;
    will-change: clip-path;
    transform: translateZ(0);
}

.satellite-images-split.dragging .satellite-foreground-container {
    transition: none;
}

.year-label {
    position: absolute;
    bottom: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
    pointer-events: none;
    transform-origin: left bottom;
    opacity: var(--label-opacity, 1);
    transform: scale(var(--label-scale, 1));
}

.satellite-images-split.dragging .year-label {
    transition: none;
}

.left-label {
    left: 0.75rem;
    transform-origin: left bottom;
}

.right-label {
    right: 0.75rem;
    transform-origin: right bottom;
}

.satellite-images-split:hover .year-label {
    background-color: rgba(0, 0, 0, 0.6);
}

.satellite-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    left: var(--slider-position, 50%);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    cursor: ew-resize;
    touch-action: none;
    transition: left 0.1s ease-out;
    will-change: left;
    transform: translateX(-50%) translateZ(0);
}

.satellite-images-split.dragging .satellite-slider-line {
    transition: none;
}

.satellite-slider-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    cursor: ew-resize;
    border-radius: 50%;
    background-color: white;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: opacity 0.2s;
    outline: none;
    will-change: transform;
    transform: translate(-50%, -50%) translateZ(0);
}

.satellite-slider-handle:focus {
    opacity: 1;
}

.satellite-slider-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #374151;
    transition: transform 0.2s ease;
    display: block;
}

.satellite-images-split.hovered .slider-handle {
    opacity: 0;
}

.satellite-images-split.hovered:hover .slider-handle {
    opacity: 1;
}

.satellite-competitor-box {
    position: absolute;
    left: 0;
    top: 2.5rem;
    margin-left: -2.5rem;
    width: 33.333333%;
    max-width: 250px;
    transition: opacity 0.3s ease-in-out;
    display: none;
}

@media (min-width: 900px) {
    .satellite-competitor-box {
        display: block;
    }
}

.satellite-competitor-box.hidden {
    pointer-events: none;
    opacity: 0;
}

.satellite-competitor-content {
    position: relative;
    border-radius: 0.75rem;
}

.satellite-competitor-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 1px solid #1f2937;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: block;
}

.satellite-competitor-pin {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -0.75rem;
    margin-top: -0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.75rem;
    border: 2px solid white;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.satellite-competitor-pin img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

.competitor-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
}

.text-box {
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.5rem;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.sub-text {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.125rem;
}

.image-controls-box {
    transition: opacity 0.3s ease-in-out;
    display: none;
}

@media (min-width: 900px) {
    .image-controls-box {
        display: block;
    }
}

.image-controls-box.hidden {
    pointer-events: none;
    opacity: 0;
}

.controls-content {
    position: absolute;
    bottom: 5rem;
    left: 0;
    margin-left: -4rem;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-primary);
    background-color: var(--bg-primary);
    padding: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.year-select {
    width: 5rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border-primary);
    border-radius: 0.375rem;
    background-color: var(--bg-primary);
    font-size: 0.875rem;
    pointer-events: none;
}

.vs-text {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.filters-toggle {
    height: 2.25rem;
    width: 2.25rem;
    border: 1px solid var(--border-primary);
    border-radius: 0.375rem;
    background-color: var(--bg-primary);
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.filters-toggle:hover {
    background-color: var(--bg-hover);
}

.filters-icon {
    width: 1rem;
    height: 1rem;
}

.satellite-content-wrapper.fullscreen .satellite-text-content {
    display: none;
}

.satellite-content-wrapper.fullscreen .satellite-image-content {
    width: 100%;
    max-width: 72rem;
}

.satellite-content-wrapper.fullscreen .competitor-box,
.satellite-content-wrapper.fullscreen .image-controls-box {
    display: none;
}

/* ==========================================================================
   Pricing Comparison Table
   ========================================================================== */

.pricing-comparison-container {
    padding: 40px 0;
    overflow-x: auto;
    position: relative;
}

@media (max-width: 970px) {
    .pricing-comparison-container {
        overflow: visible !important;
        padding: 0;
        margin: 0;
    }
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    border: none;
}

.pricing-table th,
.pricing-table td {
    padding: 0;
    vertical-align: middle;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    padding: 20px;
    border-bottom: 1px solid var(--border-primary);
}

.pricing-table tbody tr:first-child td {
    border-top: 1px solid var(--border-primary);
}

.pricing-table .spacer {
    width: 20px;
    border-bottom: 1px solid var(--border-primary);
}

.plan-header {
    padding: 0;
}

.plan-header-content {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-primary);
    border-right: 1px solid var(--border-primary);
    border-top: 1px solid var(--border-primary);
    border-radius: 12px 12px 0 0;
    padding: 32px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 48px;
    min-width: 200px;
}

.plan-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.plan-subtitle {
    margin: 0;
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

.plan-cell {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-primary);
    border-right: 1px solid var(--border-primary);
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-primary);
    min-width: 200px;
}

.last-row .plan-cell {
    border-bottom: none;
}

.plan-footer {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-primary);
    border-right: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    border-radius: 0 0 12px 12px;
    height: 32px;
    min-width: 200px;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.info-icon:hover {
    color: var(--text-secondary);
}

.info-icon img {
    opacity: 0.7;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.check-icon img {
    color: #10b981;
    filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(1015%)
        hue-rotate(128deg) brightness(96%) contrast(86%);
}

.dash-icon {
    color: var(--text-quaternary);
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-table tbody tr:hover td:first-child {
    background: var(--bg-hover);
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-table tbody tr:hover .plan-cell {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.pricing-table tbody tr:hover .spacer {
    background: var(--bg-hover);
}

.pricing-table tfoot .spacer {
    border-bottom: none;
}

.pricing-table tfoot td:first-child {
    border-bottom: none;
}

/* Pricing comparison mobile */
.mobile-plan-explorer {
    display: none;
    overflow: visible !important;
    max-width: 100%;
}

@media (max-width: 970px) {
    .pricing-comparison-container {
        margin: 0;
        padding: 0;
        overflow: visible !important;
    }

    .pricing-table {
        display: none;
    }

    .mobile-plan-explorer {
        display: block;
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
    }

    .plan-tabs {
        display: flex;
        background: var(--bg-secondary);
        border-radius: 16px;
        padding: 6px;
        margin-bottom: 2rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
    }

    .plan-tab {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px 8px;
        border: none;
        background: transparent;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
    }

    .plan-tab.active {
        background: var(--bg-primary);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        transform: translateY(-1px);
    }

    .plan-tab .tab-name {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin-bottom: 2px;
    }

    .plan-tab .tab-price {
        font-size: 0.8rem;
        color: var(--text-tertiary);
        font-weight: 500;
    }

    .plan-tab.active .tab-name {
        color: var(--text-primary);
    }

    .plan-tab.active .tab-price {
        color: #3b82f6;
    }

    .mobile-plan-info {
        margin-bottom: 2rem;
    }

    .plan-display {
        background: var(--bg-primary);
        border: 2px solid var(--border-primary);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        color: var(--text-primary);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .plan-name {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--text-primary);
    }

    .plan-price {
        font-size: 1.1rem;
        color: var(--text-tertiary);
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

    .plan-cta {
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 300;
        font-size: 1rem;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .plan-cta.btn-primary {
        background-color: black;
        color: white;
    }

    .plan-cta.btn-primary:hover {
        background-color: rgb(60, 60, 60);
    }

    .plan-cta.btn-outline {
        background-color: var(--bg-primary);
        color: var(--text-primary);
        border: 1px solid var(--border-primary);
    }

    .plan-cta.btn-outline:hover {
        background-color: var(--bg-hover);
    }

    .feature-categories {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
    }

    .feature-category {
        background: var(--bg-primary);
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-primary);
        transition: all 0.3s ease;
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature-category:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .category-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-primary);
    }

    .category-header h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
    }

    .feature-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: visible;
        width: 100%;
    }

    .feature-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-primary);
        transition: all 0.2s ease;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .feature-item:hover {
        background: var(--bg-hover);
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        border-radius: 12px;
    }

    .feature-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: visible;
        word-wrap: break-word;
        word-break: break-word;
    }

    .feature-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.4;
    }

    .feature-desc {
        font-size: 0.8rem;
        color: var(--text-tertiary);
        margin-top: 4px;
        line-height: 1.3;
    }

    .feature-status {
        font-weight: 600;
        font-size: 1rem;
        margin-left: 1rem;
        min-width: 24px;
        text-align: center;
    }

    .feature-status.included {
        color: #10b981;
    }

    .feature-status.not-included {
        color: #94a3b8;
        font-size: 1.2rem;
    }

    .feature-status.paid {
        background: #3b82f6;
        color: white;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        min-width: auto;
    }

    .mobile-plan-footer {
        margin-top: 2rem;
        text-align: center;
    }

    .more-features p {
        color: var(--text-tertiary);
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    .more-features .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .feature-category {
        opacity: 0;
        animation: slideInUp 0.6s ease forwards;
    }

    .feature-category:nth-child(1) { animation-delay: 0.1s; }
    .feature-category:nth-child(2) { animation-delay: 0.2s; }
    .feature-category:nth-child(3) { animation-delay: 0.3s; }
    .feature-category:nth-child(4) { animation-delay: 0.4s; }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .plan-display {
        transition: all 0.4s ease;
    }

    .feature-item {
        transition: all 0.3s ease;
    }

    .feature-status {
        transition: all 0.3s ease;
    }
}

@media (max-width: 768px) {
    .pricing-comparison-container {
        margin: 0;
        padding: 0;
    }

    .plan-tabs {
        margin-bottom: 1.5rem;
    }

    .plan-tab {
        padding: 10px 6px;
    }

    .plan-tab .tab-name {
        font-size: 0.9rem;
    }

    .plan-tab .tab-price {
        font-size: 0.75rem;
    }

    .plan-display {
        padding: 1.5rem 1rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .feature-category {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .category-header h4 {
        font-size: 1rem;
    }

    .feature-name {
        font-size: 0.9rem;
    }

    .feature-desc {
        font-size: 0.75rem;
    }
}
