:root {
    /* Colors - Dark Theme (Brand) */
    --color-primary: #7c3aed;
    /* Violet 600 */
    --color-primary-light: #a78bfa;
    /* Violet 400 */
    --color-secondary: #f97316;
    /* Orange 500 */
    --color-dark-bg: #050505;
    --color-dark-surface: #111111;
    --color-dark-border: rgba(255, 255, 255, 0.1);
    --color-text-on-dark: #f8fafc;
    /* Slate 50 */
    --color-muted-on-dark: #94a3b8;
    /* Slate 400 */

    /* Colors - Light Theme (Content) */
    --color-light-bg: #ffffff;
    --color-light-surface: #f8fafc;
    /* Slate 50 */
    --color-light-border: #e2e8f0;
    /* Slate 200 */
    --color-text-main: #0f172a;
    /* Slate 900 */
    --color-text-muted: #64748b;
    /* Slate 500 */

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-hero: radial-gradient(circle at 50% 10%, #1e1b4b 0%, var(--color-dark-bg) 100%);
    --grid-pattern: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-hero: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--font-main);
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-light-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img,
svg {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Flex utilities */
.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

/* Position utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Spacing utilities */
.-space-x-2>*+* {
    margin-left: -0.5rem;
}

.shrink-0 {
    flex-shrink: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-slate-50 {
    background-color: var(--color-light-surface);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-8 {
    margin-top: 2rem;
}

/* Grid Columns */
.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}


.text-gradient {
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography Classes */
.heading-xl {
    font-size: var(--font-size-hero);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

.heading-lg {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-main);
}

.heading-md {
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

.text-lead {
    font-size: var(--font-size-xl);
    color: var(--color-text-muted);
    font-weight: 400;
}

.text-muted {
    color: var(--color-text-muted);
}

/* Grid System */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 1px solid var(--color-light-border);
    color: var(--color-text-main);
    background: transparent;
}

.full-width {
    width: 100%;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.nav-link:hover {
    color: white;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-btn {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .line {
    position: absolute;
    left: 4px;
    height: 2px;
    width: 24px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn .line:nth-child(1) {
    top: 8px;
}

.mobile-menu-btn .line:nth-child(2) {
    top: 15px;
}

.mobile-menu-btn .line:nth-child(3) {
    top: 22px;
}

.mobile-menu-btn[aria-expanded="true"] .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-only {
    display: none;
}

.mobile-only-flex {
    display: none;
}

/* Value Strip - Compact */
.value-strip-compact {
    padding: 1.75rem 0;
    background: var(--color-light-surface);
    border-bottom: 1px solid var(--color-light-border);
}

.value-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.value-badge:hover {
    transform: translateY(-2px);
}

.value-badge svg {
    flex-shrink: 0;
}

.value-badge span {
    font-size: 0.9rem;
    color: #475569;
    white-space: nowrap;
}

.value-badge strong {
    color: #0f172a;
    font-weight: 600;
}

/* Responsive Value Strip */
@media (max-width: 992px) {
    .value-row {
        gap: 1.5rem;
    }

    .value-badge span {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .value-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .value-badge {
        flex-direction: column;
        gap: 8px;
    }

    .value-badge span {
        white-space: normal;
    }
}

/* Hero */
.hero {
    background-color: var(--color-dark-bg);
    background-image: var(--gradient-hero);
    color: var(--color-text-on-dark);
    min-height: 100vh;
    padding-top: var(--header-height);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Custom Masked Background Image */
.hero-bg-custom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* Updated gradient: Transparent on the left to hide that side, fading into brand colors */
    background: linear-gradient(to right, transparent 0%, transparent 25%, var(--color-primary) 60%, var(--color-secondary) 100%);

    /* The image acts as a mask */
    -webkit-mask-image: url('https://thetork.com/demos/html/bitrader/assets/images/banner/home1/bg.png');
    mask-image: url('https://thetork.com/demos/html/bitrader/assets/images/banner/home1/bg.png');

    -webkit-mask-size: cover;
    mask-size: cover;

    -webkit-mask-position: center bottom;
    mask-position: center bottom;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    opacity: 0.15;
    /* Subtle tint */
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--grid-pattern);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.2;
    pointer-events: none;
}

/* Floating Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
    animation: pulse-shape 10s infinite alternate;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 0%;
    left: -50px;
    animation: pulse-shape 8s infinite alternate-reverse;
}

@keyframes pulse-shape {
    from {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    to {
        transform: scale(1.2) translate(10%, 10%);
        opacity: 0.5;
    }
}

/* Floating Small Objects */
.float-obj {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.obj-1 {
    top: 20%;
    right: 10%;
    animation: float-bounce 4s infinite alternate;
}

.obj-2 {
    bottom: 15%;
    right: 40%;
    animation: float-bounce 5s infinite alternate-reverse;
}

.obj-3 {
    top: 40%;
    left: 5%;
    animation: float-bounce 6s infinite alternate;
}

@keyframes float-bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

.grid-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-bullets {
    margin-top: 2rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #e2e8f0;
}

/* Hero Visual Mock */
.hero-visual {
    position: relative;
    display: block;
    /* Revert to default */
}

.mock-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000; */
    z-index: 1;
    /* Base layer */
    width: 100%;
}

.mock-main-img {
    width: 100%;
    /*  aspect-ratio: 16/10; RODRIGO */
    object-fit: cover;
    opacity: 0.8;
    filter: contrast(1.1);
    display: block;
    /* Removes potential bottom space inline gap */
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -40px 40px 60px 0px rgba(0, 0, 0, 0.4);
}

.mock-card {
    position: absolute;
    padding: 1.5rem;
    width: 280px;
    z-index: 20;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-top-rightORIGINAL {
    top: -30px;
    right: -20px;
    border-radius: 20px 60px 20px 60px;
    animation: float-card 4s infinite alternate ease-in-out;
}

.card-top-right {
    top: -70px;
    right: 195px;
    border-radius: 20px 60px 20px 60px;
    animation: float-card 4s infinite alternate ease-in-out;
}

.card-bottom-right {
    top: -30px;
    right: -20px;
    border-radius: 20px 60px 20px 60px;
    animation: float-card 4s infinite alternate ease-in-out;
}

.card-bottom-left {
    bottom: -40px;
    left: 286px;
    border-radius: 40px 12px 40px 12px;
    animation: float-card 5s infinite alternate-reverse ease-in-out;
}

@keyframes float-card {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.mock-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(0deg) !important;
    z-index: 30;
}

.mock-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.mock-score-badge {
    background: rgba(124, 58, 237, 0.2);
    color: var(--color-primary-light);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.4);
    font-size: 0.9rem;
    font-weight: 600;
}

.label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #cbd5e1;
}

/* Features */
.card-feature {
    /* background: white; RODRIGO */
    background: linear-gradient(152deg, rgba(237, 242, 248, 0.22) 10%, #EDF2F8 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-light-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 10;
}

.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    /* Light theme shadow 
    border-color: var(--color-primary-light);*/
}

.card-feature:hover::before {
    opacity: 1;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.card-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.card-feature p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* How It Works (Steps) */
.steps-container {
    position: relative;
}

.step-item {
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--color-primary-light);
    /* Lighter border */
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.step-item:hover .step-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

/* Audit / Timeline */
.timeline {
    border-left: 2px solid var(--color-light-border);
    margin-left: 1rem;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--color-light-border);
    border-radius: 50%;
    position: absolute;
    left: -2.4rem;
    top: 0.4rem;
    border: 2px solid white;
}

.dot.active {
    background: #16a34a;
    box-shadow: 0 0 0 4px #dcfce7;
}

.dot.waiting {
    background: #f59e0b;
}

/* Pricing */
.pricing-card {
    background: white;
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: .3s;
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 1rem 0;
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.features-list {
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
}

.features-list li::before {
    content: "✓";
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Testimonials Slider Nav */
.testimonial-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.testimonial-nav button.active,
.testimonial-nav button:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.testimonial-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    margin-top: 3rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.334rem);
    min-width: 300px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-tag-inline {
    display: inline-block;
    background: #f1f5f9;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.testimonial-card .card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
    line-height: 1.4;
    font-weight: 700;
}

.testimonial-card .card-content p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.card-footer-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.author-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.author-info .date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* FAQ Accordion Modern */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--color-light-border);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.1);
}

.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button .icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.accordion-button[aria-expanded="true"] {
    color: var(--color-primary);
}

.accordion-button[aria-expanded="true"] .icon {
    background: var(--color-primary);
    color: white;
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-text-muted);
}

.accordion-content p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Disclaimer Section - Ultra Discrete */
.disclaimer-section {
    padding: 2.5rem 0;
    background: white;
}

.disclaimer-card {
    font-size: 0.75rem;
    color: #94a3b8;
    /* Slate 400 - more muted */
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
}

.disclaimer-card strong {
    color: #64748b;
    font-weight: 600;
    display: inline;
    /* Inline for less emphasis 
    margin-right: 0.5rem;*/
    text-transform: none;
    font-size: 0.75rem;
    letter-spacing: normal;
}

.disclaimer-card p+p {
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--gradient-brand);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #64748b;
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.display-delay-1 {
    transition-delay: 0.1s;
}

.display-delay-2 {
    transition-delay: 0.2s;
}

.display-delay-3 {
    transition-delay: 0.3s;
}

/* Responsive Styles Refinement */
@media (max-width: 1024px) {

    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-hero {
        gap: 2rem;
    }

    .heading-xl {
        font-size: 3rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        /* Slightly tighter on mobile */
    }

    .section-padding {
        padding: var(--section-padding);
    }

    .header {
        padding: 0.75rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .grid-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    /* Hero Refinement */
    .hero {
        padding-top: 7rem;
        padding-bottom: 4rem;
        min-height: auto;
        overflow: hidden;
    }

    .heading-xl {
        font-size: 2.15rem;
        line-height: 1.25;
    }

    .text-lead {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-bullets {
        text-align: left;
        display: inline-flex;
        flex-direction: column;
        margin: 2rem auto;
        padding: 0 1rem;
        width: 100%;
        max-width: 400px;
    }

    .hero-bullets li {
        font-size: 0.95rem;
    }

    .hero-visual {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        position: relative;
    }

    .mock-image-container {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        order: 2;
        /* Rocket in the middle */
    }

    .mock-main-img {
        width: 100%;
        height: auto;
        opacity: 1 !important;
    }

    /* Stack cards instead of overlapping on Mobile */
    .mock-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        /* Fixed: no more tilted cards */
        width: 100% !important;
        max-width: 320px !important;
        padding: 1.25rem !important;
        background: rgba(15, 23, 42, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        margin: 0 auto;
    }

    .card-top-right {
        order: 1;
        /* Alert on top */
    }

    .card-bottom-left {
        order: 3;
        /* Score at the bottom */
        z-index: 40 !important;
    }

    /* Adjusting card content for small widths */
    .mock-ticker {
        font-size: 1.5rem !important;
    }

    .mock-card .value {
        font-size: 1.25rem !important;
    }

    .mock-card .flex {
        gap: 0.5rem !important;
    }

    /* Audit Section Visual Legibility */
    .audit-visual-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
    }

    .audit-visual-wrapper .relative.z-10 {
        order: 1;
        /* Image/Graphic on top */
    }

    .audit-visual-wrapper img {
        max-width: 280px;
        margin: 0 auto;
    }

    .audit-visual-wrapper .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 1.25rem !important;
        order: 2;
        /* Cards below image */
        text-align: left;
    }

    .audit-content .flex.sm\:flex-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .audit-content .btn {
        width: 100%;
        max-width: 320px;
    }

    /* Generic Grid Stacking */
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
    }

    .mobile-only-flex {
        display: flex;
    }

    .grid-reverse-mobile {
        flex-direction: column-reverse;
    }

    /* Audit Section Mobile Fix */
    .mobile-stack {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }

    .audit-visual-wrapper {
        padding: 1rem 0;
        order: 2;
        /* Move image below text for better flow on audit */
    }

    .audit-content {
        order: 1;
    }

    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0.5rem auto !important;
        width: 100% !important;
        max-width: 280px !important;
        transform: none !important;
        animation: none !important;
        text-align: center;
    }

    .audit-content .flex.sm\:flex-row {
        flex-direction: column;
        width: 100%;
    }

    .audit-content .btn {
        width: 100%;
    }

    /* FAQ Refinement */
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Pricing card popular scale fix */
    .pricing-card-v2.featured {
        transform: scale(1);
        margin: 1rem 0;
    }
}

/* --- NEW MODERN STYLES (Appended) --- */

/* 1. Process Section (How it works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--color-light-border);
    transition: all 0.4s ease;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary-light);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

/* Line connecting steps */
.step-line {
    height: 2px;
    background: var(--color-light-border);
    flex-grow: 1;
    margin-left: 1rem;
    position: absolute;
    left: 48px;
    /* Width of number */
    width: calc(100% + 2rem);
    /* Extend to next card */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Hide line on last step's CARD (logic in HTML structure needs to match or use nth-child) */
.step-card:last-child .step-line {
    display: none;
}

.step-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.step-body p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Decorative blur */
.absolute-blur {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.absolute-blur.top-left {
    top: -200px;
    left: -200px;
}

/* 2. Audit Section (Visuals) */
.audit-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.app-mockup-img {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 10;
    transition: transform 0.5s ease;
}

.app-mockup-img:hover {
    transform: scale(1.02);
}

/* 2. Audit Section (Visuals) */
.audit-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    perspective: 1000px;
}

.blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* Floating Card Styles (Restored for Reference Layout) */
.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
    /* Stronger shadow for dark bg */
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    animation: float-card 6s infinite ease-in-out;
}

.fl-card-top-left {
    top: 10%;
    left: -20px;
    flex-direction: column;
    align-items: flex-start;
    animation-delay: 0s;
}

.fl-card-bottom-right {
    bottom: 15%;
    right: -20px;
    flex-direction: column;
    align-items: flex-start;
    animation-delay: 3s;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-coin {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Specific text colors for the white cards on dark background */
.fl-card-top-left span,
.fl-card-bottom-right span,
.fl-card-bottom-right div {
    color: #0f172a;
    /* Force dark text inside white cards */
}

.fl-card-top-left span:last-child,
.fl-card-bottom-right span:nth-child(2) {
    color: #64748b;
    /* Muted text */
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.audit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.icon-box-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

/* Feature List Modern (Deprecated in favor of grids, but keeping for safe fallback if needed elsewhere) */
.feature-list-modern {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .step-line {
        display: none;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .fl-card-top-left {
        left: -10px;
    }

    .fl-card-bottom-right {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .mobile-stack {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .mobile-stack .audit-visual-wrapper {
        margin-bottom: 0;
        padding: 0;
    }

    .app-mockup-img {
        max-height: 400px !important;
        transform: scale(1) !important;
    }

    .audit-content {
        text-align: center;
    }

    .audit-content .grid {
        text-align: left;
        /* Keep cards left aligned content */
    }

    .audit-content .btn {
        width: 100%;
        justify-content: center;
    }


    .audit-content .flex.gap-6 {
        flex-direction: column;
        gap: 1.5rem;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin: 1rem auto;
        animation: none;
        transform: none !important;
    }

    .app-mockup-img {
        max-width: 300px !important;
    }
}

/* ==========================================
   PRICING SECTION V2 - MODERN REDESIGN
   ========================================== */

.pricing-section {
    position: relative;
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Base */
.pricing-card-v2 {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #c7d2fe;
}

/* Featured Card (PRO) */
.pricing-card-v2.featured {
    border: 3px solid #7c3aed;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
    transform: scale(1.05);
}

.pricing-card-v2.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.25);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    white-space: nowrap;
}

.featured-badge svg {
    fill: white;
}

/* Header */
.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.plan-name {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.plan-name.basic {
    color: #272727;
}

.plan-name.pro {
    color: #7c3aed;
}

.plan-name.premium {
    color: #f59e0b;
}

.plan-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Pricing Amount */
.pricing-amount {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    vertical-align: top;
    margin-right: 2px;
}

.pricing-amount .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1E293B;
    line-height: 1;
}

.pricing-amount .cents {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
}

.pricing-amount .period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    margin-left: 4px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
}

.feature-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list li.disabled {
    color: #000000;
    opacity: 0.7;
}

.feature-list li strong {
    font-weight: 600;
    color: #000000;
}

.feature-list li.disabled strong {
    font-weight: 600;
    color: #000000;
}

/* Buttons */
.plan-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-top: auto;
}

.plan-button.primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.plan-button.primary svg {
    transition: transform 0.3s ease;
}

.plan-button.primary:hover svg {
    transform: translateX(4px);
}

.plan-button.outline {
    background: white;
    color: #475569;
    border: 2px solid #cbd5e1;
}

.plan-button.outline:hover {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* Guarantee Seal */
.guarantee-seal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    flex-wrap: nowrap;
}

.guarantee-seal:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.guarantee-seal svg {
    flex-shrink: 0;
}

.guarantee-seal span {
    color: #475569;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.guarantee-seal .dot {
    color: #cbd5e1;
    margin: 0 4px;
}

/* Animations */
@keyframes fade-up-pricing {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card-v2.fade-up {
    animation: fade-up-pricing 0.6s ease-out forwards;
    opacity: 0;
}

.pricing-card-v2.featured.fade-up {
    animation: fade-up-pricing 0.6s ease-out forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .pricing-card-v2.featured {
        transform: scale(1);
    }

    .pricing-card-v2.featured:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-card-v2 {
        padding: 2rem 1.5rem;
    }

    .pricing-amount .price {
        font-size: 2.5rem;
    }

    .pricing-amount .cents {
        font-size: 1.5rem;
    }

    .guarantee-seal {
        flex-direction: column;
        gap: 8px;
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .guarantee-seal span {
        font-size: 0.875rem;
    }

    .guarantee-seal .dot {
        display: none;
    }

    .featured-badge {
        font-size: 0.6rem;
        padding: 0.4rem 1.2rem;
    }
}