/* Pricing Page Styles - HashiCorp Inspired */

/* Use shared page transition from page-common.css */

:root {
    --bg-primary: #000000;
    --bg-card: rgba(22, 22, 24, 0.95);
    --bg-card-hover: rgba(28, 28, 32, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
}

/* Animated border angle property */
@property --border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0turn;
}

@keyframes border-spin {
    to {
        --border-angle: 1turn;
    }
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    font-family: "Libre Franklin", -apple-system, system-ui, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    overflow-y: auto;
}

.cover-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 2rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.pricing-hero-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0 4rem;
}

.hero-content {
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeIn 0.5s ease-out 0.1s forwards;
}

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

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.85rem;
    max-width: 420px;
}

.hero-highlight {
    color: var(--text-tertiary) !important;
    font-size: 1rem !important;
}

.hero-cta {
    --main-bg: linear-gradient(
        to bottom,
        rgba(22, 22, 24, 1),
        rgba(22, 22, 24, 1)
    );
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.6),
        rgba(255, 150, 0, 0.8) 25%,
        rgba(255, 120, 0, 0.3) 50%,
        rgba(255, 150, 0, 0.5) 75%,
        rgba(255, 120, 0, 0.6) 100%
    );
    
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border: solid 2px transparent;
    background: 
        var(--main-bg) padding-box,
        var(--gradient-border) border-box,
        var(--main-bg) border-box;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    animation: border-spin 3s linear infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta svg {
    width: 16px;
    height: 16px;
}

.hero-cta:hover {
    animation: border-spin 1.5s linear infinite;
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 1),
        rgba(255, 150, 0, 1) 25%,
        rgba(255, 120, 0, 0.7) 50%,
        rgba(255, 150, 0, 0.9) 75%,
        rgba(255, 120, 0, 1) 100%
    );
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 120, 0, 0.2), 0 0 12px rgba(255, 120, 0, 0.15);
    color: rgba(255, 255, 255, 1);
}

.hero-subtext {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.75rem !important;
}

.hero-content p.hero-contact-link {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.hero-content p.hero-contact-link a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.hero-content p.hero-contact-link a:hover {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta.hero-cta-with-subtext {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.75rem 2.5rem 0.6rem;
    min-width: 340px;
}

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-cta-main svg {
    width: 16px;
    height: 16px;
}

.hero-cta-sub {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.6;
}

.hero-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 3rem;
}

/* Video Showcase */
.video-showcase {
    position: relative;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    animation: videoFadeIn 0.5s ease-out 0.2s forwards;
}

@keyframes videoFadeIn {
    to {
        opacity: 1;
    }
}

.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    background: var(--bg-card);
    aspect-ratio: 1 / 1;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-reflection {
    display: none;
}

/* Preview Showcase Styles */
.preview-showcase {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1.1 / 1;
    transform-style: preserve-3d;
    transform: rotateY(-12deg) rotateX(8deg);
}


.preview-card {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.6),
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    opacity: 0;
    animation: previewFade 9s ease-in-out infinite;
}

.preview-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Reflection effect */
.preview-reflection {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 35%;
    overflow: hidden;
    pointer-events: none;
    transform: scaleY(-1);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 80%);
    filter: blur(1px);
    opacity: 0.5;
}

.preview-reflection img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Stagger the animations - each visible for ~2.5s with smooth transitions */
.preview-card:nth-child(1) {
    animation-delay: 0s;
}

.preview-card:nth-child(2) {
    animation-delay: 3s;
}

.preview-card:nth-child(3) {
    animation-delay: 6s;
}

@keyframes previewFade {
    0% {
        opacity: 0;
        transform: scale(0.98) translateZ(-10px);
    }
    5% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
    28% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
    33% {
        opacity: 0;
        transform: scale(0.98) translateZ(-10px);
    }
    100% {
        opacity: 0;
        transform: scale(0.98) translateZ(-10px);
    }
}

/* Tier Overview Cards */
.tier-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    position: relative;
}

.tier-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

.tier-card-link {
    text-decoration: none;
    cursor: pointer;
}

.tier-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tier-card.popular {
    --main-bg: linear-gradient(
        to bottom,
        rgba(22, 22, 24, 0.98),
        rgba(22, 22, 24, 0.98)
    );
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.5),
        rgba(255, 150, 0, 0.7) 25%,
        rgba(255, 120, 0, 0.25) 50%,
        rgba(255, 150, 0, 0.4) 75%,
        rgba(255, 120, 0, 0.5) 100%
    );
    
    border: solid 2px transparent;
    background: 
        var(--main-bg) padding-box,
        var(--gradient-border) border-box,
        var(--main-bg) border-box;
    
    animation: border-spin 4s linear infinite;
}

.tier-card.popular:hover {
    animation: border-spin 2s linear infinite;
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.8),
        rgba(255, 150, 0, 1) 25%,
        rgba(255, 120, 0, 0.5) 50%,
        rgba(255, 150, 0, 0.7) 75%,
        rgba(255, 120, 0, 0.8) 100%
    );
    box-shadow: 0 4px 24px rgba(255, 120, 0, 0.15), 0 0 16px rgba(255, 120, 0, 0.1);
}

.tier-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 120, 0, 0.3);
    white-space: nowrap;
}

.tier-persona {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.tier-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.tier-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.tier-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s ease;
    margin-top: auto;
}

.tier-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.15s ease;
}

.tier-link:hover {
    color: var(--text-primary);
}

.tier-link:hover svg {
    transform: translateX(2px);
}

/* Detailed Pricing Section */
.pricing-details-section {
    margin-bottom: 4rem;
}

.pricing-details-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: visible;
    margin-top: 1rem;
}

.pricing-cards-container .pricing-card:first-child {
    border-radius: 12px 0 0 12px;
}

.pricing-cards-container .pricing-card:last-child {
    border-radius: 0 12px 12px 0;
}

.pricing-card {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    position: relative;
}

.pricing-card:last-child {
    border-right: none;
}

.pricing-card.featured {
    --main-bg: linear-gradient(
        to bottom,
        rgba(22, 22, 24, 0.98),
        rgba(22, 22, 24, 0.98)
    );
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.5),
        rgba(255, 150, 0, 0.7) 25%,
        rgba(255, 120, 0, 0.25) 50%,
        rgba(255, 150, 0, 0.4) 75%,
        rgba(255, 120, 0, 0.5) 100%
    );
    
    border: solid 2px transparent;
    background: 
        var(--main-bg) padding-box,
        var(--gradient-border) border-box,
        var(--main-bg) border-box;
    
    animation: border-spin 4s linear infinite;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease;
    padding-top: 2.75rem;
}

.pricing-card.featured:hover {
    animation: border-spin 2s linear infinite;
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.8),
        rgba(255, 150, 0, 1) 25%,
        rgba(255, 120, 0, 0.5) 50%,
        rgba(255, 150, 0, 0.7) 75%,
        rgba(255, 120, 0, 0.8) 100%
    );
    box-shadow: 0 4px 24px rgba(255, 120, 0, 0.15), 0 0 16px rgba(255, 120, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 120, 0, 0.3);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.price-block {
    margin-bottom: 1.25rem;
}

.starting-at {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.period {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.35rem;
}

.plan-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    min-height: 52px;
}

.trial-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.btn-signup {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 2rem;
}

.btn-signup:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-signup.btn-primary {
    --main-bg: linear-gradient(
        to bottom,
        rgba(22, 22, 24, 1),
        rgba(22, 22, 24, 1)
    );
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.6),
        rgba(255, 150, 0, 0.8) 25%,
        rgba(255, 120, 0, 0.3) 50%,
        rgba(255, 150, 0, 0.5) 75%,
        rgba(255, 120, 0, 0.6) 100%
    );
    
    border: solid 2px transparent;
    background: 
        var(--main-bg) padding-box,
        var(--gradient-border) border-box,
        var(--main-bg) border-box;
    
    animation: border-spin 3s linear infinite;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.btn-signup.btn-primary:hover {
    animation: border-spin 1.5s linear infinite;
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 1),
        rgba(255, 150, 0, 1) 25%,
        rgba(255, 120, 0, 0.7) 50%,
        rgba(255, 150, 0, 0.9) 75%,
        rgba(255, 120, 0, 1) 100%
    );
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 120, 0, 0.2), 0 0 12px rgba(255, 120, 0, 0.15);
    color: rgba(255, 255, 255, 1);
}

.btn-signup.btn-with-subtext {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.6rem 1.75rem 0.5rem;
}

.btn-main-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-sub-text {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.plan-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
}

/* Blurred/Coming Soon tiers */
.tier-card.blurred,
.pricing-card.blurred {
    position: relative;
    pointer-events: none;
}

.tier-card.blurred > *:not(.tier-badge),
.pricing-card.blurred > *:not(.popular-badge) {
    filter: blur(3px);
    opacity: 0.5;
}

.tier-card.blurred .tier-badge,
.pricing-card.blurred .popular-badge {
    background: linear-gradient(135deg, #666, #444);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tier-card.blurred::after,
.pricing-card.blurred::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    border-radius: inherit;
}

/* Remove animated border from blurred popular tier */
.tier-card.blurred.popular {
    animation: none;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.pricing-card.blurred.featured {
    animation: none;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

/* Disabled button style */
.btn-signup.btn-disabled {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Strikethrough original price - inline version for tier links */
.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 0.25rem;
}

/* Strikethrough original price - large version for price block */
.price-original-large {
    display: block;
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

/* Placeholder skeleton lines */
.placeholder-line {
    display: block;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 0.5rem 0;
}

.placeholder-line.h-lg {
    height: 18px;
}

.placeholder-line.h-xl {
    height: 28px;
}

.placeholder-line.center {
    margin-left: auto;
    margin-right: auto;
}

.placeholder-line.w-40 { width: 40%; }
.placeholder-line.w-50 { width: 50%; }
.placeholder-line.w-55 { width: 55%; }
.placeholder-line.w-60 { width: 60%; }
.placeholder-line.w-65 { width: 65%; }
.placeholder-line.w-70 { width: 70%; }
.placeholder-line.w-75 { width: 75%; }
.placeholder-line.w-80 { width: 80%; }
.placeholder-line.w-85 { width: 85%; }
.placeholder-line.w-90 { width: 90%; }
.placeholder-line.w-100 { width: 100%; }

.placeholder-block {
    margin: 1rem 0;
}

.placeholder-block.center .placeholder-line {
    margin-left: auto;
    margin-right: auto;
}

.placeholder-list {
    list-style: none;
}

.placeholder-list li {
    padding: 0.5rem 0;
}

.placeholder-list li::before {
    display: none;
}

/* Custom Pricing Section */
.custom-pricing-section {
    margin-bottom: 5rem;
}

.custom-pricing-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.custom-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.custom-pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.custom-pricing-card .plan-tag {
    margin-bottom: 1.5rem;
}

.custom-pricing-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-contact svg {
    width: 16px;
    height: 16px;
}

.btn-contact:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

/* Feature Sections */
.features-detail-section {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 4rem;
    border-top: 1px solid var(--border-subtle);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-block-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-block-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.feature-block-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-block-content ul li {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-block-content ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.feature-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
    border-top: 1px solid var(--border-subtle);
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(56, 189, 248, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.final-cta-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-final-cta {
    --main-bg: linear-gradient(
        to bottom,
        rgba(22, 22, 24, 1),
        rgba(22, 22, 24, 1)
    );
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.6),
        rgba(255, 150, 0, 0.8) 25%,
        rgba(255, 120, 0, 0.3) 50%,
        rgba(255, 150, 0, 0.5) 75%,
        rgba(255, 120, 0, 0.6) 100%
    );
    
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: solid 2px transparent;
    background: 
        var(--main-bg) padding-box,
        var(--gradient-border) border-box,
        var(--main-bg) border-box;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    animation: border-spin 3s linear infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-final-cta svg {
    width: 18px;
    height: 18px;
}

.btn-final-cta:hover {
    animation: border-spin 1.5s linear infinite;
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 1),
        rgba(255, 150, 0, 1) 25%,
        rgba(255, 120, 0, 0.7) 50%,
        rgba(255, 150, 0, 0.9) 75%,
        rgba(255, 120, 0, 1) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 120, 0, 0.2), 0 0 16px rgba(255, 120, 0, 0.15);
    color: rgba(255, 255, 255, 1);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .pricing-hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-cta-group .hero-cta,
    .hero-cta-group .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-graphic {
        order: 1;
        margin-top: 2rem;
    }

    .preview-showcase {
        max-width: 320px;
        margin: 0 auto;
    }

    .video-showcase {
        max-width: 100%;
    }

    .tier-overview {
        grid-template-columns: 1fr;
    }

    .pricing-cards-container {
        grid-template-columns: 1fr;
    }

    .pricing-cards-container .pricing-card:first-child {
        border-radius: 12px 12px 0 0;
    }

    .pricing-cards-container .pricing-card:last-child {
        border-radius: 0 0 12px 12px;
    }

    .pricing-card {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .pricing-card:last-child {
        border-bottom: none;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .feature-illustration {
        order: -1;
        min-height: 320px;
    }

    .main-content {
        padding: 1rem 1rem 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .tier-badge {
        right: 1rem;
        font-size: 0.65rem;
    }
}

/* Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #333 #0a0a0a;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #0a0a0a;
}

html::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
