/* ==========================================================================
   TweeLabs Digital - Digital Visibility Service (Light Theme Only)
   Optimized CSS v4.0 - SEO Content Cards & Grid
   Palette: Deep Slate (#0f172a), Indigo (#4f46e5), Cyan (#06b6d4), Light (#f8fafc)
   ========================================================================== */

:root {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-subtle: #f1f5f9;
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    --border-accent: #c7d2fe;
    
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;
    --primary-glow: rgba(79, 70, 229, 0.15);
    
    --accent-cyan: #06b6d4;
    --accent-teal: #0d9488;
    --accent-emerald: #059669;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
    --shadow-hover: 0 20px 35px -10px rgba(15, 23, 42, 0.08), 0 8px 10px -4px rgba(15, 23, 42, 0.03);
    --shadow-featured: 0 20px 40px -10px rgba(79, 70, 229, 0.18);
    
    --transition: all 0.25s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

body.light-theme {
    background-color: var(--bg-main);
    color: var(--text-main);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--primary);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #312e81 0%, #4f46e5 50%, #0891b2 100%);
    color: #ffffff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: var(--bg-subtle);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.btn-whatsapp {
    background: var(--accent-emerald);
    color: #ffffff;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #047857;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section V2 */
.hero-section-v2 {
    padding: 60px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-container-v2 {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.badge-pill-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    border: 1px solid var(--border-accent);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

.hero-title-v2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.hero-description-v2 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.h-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.h-icon {
    color: var(--accent-emerald);
    font-weight: 800;
    font-size: 1.1rem;
}

.hero-actions-v2 {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.proof-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    font-size: 0.85rem;
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.proof-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Right Column: Hero Card Simulator */
.hero-right-v2 {
    position: relative;
}

.hero-card-v2 {
    background: #ffffff;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-featured);
    position: relative;
    z-index: 2;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-emerald);
    box-shadow: 0 0 8px var(--accent-emerald);
}

.hero-card-tabs {
    display: flex;
    background: var(--bg-subtle);
    padding: 4px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    gap: 4px;
}

.hero-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-tab-btn.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.hero-preview-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.hero-plan-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.hero-plan-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stats-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.h-stat-box {
    background: var(--bg-subtle);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.h-stat-title {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.h-stat-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.hero-pacing-indicator {
    background: var(--primary-light);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 24px;
}

.pacing-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.pacing-bar-bg {
    height: 6px;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.pacing-bar-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    border-radius: 3px;
}

.hero-float-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    z-index: 3;
}

.badge-top-right {
    top: -16px;
    right: -16px;
}

.badge-bottom-left {
    bottom: -16px;
    left: -16px;
}

/* Trust Bar */
.trust-bar {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-icon {
    font-size: 1.1rem;
}

/* SEO Content Cards Grid */
.seo-overview-section {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.seo-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.seo-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.seo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.seo-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.seo-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.seo-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Execution Timeline Section */
.timeline-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.timeline-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.timeline-step {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    position: relative;
    transition: var(--transition);
}

.timeline-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.timeline-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Sections */
section {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Packages Grid */
.packages-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.package-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-featured);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.package-header {
    margin-bottom: 20px;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.delivery-badge {
    display: inline-block;
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    margin: 8px 0 14px;
    border: 1px solid var(--border-color);
}

.delivery-badge.highlight {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--border-accent);
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.package-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.package-price .amount {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.custom-text {
    font-size: 1.6rem !important;
    color: var(--primary);
}

.package-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-height: 40px;
}

.package-metrics {
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.metric-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.metric-row:last-child {
    margin-bottom: 0;
}

.metric-label {
    color: var(--text-dim);
}

.metric-val {
    font-weight: 700;
    color: var(--text-main);
}

.package-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.package-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.package-features li strong {
    color: var(--text-main);
}

.check {
    color: var(--accent-emerald);
    font-weight: 800;
}

.card-btn {
    width: 100%;
    margin-top: auto;
}

/* Feature Matrix Table */
.matrix-section {
    background: var(--bg-main);
}

.table-responsive {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.matrix-table th, .matrix-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.matrix-table th {
    background: var(--bg-subtle);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.matrix-table .feature-col {
    text-align: left;
    width: 30%;
}

.feature-title {
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
}

.th-price {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.th-highlight, .td-highlight {
    background: var(--primary-light);
}

.badge-check {
    color: var(--accent-emerald);
    font-weight: 800;
    font-size: 1.1rem;
}

.dash {
    color: var(--text-dim);
}

/* Pills */
.pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pill-basic { background: #f1f5f9; color: #475569; }
.pill-std { background: #e0f2fe; color: #0284c7; }
.pill-adv { background: #e0e7ff; color: #3730a3; }
.pill-mixed { background: #fef3c7; color: #92400e; }
.pill-custom { background: #fae8ff; color: #86198f; }
.pill-det { background: #dcfce7; color: #166534; }
.pill-prio { background: #e0e7ff; color: #4338ca; }
.pill-ded { background: linear-gradient(90deg, #4f46e5, #06b6d4); color: #ffffff; }
.pill-opt { background: #f1f5f9; color: var(--text-dim); }

/* Calculator Section */
.calculator-section {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-container {
    background: #ffffff;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-hover);
}

.calc-header {
    text-align: center;
    margin-bottom: 36px;
}

.slider-wrapper {
    margin-bottom: 30px;
}

.slider-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.slider-value-display {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

input[type=range] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    accent-color: var(--primary);
    cursor: pointer;
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 10px;
}

.recommendation-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Important Terms Section */
.terms-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.term-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.term-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.term-icon {
    font-size: 1.8rem;
    background: var(--primary-light);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.term-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.term-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Modal Popup */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 32px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container-v2 { grid-template-columns: 1fr; gap: 40px; }
    .hero-title-v2 { font-size: 2.5rem; }
    .hero-float-badge { display: none; }
}

@media (max-width: 600px) {
    .hero-title-v2 { font-size: 2rem; }
    .hero-actions-v2 { flex-direction: column; }
    .hero-stats-box-grid { grid-template-columns: 1fr; }
}
