/* ==========================================================================
   CSS Variaveis & Design System (Modern Noir / Premium)
   ========================================================================== */
:root {
    --bg-main: #0b0914; /* Super dark violet almost black */
    --bg-card: #141221;
    --bg-card-hover: #1b182b;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(165, 139, 255, 0.15);
    
    /* Primary / CTA Colors */
    --primary-color: #8c6fff; /* Roxo vibrante */
    --primary-gradient: linear-gradient(135deg, #9b72ff 0%, #7645ff 100%);
    --primary-gradient-hover: linear-gradient(135deg, #a684ff 0%, #8254ff 100%);
    
    /* Text Colors */
    --text-pure: #ffffff;
    --text-primary: #f0edf8;
    --text-secondary: #9a94b5;
    --text-muted: #6b6680;

    /* Status Colors */
    --success: #34d399;
    
    /* Spacing - Calibrated for Radiant Dividers */
    --section-padding: 5rem 2rem;
    
    /* Transition */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Texture Layer (Fixed across all browsers without scrollbar bugs) */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    background-position: top center;
    z-index: -20;
    pointer-events: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.gradient-text {
    background: linear-gradient(90deg, #e5d4ff 0%, #9b72ff 50%, #5d25fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-color), #5d25fa) no-repeat;
    background-size: 100% 4px;
    background-position: 0 95%;
    padding-bottom: 2px;
}

/* Radiant Block Divider - Global 'Modern Noir' Aesthetic */
.section-divider {
    width: 100%;
    height: 1px;
    position: relative;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(140, 111, 255, 0.25) 50%, 
        transparent 100%);
    overflow: visible;
    margin: 0; /* Reset - Sections will handle padding for a perfect 'seam' junction */
    z-index: 10;
    pointer-events: none;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1.5px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(210, 170, 255, 0.85), transparent);
    box-shadow: 0 0 25px rgba(180, 140, 255, 0.4);
}

/* Base Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Backlight Glows - Refined 'Divine Light' System */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.5; /* Increased opacity but softened colors */
    pointer-events: none;
}
.hero-glow-1 {
    top: -20%;
    left: 20%;
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 215, 255, 0.12) 0%, rgba(140, 111, 255, 0.05) 60%, transparent 100%);
}
.hero-glow-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 69, 255, 0.08) 0%, transparent 70%);
}

.hero-divine-light {
    position: absolute;
    top: -200px; /* Positioned slightly higher for a more natural spill */
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 600px;
    /* Dramatically intensified 'Divine Light' with multi-stage bloom */
    background: radial-gradient(ellipse at center top, 
        rgba(255, 255, 255, 0.18) 0%, 
        rgba(215, 190, 255, 0.12) 35%,
        rgba(140, 111, 255, 0.05) 60%, 
        transparent 85%);
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.9; /* Near full presence of the gradient */
}

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.hero {
    position: relative;
    padding: 6rem 0 5rem; /* Calibrated to be perfectly proportional on desktop */
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    width: 100%;
}

/* ==========================================================================
   Pre-Headline Pill – Frosted Glass / Refined Glassmorphism
   ========================================================================== */

.pre-headline-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.pre-headline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    /* Structural Match with Pricing Kicker */
    background: linear-gradient(90deg, rgba(140, 111, 255, 0.12) 0%, rgba(93, 37, 250, 0.04) 100%);
    border: 1px solid rgba(140, 111, 255, 0.15);
    border-top-color: rgba(200, 170, 255, 0.35);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    position: relative;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-size: 0.775rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #e0d4ff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

/* Cleanup Hero-specific logic that doesn't match reference */
.pre-headline-pill::before {
    display: none;
}

/* No outer glow layer – removed to keep it clean */
.pre-headline-pill::after {
    display: none;
}

/* Small status dot — very soft, not glowing aggressively */
.pill-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(200, 175, 255, 0.65);
    flex-shrink: 0;
    animation: pillDotPulse 3s ease-in-out infinite;
}

@keyframes pillDotPulse {
    0%, 100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}

/* No outer glow animation – keep it still and refined */

/* Mobile */
@media (max-width: 480px) {
    .pre-headline-pill {
        font-size: 0.7rem;
        padding: 0.4rem 0.95rem;
        gap: 0.45rem;
        white-space: normal;
        text-align: center;
        line-height: 1.45;
        border-radius: 9px;
    }
    .pre-headline-pill::before {
        border-radius: 10px;
    }
    .pill-dot {
        flex-shrink: 0;
        align-self: flex-start;
        margin-top: 0.3rem;
    }
}


/* ==========================================================================
   Trust Bar (below CTA button)
   ========================================================================== */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.trust-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

/* Gradient icon via background-clip */
.trust-icon {
    background: linear-gradient(135deg, #c4a0ff 0%, #7c48ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
    line-height: 1;
}

.trust-text {
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .trust-bar {
        gap: 0.4rem;
    }
    .trust-text {
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

/* Content (legacy) */
.badge-wrapper {
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(140, 111, 255, 0.1);
    border: 1px solid rgba(140, 111, 255, 0.3);
    color: #cbbaff;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-pure);
}

.hero-subtitle {
    font-size: 1.08rem; /* Standardized with other sections */
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2.25rem; /* Tighter, more focused rhythm */
    max-width: 700px; /* Further constrained for a compact, premium centered block */
    margin-inline: auto;
    text-wrap: balance;
}
.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Call to Action */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    /* 
     * Enhanced 'Modern Noir' base:
     * Multi-stop gradient for deeper dimension and more visible 'luz'.
     */
    background: linear-gradient(135deg, #7c4dff 0%, #6336ff 45%, #4c26d9 100%) padding-box;
    border: 1.5px solid transparent;
    
    /* 
     * Refinadissima gradient border using border-box logic.
     * High-light at the top, fading to deep purple at the edges.
     */
    background-image: 
        linear-gradient(135deg, #7c4dff 0%, #6336ff 45%, #4c26d9 100%),
        linear-gradient(180deg, rgba(230, 210, 255, 0.7) 0%, rgba(118, 69, 255, 0.25) 40%, rgba(93, 37, 250, 0.05) 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.15rem 2.25rem; /* Slightly lighter padding */
    border-radius: 14px;
    
    /* Softened, more elegant shadow signature */
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.35),
        0 12px 45px rgba(93, 37, 250, 0.12);
    
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    isolation: isolate;
}

/* Shimmer sweep — travels left to right on hover */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        115deg,
        transparent               30%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent               70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

/* Keep text/icon above shimmer layer */
.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 15px 50px rgba(93, 37, 250, 0.2);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        0 3px 14px rgba(118, 69, 255, 0.22);
}

.micro-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Comparison Section (Antes vs Depois)
   ========================================================================== */
/* Premium Section Divider */


.comparison-section {
    position: relative;
    padding: 4rem 1.5rem; /* Perfect seam rhythm */
    z-index: 1;
    overflow: hidden;
}

/* Intro text below the headline */
.comparison-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
    text-wrap: balance;
}

/* ==========================================================================
   Premium Comparison Table
   ========================================================================== */
.comp-table {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    /* Gradient border via padding-box / border-box */
    background:
        rgba(10, 8, 20, 0.85) padding-box,
        linear-gradient(
            145deg,
            rgba(180, 140, 255, 0.30) 0%,
            rgba(140, 111, 255, 0.08) 40%,
            rgba(100,  60, 220, 0.04) 70%,
            rgba(180, 140, 255, 0.20) 100%
        ) border-box;
    border: 1px solid transparent;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 0 0 transparent;
    backdrop-filter: blur(8px);
}

/* ── Header row ──────────────────────────────── */
.comp-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid rgba(140, 111, 255, 0.12);
    background: rgba(140, 111, 255, 0.045);
}

.comp-cell-old-header,
.comp-cell-new-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 1.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comp-cell-old-header {
    color: rgba(154, 148, 181, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.comp-cell-new-header {
    color: #c4a0ff;
    border-left: 1px solid rgba(140, 111, 255, 0.10);
    background: rgba(140, 111, 255, 0.05);
}

/* Header icons */
.comp-hdr-icon {
    display: inline-flex;
    font-size: 1rem;
    line-height: 1;
}

.comp-hdr-icon--old i {
    color: rgba(160, 100, 100, 0.7);
}

.comp-hdr-icon--new i {
    background: linear-gradient(135deg, #d0a8ff 0%, #7048ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Feature label cell (left column) ──────── */
.comp-cell-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1.1rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

/* Gradient feature icon (icon font — targets ::before) */
.comp-feat-icon {
    display: inline-flex;
    font-size: 1rem;
    flex-shrink: 0;
}

.comp-feat-icon i {
    background: linear-gradient(135deg, #c4a0ff 0%, #7048ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Data rows ───────────────────────────────── */
.comp-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.comp-row--last {
    border-bottom: none;
}

.comp-row:hover {
    background: rgba(140, 111, 255, 0.03);
}

/* ── Cells ────────────────────────────────────── */
.comp-cell-old,
.comp-cell-new {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.1rem 1.4rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.comp-cell-old {
    color: rgba(154, 148, 181, 0.75);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.comp-cell-new {
    color: var(--text-primary);
    border-left: 1px solid rgba(140, 111, 255, 0.08);
    background: rgba(140, 111, 255, 0.04);
}

/* X icon — muted rose */
.comp-x-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.85rem;
}

.comp-x-icon i {
    color: rgba(180, 90, 90, 0.65);
}

/* Check icon — gradient purple */
.comp-check-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.9rem;
}

.comp-check-icon i {
    background: linear-gradient(135deg, #c4a0ff 0%, #7048ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Mobile responsive ───────────────────────── */
@media (max-width: 700px) {
    .comp-table {
        border-radius: 14px;
    }

    /* Hide the header label cell that would be empty */
    .comp-header .comp-cell-label {
        display: none;
    }

    .comp-header {
        grid-template-columns: 1fr 1fr;
    }

    /* Each row: feature label spans full width, old/new side by side below */
    .comp-row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "label label"
            "old   new";
    }

    .comp-row .comp-cell-label {
        grid-area: label;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(140, 111, 255, 0.04);
        font-size: 0.8rem;
        padding: 0.85rem 1rem;
    }

    .comp-cell-old {
        grid-area: old;
        font-size: 0.78rem;
        padding: 0.85rem 0.85rem;
        border-left: none;
        border-right: 1px solid rgba(255, 255, 255, 0.04);
    }

    .comp-cell-new {
        grid-area: new;
        font-size: 0.78rem;
        padding: 0.85rem 0.85rem;
    }

    .comp-cell-old-header,
    .comp-cell-new-header {
        font-size: 0.65rem;
        padding: 0.75rem 0.85rem;
        gap: 0.4rem;
    }
}

@media (max-width: 420px) {
    .comp-cell-old,
    .comp-cell-new {
        font-size: 0.73rem;
        padding: 0.75rem 0.65rem;
    }

    .comp-row .comp-cell-label {
        font-size: 0.75rem;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-inline: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-pure);
    text-wrap: balance;
}

.text-muted {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.before-col {
    background: #09080d;
    border: 1px solid rgba(255, 255, 255, 0.015);
    opacity: 0.45;
}

.before-col:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.after-col {
    z-index: 5;
    background: 
        radial-gradient(circle at 5% 5%, rgba(140, 111, 255, 0.12) 0%, rgba(140, 111, 255, 0.02) 40%, #0c0b10 80%) padding-box,
        linear-gradient(145deg, #d8bcff 0%, rgba(140, 111, 255, 0.6) 20%, rgba(140, 111, 255, 0.05) 50%, rgba(255, 255, 255, 0.01) 100%) border-box;
    border: 1.5px solid transparent;
    box-shadow: 
        0 -20px 60px rgba(132, 94, 255, 0.1), 
        0 40px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.after-col:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 -20px 80px rgba(132, 94, 255, 0.25), 
        0 50px 80px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Card Textures */
.comparison-col::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.before-col::after {
    /* Subtle hazard / warning diagonal stripes for the "bad" state */
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 67, 67, 0.015),
        rgba(255, 67, 67, 0.015) 1px,
        transparent 1px,
        transparent 8px
    );
}

.after-col::after {
    /* Premium high-tech dot mesh for the "good" state */
    background-image: radial-gradient(rgba(140, 111, 255, 0.08) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.8;
}

/* Ensure contents sit strictly above textures */
.col-header, .col-divider, .comparison-list {
    position: relative;
    z-index: 1;
}

/* Remove generic comparison-col hover */

.col-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.box-red {
    background: #151111;
    border: 1px solid rgba(186, 87, 87, 0.15);
    box-shadow: inset 0 2px 8px rgba(255, 100, 100, 0.05);
}

.box-red i {
    background: linear-gradient(135deg, #e88686 0%, #aa4b4b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.box-primary {
    background: rgba(25, 21, 35, 0.8);
    border: 1px solid rgba(140, 111, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(140, 111, 255, 0.15), 
        inset 0 2px 10px rgba(180, 140, 255, 0.1);
}

.box-primary i {
    background: linear-gradient(135deg, #d8bcff 0%, #8252ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.col-header h3 {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

.header-titles {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.header-titles h2 {
    font-size: 2.1rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.header-titles span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 5px;
    background: linear-gradient(135deg, #d8bcff 0%, #8252ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.col-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.after-col .col-divider {
    background: rgba(140, 111, 255, 0.15);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #dfdfdf;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
}

.icon-x-red {
    font-size: 1.25rem;
    min-width: 24px;
    margin-top: 2px;
    background: linear-gradient(135deg, #d47878 0%, #a04040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    min-width: 26px;
    margin-top: 2px;
    background: rgba(140, 111, 255, 0.06);
}

.icon-circle i {
    background: linear-gradient(135deg, #d8bcff 0%, #8252ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.right-glow {
    top: 20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(93, 37, 250, 0.15);
}

/* ==========================================================================
   System Section (Bloco 2.5)
   ========================================================================== */
.system-section {
    position: relative;
    padding: 4rem 1.5rem; /* Perfect seam rhythm */
    z-index: 1;
    overflow: hidden;
}

.system-title {
    max-width: 850px;
    margin: 0 auto;
    font-size: 2.5rem;
    line-height: 1.25;
}

.system-subtitle {
    max-width: 760px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

.system-showcase {
    position: relative;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.system-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(140, 111, 255, 0.12) 0%, rgba(93, 37, 250, 0.04) 100%);
    border: 1px solid rgba(140, 111, 255, 0.15);
    border-top-color: rgba(200, 170, 255, 0.35);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.system-kicker .kicker-icon i {
    background: linear-gradient(135deg, #c4a0ff 0%, #8252ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

.system-kicker span:not(.kicker-icon) {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e0d4ff;
    letter-spacing: 0.5px;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
}

.sys-card {
    position: relative;
    background: rgba(15, 12, 22, 0.55);
    border: 1px solid rgba(140, 111, 255, 0.12);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.sys-card-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(140, 111, 255, 0.08) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.sys-card:hover {
    transform: translateY(-4px);
    /* Directional magical light boundary, softer */
    border-color: rgba(200, 170, 255, 0.4) rgba(140, 111, 255, 0.2) rgba(140, 111, 255, 0.1) rgba(140, 111, 255, 0.2);
    box-shadow: 
        0 10px 30px rgba(93, 37, 250, 0.15), 
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.sys-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layer 1: Core ultra-bright edge spot. Layer 2: Deep ambient glow */
    background: 
        radial-gradient(50% 20% at 50% 0%, rgba(200, 170, 255, 0.15) 0%, transparent 100%),
        radial-gradient(100% 100% at 50% 0%, rgba(130, 90, 255, 0.15), rgba(90, 50, 200, 0.05) 50%, transparent 100%);
    opacity: 0.7;
    transition: transform 0.4s ease, opacity 0.6s ease, background 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.sys-card:hover .sys-card-glow {
    opacity: 1;
    /* Layer 1: Much brighter hotspot. Layer 2: Volumetric bloom (softened) */
    background: 
        radial-gradient(60% 25% at 50% 0%, rgba(230, 200, 255, 0.35) 0%, transparent 100%),
        radial-gradient(130% 130% at 50% 0%, rgba(160, 100, 255, 0.25) 0%, rgba(110, 60, 255, 0.08) 65%, transparent 100%);
}

.sys-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(140, 111, 255, 0.1);
    border: 1px solid rgba(140, 111, 255, 0.25);
    margin-bottom: 1.5rem;
    z-index: 1;
}

.sys-icon-wrap i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #d8bcff 0%, #8252ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sys-card-content {
    position: relative;
    z-index: 1;
}

.sys-card-content h3 {
    font-size: 1.35rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.sys-card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.system-footer {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.system-closing {
    font-size: 1.15rem;
    color: #e0d4ff;
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.sys-btn {
    padding: 1.15rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        gap: 3rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .comparison-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    }
    .system-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 4rem; /* Calibrated to be perfectly proportional on mobile */
    }

    .hero-container {
        align-items: center;
        text-align: center;
    }

    .pre-headline-wrapper {
        justify-content: center;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        max-width: none; /* Removed the 'squeeze' to match other blocks */
        margin-inline: auto;
        text-align: center;
        line-height: 1.55;
    }
    
    .section-title {
        font-size: 1.85rem;
    }

    .comparison-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .comparison-col {
        padding: 2.5rem 1.5rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }

    .hero .btn-primary {
        width: auto;
        min-width: 400px; /* Aligned with the subheadline visual width */
        margin-inline: auto;
    }

    .system-title {
        font-size: 1.85rem;
    }
    .system-subtitle {
        font-size: 1rem;
    }
    .system-kicker {
        padding: 0.5rem 1rem;
    }
    .system-kicker span:not(.kicker-icon) {
        font-size: 0.8rem;
        text-align: left;
        line-height: 1.3;
    }
    .sys-card {
        padding: 2rem 1.5rem;
    }
    .system-closing {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .text-muted {
        font-size: 1rem;
    }
    .hero-subtitle {
        max-width: none; /* Standardized with other sections */
        font-size: 1rem;
        margin-inline: auto;
        text-align: center;
    }

    .hero .btn-primary {
        width: auto;
        min-width: 340px; /* Perfectly matched to the subheadline envelope */
    }
    .comparison-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==========================================================================
   How It Works Section (Bloco 3) — Premium Redesign
   ========================================================================== */

.how-section {
    position: relative;
    padding: 4rem 0 6.5rem; /* Perfect seam rhythm */
    z-index: 1;
    overflow: hidden;
}

/* Subtle crosshatch grid */
.how-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(140, 111, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140, 111, 255, 0.028) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* Ambient light orbs */
.how-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.how-orb-1 {
    top: -5%;
    right: -12%;
    width: 620px;
    height: 620px;
    background: radial-gradient(ellipse, rgba(140, 111, 255, 0.13) 0%, transparent 70%);
}

.how-orb-2 {
    bottom: 8%;
    left: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(93, 37, 250, 0.09) 0%, transparent 70%);
}

/* Container sits above all bg layers */
.how-container {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Pricing Section (Bloco 4) — High-End Offers
   ========================================================================== */

.pricing-section {
    position: relative;
    padding: 4rem 0 6.5rem; /* Perfect seam rhythm */
    z-index: 1;
}

.pricing-bg-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom, rgba(93, 37, 250, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(140, 111, 255, 0.15) 0%, rgba(93, 37, 250, 0.05) 100%);
    border: 1px solid rgba(140, 111, 255, 0.2);
    border-top-color: rgba(200, 170, 255, 0.4);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    margin-top: 2rem;
    color: #e0d4ff;
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch; /* Cards align perfectly top to bottom */
    margin-top: 7rem; /* Increased mathematically to account for the 1.05 scale and the floating pill badge */
    position: relative;
    z-index: 2;
}

.price-card {
    position: relative;
    background: rgba(15, 12, 22, 0.55);
    border: 1px solid rgba(140, 111, 255, 0.12);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03), 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Evolution: Swapping repetitive dots for Premium 'Brushed Glass' diagonal texture */
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(140, 111, 255, 0.03) 0,
        rgba(140, 111, 255, 0.03) 1px,
        transparent 1px,
        transparent 15px
    );
    background-size: 100% 100%;
    
    /* Depth Mask: Soft fade towards the bottom so the lines are near-invisible at the base */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 40%, transparent 85%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 40%, transparent 85%);
    
    opacity: 0.8;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.price-card > * {
    position: relative;
    z-index: 2;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(180, 140, 255, 0.35);
}

.plan-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9b78ff;
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 1.25rem;
}

.price-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.price-value .amount {
    font-size: 3.75rem; /* Downsized gracefully to hold 6 digits cleanly */
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -1.5px;
}

.price-value .period {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* New Plan Name Group with Tag */
.plan-name-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.plan-name-group .plan-name {
    margin-bottom: 0;
}

.access-tag {
    font-size: 0.72rem;
    color: #e0d4ff;
    background: rgba(140, 111, 255, 0.15);
    border: 1px solid rgba(140, 111, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.access-tag i {
    font-size: 0.85rem;
}

/* Equivalent Standalone Badge */
.equivalent-badge {
    display: inline-flex;
    align-self: flex-start; /* Prevent stretching, shrink to text width */
    background: rgba(140, 111, 255, 0.04);
    border: 1px solid rgba(140, 111, 255, 0.2);
    color: #b48cff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 8px; /* Subtly sharp glass rectangle exactly as user screenshot */
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.what-you-get {
    margin-top: 2rem;
    margin-bottom: 2.5rem; /* Ensure minimum gap before button */
    flex-grow: 1;
}

.get-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.price-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.price-features li i.ph-check {
    color: #b48cff;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.price-features li.bonus i {
    color: #e0d4ff;
    font-size: 1.2rem;
}

.price-features li.bonus span {
    font-weight: 600;
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto; /* Push specifically to bottom of stretched cards */
    width: 100%;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.price-btn.featured-btn {
    margin-top: auto; /* Push exactly to bottom of grid card */
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem; /* Resize down slightly from primary standard */
    white-space: nowrap; /* Force 1 line so flex layout doesn't break alignment */
}

/* Featured Card */
.price-card.featured {
    border-color: transparent; /* Surrendered to the pseudo-element gradient border */
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4), 
        0 20px 50px rgba(93, 37, 250, 0.1), 
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    padding: 3.5rem 2.5rem;
    background: rgba(22, 16, 35, 0.6);
    transform: scale(1.05); /* Make it stand out strongly */
    overflow: visible; /* Release the top pill badge from being clipped */
}

/* The Ultra-Premium Glow Border using CSS Masks */
.price-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px; /* Border thickness */
    /* Intensified top-down light: brighter at the very top, escurant more gradually */
    background: linear-gradient(180deg, rgba(230, 210, 255, 1) 0%, rgba(150, 120, 255, 0.6) 15%, rgba(140, 111, 255, 0.15) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.price-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Featured Upgrade: Multi-layer texture for the Anual plan */
    background-image: 
        repeating-linear-gradient(
            -45deg,
            rgba(200, 170, 255, 0.05) 0,
            rgba(200, 170, 255, 0.05) 1px,
            transparent 1px,
            transparent 12px
        );
    
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);

    opacity: 0.9;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5), 
        0 25px 60px rgba(93, 37, 250, 0.15), 
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.price-card.featured:hover::after {
    background: linear-gradient(180deg, rgba(240, 220, 255, 1) 0%, rgba(170, 140, 255, 0.7) 20%, rgba(140, 111, 255, 0.2) 60%, transparent 100%);
}

.featured-badge {
    position: absolute;
    top: -18px; /* High levitation strictly clearing the border */
    left: 50%;
    transform: translateX(-50%);
    
    /* Adopted the modern kicker pill architecture */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap; /* Strictly force 1 line, fixing the desktop wrap bug */
    
    background: linear-gradient(90deg, rgba(140, 111, 255, 0.15) 0%, rgba(93, 37, 250, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(140, 111, 255, 0.2);
    border-top-color: rgba(200, 170, 255, 0.4);
    
    color: #e0d4ff;
    font-size: 0.95rem;  /* Matched perfectly to kicker */
    font-weight: 500;    /* Matched perfectly to kicker */
    letter-spacing: normal;
    padding: 0.6rem 1.4rem;
    border-radius: 10px; /* Sophisticated rounded-rectangle geometry */
    
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 20; /* Elevated above the pseudo-element glow border */
}

.price-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit; /* Lock divine light inside so it doesn't bleed */
    overflow: hidden;
    /* Upgraded: Triple-layered incandescent lighting */
    background: 
        radial-gradient(40% 30% at 50% 0%, rgba(220, 190, 255, 0.25) 0%, transparent 100%), /* Hot core */
        radial-gradient(70% 50% at 50% 0%, rgba(130, 90, 255, 0.2) 0%, transparent 100%),   /* Main bloom */
        radial-gradient(100% 100% at 50% 0%, rgba(93, 37, 250, 0.15), rgba(93, 37, 250, 0.05) 60%, transparent 100%); /* Ambient wash */
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   WARRANTY SECTION STYLES
   ========================================================================== */
.warranty-section {
    padding: 6rem 2rem 8rem; /* Adjusted top padding to fix the empty gap above the pill */
    background: radial-gradient(circle at 50% 100%, rgba(140, 111, 255, 0.05) 0%, transparent 70%);
    position: relative;
}

.warranty-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.warranty-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 1.5rem;
    color: #fff;
    letter-spacing: -1px;
}

.warranty-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(22, 16, 35, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    border: 1px solid rgba(140, 111, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Glass Border Light for Warranty Card */
.warranty-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(180deg, rgba(230, 210, 255, 0.8) 0%, rgba(140, 111, 255, 0.2) 20%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

/* Brushed Glass Pattern for Warranty Card */
.warranty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(140, 111, 255, 0.02) 0,
        rgba(140, 111, 255, 0.02) 1px,
        transparent 1px,
        transparent 15px
    );
    opacity: 0.8;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.warranty-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.warranty-seal-container {
    flex-shrink: 0;
}

/* Premium 7-Day Seal Component */
.warranty-seal {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, rgba(140, 111, 255, 0.1) 0%, rgba(93, 37, 250, 0.05) 100%);
    border: 2px solid rgba(180, 150, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(118, 69, 255, 0.2);
    backdrop-filter: blur(5px);
}

.seal-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(140, 111, 255, 0.4);
}

.seal-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(220, 200, 255, 0.8);
    text-align: center;
    letter-spacing: 1px;
    margin-top: 5px;
}

.warranty-content {
    flex-grow: 1;
}

.warranty-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.warranty-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b48cff;
    font-weight: 600;
    font-size: 0.95rem;
}

.warranty-footer i {
    font-size: 1.25rem;
}

/* Responsive Warranty */
@media (max-width: 991px) {
    .warranty-inner {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .warranty-footer {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .warranty-title {
        font-size: 2rem;
    }
    .warranty-card {
        padding: 2.5rem 1.5rem;
    }
    .warranty-text {
        font-size: 1rem;
    }
}

/* ---- Steps List ---- */
.steps-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.step-item {
    width: 100%;
}


/* ---- Step Card ---- */
.step-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* Gradient border via padding-box / border-box layers */
    background:
        radial-gradient(ellipse at 12% 8%,  rgba(140, 111, 255, 0.15) 0%, transparent 55%) padding-box,
        radial-gradient(ellipse at 88% 90%, rgba(93,  37, 250, 0.09)  0%, transparent 55%) padding-box,
        #0f0c1e padding-box,
        linear-gradient(
            145deg,
            rgba(195, 155, 255, 0.55) 0%,
            rgba(140, 111, 255, 0.18) 28%,
            rgba(100,  60, 220, 0.06) 58%,
            rgba(195, 155, 255, 0.48) 100%
        ) border-box;
    border: 1px solid transparent;
    box-shadow:
        0 8px 36px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
    transition:
        transform      0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow     0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dot-mesh texture layered on top of card */
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(140, 111, 255, 0.044) 1.3px, transparent 1.3px);
    background-size: 18px 18px;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

/* Top-edge shine */
.step-card::after {
    content: '';
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 170, 255, 0.55), transparent);
    pointer-events: none;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 0 55px rgba(140, 111, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Large watermark step number */
.step-num-bg {
    position: absolute;
    top: 0.75rem;
    right: 1.75rem;
    font-size: 6.5rem;
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 1;
    background: linear-gradient(
        135deg,
        rgba(155, 120, 255, 0.3) 0%,
        rgba(93, 37, 250, 0.1)   55%,
        transparent              100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Content layer above pseudo-elements */
.step-card-inner {
    position: relative;
    z-index: 2;
    padding: 2.25rem 2.5rem;
}

/* Step Tag Pill */
.step-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8b4ff;
    background: linear-gradient(90deg, rgba(140, 111, 255, 0.15) 0%, rgba(93, 37, 250, 0.07) 100%);
    border: 1px solid rgba(140, 111, 255, 0.28);
    padding: 0.28rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* Step Title */
.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-pure);
    line-height: 1.3;
    margin-bottom: 0.625rem;
}

/* Step Description */
.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.875rem;
}

/* Arrow Items */
.step-arrows {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.375rem;
}

.step-arrows li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.93rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: padding-left 0.28s ease, color 0.28s ease;
}

.step-arrows li:last-child {
    border-bottom: none;
}

.step-arrows li:hover {
    padding-left: 0.4rem;
    color: #fff;
}

.step-arrows li i {
    color: var(--primary-color);
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: transform 0.28s ease;
}

.step-arrows li:hover i {
    transform: translateX(4px);
}

/* Subgroup (Passo 3) */
.step-subgroup {
    margin-bottom: 0.875rem;
}

.step-subgroup-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.step-subgroup .step-arrows {
    margin-bottom: 0;
}

/* Insight Callout */
.step-insight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(140, 111, 255, 0.13) 0%, rgba(140, 111, 255, 0.03) 100%);
    border-left: 2.5px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #d0bcff;
    line-height: 1.4;
}

.step-insight::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 8px rgba(140, 111, 255, 0.9);
    flex-shrink: 0;
}

/* ---- Step Connector (between cards) ---- */
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.2rem 0;
    height: 4.5rem;
}

.sc-line {
    width: 1.5px;
    flex: 1;
}

.sc-line-top {
    background: linear-gradient(
        to bottom,
        rgba(140, 111, 255, 0.12) 0%,
        rgba(155, 120, 255, 0.7)  100%
    );
    filter: drop-shadow(0 0 4px rgba(140, 111, 255, 0.3));
}

.sc-line-bottom {
    background: linear-gradient(
        to bottom,
        rgba(155, 120, 255, 0.7)  0%,
        rgba(140, 111, 255, 0.12) 100%
    );
    filter: drop-shadow(0 0 4px rgba(140, 111, 255, 0.3));
}

.sc-node {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    background: radial-gradient(circle, #d0aaff 0%, #7c48ff 75%);
    box-shadow:
        0 0 10px rgba(170, 130, 255, 0.9),
        0 0 24px rgba(140, 111, 255, 0.55);
    animation: scNodePulse 2.6s ease-in-out infinite;
}

@keyframes scNodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 8px  rgba(170, 130, 255, 0.7),
            0 0 20px rgba(140, 111, 255, 0.4);
    }
    50% {
        transform: scale(1.4);
        box-shadow:
            0 0 16px rgba(190, 155, 255, 1),
            0 0 38px rgba(140, 111, 255, 0.7),
            0 0 56px rgba(93,  37, 250, 0.25);
    }
}

/* ==========================================================================
   Closing Block
   ========================================================================== */
.how-closing {
    max-width: 680px;
    margin: 4.5rem auto 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%,   rgba(140, 111, 255, 0.18) 0%, transparent 60%) padding-box,
        radial-gradient(ellipse at 50% 120%, rgba(93,  37, 250, 0.12)  0%, transparent 60%) padding-box,
        #110e22 padding-box,
        linear-gradient(
            170deg,
            rgba(210, 165, 255, 0.6)  0%,
            rgba(140, 111, 255, 0.16) 40%,
            rgba(93,  37, 250, 0.08)  70%,
            rgba(210, 165, 255, 0.52) 100%
        ) border-box;
    border: 1px solid transparent;
    box-shadow:
        0 -6px 50px rgba(140, 111, 255, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Dot mesh on closing card */
.how-closing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(140, 111, 255, 0.038) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

/* Top shine */
.how-closing::after {
    content: '';
    position: absolute;
    top: 0; left: 18%; right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 170, 255, 0.6), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Content above pseudo layers */
.how-closing-inner {
    position: relative;
    z-index: 2;
    padding: 3.5rem 3rem;
    text-align: center;
}

.closing-headline {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-pure);
    line-height: 1.25;
    margin-bottom: 1.375rem;
}

.closing-points {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.closing-point {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.closing-point i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.how-cta {
    margin: 0 auto;
}

/* ==========================================================================
   Responsive — How Section
   ========================================================================== */
@media (max-width: 768px) {
    .how-section {
        padding: 4rem 0 5rem;
    }

    .step-card-inner {
        padding: 1.75rem 1.5rem;
    }

    .step-num-bg {
        font-size: 4.75rem;
        right: 1rem;
        top: 0.5rem;
        letter-spacing: -4px;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .step-connector {
        height: 3.5rem;
    }

    .how-closing-inner {
        padding: 2.25rem 1.5rem;
    }

    .closing-headline {
        font-size: 1.25rem;
    }

    .closing-point {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .step-card-inner {
        padding: 1.5rem 1.25rem;
    }

    .step-num-bg {
        font-size: 3.75rem;
        letter-spacing: -3px;
    }

    .step-title {
        font-size: 1rem;
    }

    .closing-headline {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   FAQ SECTION (QUEBRA DE OBJEÇÕES)
   ========================================================================== */
.faq-section {
    padding: 4rem 2rem 8rem; /* Corrected rhythm - line now sits at the junction */
    background: radial-gradient(circle at 50% 100%, rgba(140, 111, 255, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.faq-section .section-header {
    margin-bottom: 5rem;
}

.faq-section .pricing-kicker {
    margin-bottom: 2.25rem;
    display: inline-flex;
}

.faq-section .section-title {
    margin-bottom: 1.5rem;
}

.faq-section .section-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    position: relative;
    border-radius: 16px; /* Refined sharp look */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    
    background: linear-gradient(to top, rgba(13, 10, 22, 0.85), rgba(26, 20, 42, 0.65)) padding-box,
                linear-gradient(to top, 
                    rgba(118, 69, 255, 0.1) 0%, 
                    rgba(140, 111, 255, 0.2) 60%, 
                    rgba(210, 170, 255, 0.65) 100%
                ) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 170, 255, 0.9), transparent);
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(180, 140, 255, 0.3);
}

.faq-item::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Balanced texture vs glow */
    background: radial-gradient(400px circle at center 0%, rgba(140, 111, 255, 0.06), transparent 70%),
                radial-gradient(rgba(140, 111, 255, 0.05) 1.2px, transparent 1.2px);
    background-size: 100% 100%, 18px 18px;
    opacity: 0.35;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.faq-item.active::after,
.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    background: linear-gradient(rgba(20, 16, 35, 0.7), rgba(20, 16, 35, 0.7)) padding-box,
                linear-gradient(180deg, rgba(200, 180, 255, 0.35) 0%, rgba(118, 69, 255, 0.1) 50%, rgba(93, 37, 250, 0.04) 100%) border-box;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: space-between;
    padding: 1.45rem 2.25rem; /* Symmetrical breathable padding without 'void' */
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    z-index: 10;
    gap: 1.5rem;
}

.faq-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.faq-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(140, 111, 255, 0.06) padding-box,
                linear-gradient(135deg, rgba(255,255,255,0.15), rgba(140,111,255,0.05)) border-box;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.faq-icon-box i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #e5d4ff 0%, #9b72ff 50%, #7645ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(155, 114, 255, 0.2));
}

.faq-item:hover .faq-icon-box {
    transform: scale(1.05);
    background: rgba(140, 111, 255, 0.12) padding-box,
                linear-gradient(135deg, rgba(255,255,255,0.3), rgba(140,111,255,0.1)) border-box;
}

.faq-question {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.faq-chevron {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-chevron i {
    font-size: 0.95rem;
    color: rgba(200, 180, 255, 0.5);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.faq-item.active .faq-chevron {
    background: rgba(140, 111, 255, 0.15);
    border-color: rgba(140, 111, 255, 0.3);
}

.faq-item.active .faq-chevron i {
    transform: rotate(180deg);
    color: #fff;
}

/* 
 * Zero-Bleed Implementation
 */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-content {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
}

.faq-answer-inner {
    padding: 0 2.25rem 2.25rem;
    text-align: left;
}

/* Precise Left-aligned separator */
.faq-answer-inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(140, 111, 255, 0.15), transparent);
    margin-bottom: 1.5rem;
}

.faq-answer-inner p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #dfdfdf;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
}

.faq-item.active {
    background: linear-gradient(rgba(26, 20, 42, 0.8), rgba(26, 20, 42, 0.8)) padding-box,
                linear-gradient(180deg, rgba(200, 180, 255, 0.4) 0%, rgba(118, 69, 255, 0.1) 100%) border-box;
}

@media (max-width: 768px) {
    .faq-trigger {
        padding: 1.25rem 1.5rem;
    }
    .faq-answer-inner {
        padding: 0 1.5rem 1.75rem 4.8rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Desktop Specific Overrides
   ========================================================================== */
@media (min-width: 993px) {
    .steps-list {
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .step-connector {
        display: none !important; /* Force hide the timeline lines on horizontal grid */
    }

    .step-item {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .step-card {
        flex: 1; /* Match heights across the flex-row grid items */
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-6px) scale(1);
    }
}

@media (max-width: 480px) {
    .price-value .amount {
        font-size: 3.5rem;
    }
    .price-card {
        padding: 2rem 1.5rem;
    }
    .price-card.featured {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   FOOTER SECTION (RODAPÉ PREMIUM REFINADO)
   ========================================================================== */
.main-footer {
    background-color: #0b0914; /* Match main background Exactly */
    padding: 0 0 5rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    text-align: left; /* Explicitly left-aligned */
}

/* Radiant Top Separator - Consistently Global */
.main-footer .section-divider {
    margin-bottom: 4.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4.5rem;
    margin-bottom: 4.5rem;
}

.footer-brand {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.75rem;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

.footer-brand span {
    background: linear-gradient(90deg, #e5d4ff 0%, #9b72ff 50%, #7645ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-desc {
    font-size: 1.05rem;
    color: #9a94b5;
    line-height: 1.75;
    max-width: 480px;
    -webkit-font-smoothing: antialiased;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.75rem; /* Tighter refined rhythm */
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #f0edf8;
    transition: all 0.3s ease;
}

/* Perfect Gradients on Icons */
.security-list li i {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #e5d4ff 0%, #8c6fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(140, 111, 255, 0.4));
}

.footer-contact {
    margin-top: 0.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.85rem 1.6rem; /* Slimmer, more elegant pill height */
    border-radius: 100px; /* Perfect pill shape */
    background: linear-gradient(135deg, rgba(28, 22, 48, 0.6) 0%, rgba(15, 12, 25, 0.9) 100%) padding-box,
                linear-gradient(135deg, rgba(210, 170, 255, 0.4), rgba(118, 69, 255, 0.1)) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
}

.contact-card:hover {
    transform: translateX(5px);
    border-color: rgba(210, 170, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(140, 111, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #fff 0%, #a684ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Legal Section Refinement */
.footer-legal {
    padding-top: 4rem; /* Calibrated spacing */
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-notice p {
    font-size: 0.88rem;
    color: #6b6680;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 3.5rem; /* Balanced rhythm */
    -webkit-font-smoothing: antialiased;
}

.footer-bottom {
    display: flex;
    justify-content: flex-start; /* Aligned Left */
    font-size: 0.9rem;
    color: #4b475c;
    font-weight: 500;
}

/* Responsive Overrides - Always Left Aligned */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .brand-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 0 1.5rem 4rem 1.5rem;
    }
    .footer-divider-wrap {
        margin-bottom: 5rem;
    }
    .footer-grid {
        gap: 4rem;
    }
    .footer-brand {
        font-size: 2rem;
    }
}
