:root {
    --bg-color: #0A0A0A;
    --text-primary: #EDEDED;
    --text-secondary: #888888;
    --accent-yellow: #6b92e5;
    /* Inspired by Resume ref */
    --accent-cyan: #AEE2FF;
    /* Subtle highlight */
    --line-color: #222222;

    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --max-width: 1000px;
    --grid-gap: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding: 60px 20px;
}

.layout {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Headers & Type */
h1,
h2,
h3,
.brand {
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    font-family: var(--font-mono);
    font-size: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-square {
    width: 24px;
    height: 24px;
    border: 1px solid var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.logo-square img {
    height: 14px;
    filter: invert(1);
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.indicator {
    width: 6px;
    height: 6px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-yellow);
}

/* Grid System (Resume Style) */
.grid-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    /* Fixed Label | Fluid Content */
    gap: var(--grid-gap);
    margin-bottom: 80px;
}

.label-col {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 18px;
    padding-top: 6px;
    /* Align with first line of content */
}

/* Hero Section */
.hero-row {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-row::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -120px;
    width: 550px;
    height: 350px;
    background-image: url('assets/hero-bg.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.50;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}

.main-title {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Hero CTA Area */
.hero-cta-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-trial-tag {
    font-family: var(--font-mono);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: -4px;
    opacity: 1.0;

    /* Shine effect */
    background: linear-gradient(120deg,
            var(--accent-yellow) 30%,
            #fff 50%,
            var(--accent-yellow) 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-sweep 3s infinite ease-in-out;
}

@keyframes shine-sweep {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.action-btn-hero {
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
    padding: 18px 32px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.action-btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.hero-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    padding-left: 2px;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 203, 242, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(229, 199, 107, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 199, 107, 0);
    }
}

/* Visual Section (3D Carousel) */
.visual-container {
    margin-bottom: 120px;
    perspective: 1000px;
    /* Enable 3D space */
}

.carousel-stage {
    width: 100%;
    height: 480px;
    /* Fixed height for the stage */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Fade out edges of the stage */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.carousel-track {
    position: relative;
    width: 600px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-card {
    position: absolute;
    width: 100%;
    height: 100%;
    /* border-radius: 16px; */
    /* overflow: hidden; */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); */
    /* background: #111; */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.4s;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.card-header-outside {
    font-family: var(--font-mono);
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-left: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* States */
.carousel-card.active {
    z-index: 10;
    transform: translateX(0) scale(1);
}

.carousel-card.active img {
    filter: brightness(1);
    border-color: var(--text-primary);
}

.carousel-card.active img {
    filter: brightness(1);
}

.carousel-card.left {
    z-index: 5;
    transform: translateX(-60%) scale(0.85) perspective(1000px) rotateY(15deg);
    opacity: 0.5;
}

.carousel-card.right {
    z-index: 5;
    transform: translateX(60%) scale(0.85) perspective(1000px) rotateY(-15deg);
    opacity: 0.5;
}

/* Hover effects */
.carousel-card:hover img {
    filter: brightness(1.1);
}

/* Overlay Label */
/* Overlay Label */
/* Overlay Label */
.card-overlay {
    position: absolute;
    top: 20px;
    bottom: auto;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
}

.visual-caption {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--text-secondary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.center-text {
    /* No longer needed for structure, handled in visual-caption */
    color: var(--text-secondary);
}


/* Specs */
.spec-group {
    margin-bottom: 40px;
}

.spec-title {
    font-family: var(--font-sans);
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.spec-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    max-width: 550px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 4px;
    font-family: var(--font-mono);
    font-size: 13px;
}

.spec-item .key {
    color: var(--text-secondary);
}

.spec-item .val {
    color: var(--accent-yellow);
}

/* Contact Box (Reference 0) */
.spacing-large {
    margin-top: 120px;
}

.contact-box {
    border: 1px solid var(--text-primary);
    /* High contrast border */
    padding: 30px;
    max-width: 400px;
    margin-bottom: 30px;
    transition: background 0.3s;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.03);
}

.contact-header {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.contact-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.action-btn {
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.socials-row {
    display: flex;
    gap: 16px;
}

.social-tag {
    border: 1px solid var(--line-color);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    transition: all 0.2s;
    background: #2c2c2c;
}

.social-tag:hover {
    border-color: var(--text-primary);
    background: #111;
}

/* Footer */
footer {
    border-top: 1px solid var(--line-color);
    padding-top: 60px;
    margin-top: 120px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-sub {
    color: #555;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    width: fit-content;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-cyan);
}

.footer-contact span {
    display: block;
    color: #555;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .label-col {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .main-title {
        font-size: 36px;
    }
}

/* Audio Preview */
.audio-player-container {
    background: #111;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 600px;
}

.play-btn-wrapper {
    width: 48px;
    height: 48px;
    background: #0a0a0a00;
    border-radius: 50%;
    color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.play-btn-wrapper:hover {
    transform: scale(1.2);
}

.play-icon,
.pause-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}


.waveform-visualizer {
    flex-grow: 1;
    height: 30px;
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: 0.5;
}

.waveform-visualizer .bar {
    width: 3px;
    background: var(--accent-yellow);
    border-radius: 2px;
    height: 20%;
    animation: waveform-anim 1.2s infinite ease-in-out;
    animation-play-state: paused;
}

/* Randomize animation delays for natural look */
.waveform-visualizer .bar:nth-child(odd) {
    animation-duration: 0.8s;
}

.waveform-visualizer .bar:nth-child(2n) {
    animation-duration: 1.1s;
}

.waveform-visualizer .bar:nth-child(3n) {
    animation-duration: 1.3s;
}

.waveform-visualizer .bar:nth-child(4n) {
    animation-duration: 0.9s;
}

.waveform-visualizer.playing .bar {
    animation-play-state: running;
    opacity: 1;
}

@keyframes waveform-anim {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 80%;
    }
}

.audio-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 80px;
}

/* Mixer Collage Mural (Masonry style for original aspect ratios) */
.mixer-collage-wall {
    column-count: 2;
    /* Two columns for clarity */
    column-gap: 20px;
    width: 100%;
}

.clipping {
    break-inside: avoid;
    margin-bottom: 30px;
    /* Space between items */
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.clipping-visual {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.clipping-visual.has-border {
    border: 1px solid var(--line-color);
}

.clipping img,
.clipping video {
    width: 100%;
    height: auto;
    display: block;
    filter: none;
    transition: none;
    opacity: 1;
}

.clipping-meta {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 2px;
}

.clipping-tag {
    display: inline-block;
    width: fit-content;
    color: var(--accent-yellow);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clipping-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    font-family: var(--font-sans);
}

.clipping-full {
    column-span: all;
    width: 100%;
    margin-top: 20px;
}

/* Specific spacing for mobile */
@media (max-width: 600px) {
    .mixer-collage-wall {
        column-count: 1;
    }
}

.mural-caption {
    margin-top: 40px;
    text-align: left;
}

.mixer-label {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mixer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
}

/* Manifesto */
.manifesto-row {
    margin: 140px 0 100px 0;
}

.manifesto-text {
    font-family: var(--font-sans);
    font-size: 28px;
    line-height: 1.4;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.manifesto-text p {
    margin-bottom: 32px;
}

.manifesto-text p:last-child {
    color: var(--text-secondary);
}



/* Command Center Video Showcase */
.command-center-row {
    margin: 100px 0;
}

.video-showcase-container {
    position: relative;
    overflow: hidden;
    background: #000;
}

.showcase-video {
    width: 100%;
    display: block;
}

.master-experience-player {
    margin: 0 auto 9px auto;
    /* Precision gap above note */
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.master-experience-player .track-name {
    color: var(--text-primary);
    font-size: 13px;
}

.master-experience-player .track-time {
    color: var(--accent-yellow);
    font-weight: 500;
}

.master-experience-player .waveform-visualizer .bar {
    background: var(--text-secondary);
}

.master-experience-player .waveform-visualizer.playing .bar {
    background: var(--accent-yellow);
}



.settings-display {
    display: flex;
    flex-direction: column;
}

.settings-video-wrap {
    width: 100%;
    background: hsl(0, 0%, 0%);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    overflow: hidden;
}

.settings-video {
    width: 100%;
    display: block;
    opacity: 1;
    filter: none;
}

.settings-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 2px;
}

.setting-title {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    letter-spacing: 1px;
}

.setting-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
}

/* Detailed Specs Grid */
.spec-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.spec-list-items {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.spec-list-items li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.spec-list-items li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .spec-detailed-grid {
        grid-template-columns: 1fr;
    }
}

/* Problem / Agitation Section */
.problem-row {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0px;
    margin-top: 100px;
}

.problem-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.problem-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
}

.problem-highlight {
    color: var(--accent-cyan);
    font-weight: 500;
}

/* FAQ Accordion Styles */
.faq-row {
    margin-top: 100px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 0;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    outline: none;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    padding-right: 20px;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}


/* === PRICING CARDS STYLES (REQUIRED) === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.pricing-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Featured Card (Alquimista) */
.pricing-card.featured {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transform: scale(1.05);
    /* Make it slightly bigger by default */
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.plan-period {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 32px;
    transition: all 0.2s;
}

.plan-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.pricing-card:not(.featured) .plan-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-card:not(.featured) .plan-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: '�';
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}


/* Fix Bullet Points Encoding Issue */
.plan-features li::before {
    content: '' !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border-radius: 50% !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}


/* Fix CTA Position */
.pricing-card {
    justify-content: space-between !important;
}

.plan-features {
    margin-bottom: auto !important;
    /* Pushes button down if flex fails */
    flex-grow: 1 !important;
    padding-bottom: 32px !important;
    /* Minimum space before button */
}

.plan-btn {
    margin-top: auto !important;
    margin-bottom: 0 !important;
}


/* Pricing Fine Tuning */
.plan-period {
    margin-left: 4px !important;
    font-size: 14px !important;
    /* Slightly smaller for elegance */
    opacity: 0.7 !important;
}

/* Partners Row */
.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 0 20px 0;
    opacity: 0.6;
    user-select: none;
}

.partners-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 50px;
    /* Push down for optical alignment */
}

.partners-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-logo {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-sans);
    letter-spacing: -0.5px;
}

.partner-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}


/* Partner Icons Fix */
.partner-svg {
    height: 24px;
    width: auto;
    fill: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-svg:hover {
    opacity: 1;
}

.partner-divider {
    opacity: 0.3;
    margin: 0 10px;
}


/* Fix Spacing Hero -> Partners */
.hero-row {
    margin-bottom: 10px !important;
    /* Pull partners up close */
}

.partners-row {
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 60px !important;
    /* Space before Problem section */
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    /* More visible */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Stronger border */
    color: #fff;
    width: 50px;
    /* Slightly bigger */
    height: 50px;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
    /* Max Z-Index */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}