/* ==========================================================================
   REFERRATUM - COMPLETE DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    --primary: #0d8a6a;
    --primary-hover: #097357;
    --primary-light: #e8f5f1;
    --primary-mint: #10b981;
    --primary-mint-light: #ecfdf5;
    --dark-emerald: #052c24;
    --sidebar-dark: #0c372f;
    
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #ffffff;
    
    --bg-page: #fafdfc;
    --bg-card: #ffffff;
    --bg-light-gray: #f8faf9;
    
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(13, 138, 106, 0.12), 0 10px 25px -5px rgba(0, 0, 0, 0.06);
    --shadow-mockup: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. BASE & RESET STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
}

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

ul {
    list-style: none;
}

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

button, input, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINER
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.text-center {
    text-align: center;
}

/* Background Decorations */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-grid-dots {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--primary) 1.2px, transparent 1.2px);
    background-size: 16px 16px;
    opacity: 0.15;
}

.bg-grid-dots.top-right {
    top: 40px;
    right: 40px;
}

.bg-grid-dots.bottom-left {
    bottom: 200px;
    left: 20px;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 40%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 138, 106, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI ELEMENTS
   -------------------------------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(13, 138, 106, 0.25);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 138, 106, 0.35);
}

.btn-primary.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-text {
    font-weight: 600;
    color: var(--text-primary);
    padding: 8px 16px;
    transition: color var(--transition-fast);
}

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

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.mobile-only-link {
    display: none !important;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
    padding: 0 4px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background-color: var(--primary);
    border-radius: 4px 4px 0 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
}

.mobile-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.hero-centered {
    padding: 40px 0 60px;
    background: radial-gradient(circle at 50% 0%, rgba(13, 138, 106, 0.09) 0%, rgba(13, 138, 106, 0.02) 45%, transparent 70%), #ffffff;
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.hero-title-centered {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-top-subheadline {
    font-size: 1.26rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 820px;
    margin-top: 6px;
    margin-bottom: 0;
}

.hero-top-subheadline strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-subtitle-centered {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 660px;
}

.hero-trust-centered {
    justify-content: center;
}

.hero-bottom-content {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating External Cards & Mockup Container */
.hero-mockup-centered-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.floating-badge {
    position: absolute;
    top: 50%;
    z-index: 10;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 22px 26px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-width: 160px;
    transition: transform var(--transition-fast);
}

.floating-badge:hover {
    transform: translateY(-55%) scale(1.04);
}

.floating-left {
    top: 30px;
    left: -85px;
    transform: none;
}

.floating-right {
    bottom: 30px;
    top: auto;
    right: -85px;
    transform: none;
}

.floating-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon-box svg {
    width: 28px;
    height: 28px;
}

.floating-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Line Chart Visuals inside Dashboard */
.chart-container-visual {
    display: flex;
    gap: 12px;
    height: 130px;
    margin-top: 10px;
    position: relative;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
}

.chart-graph-area {
    flex: 1;
    position: relative;
    height: 100%;
}

.chart-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-line {
    width: 100%;
    height: 1px;
    background-color: #f3f4f6;
}

.chart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-tooltip {
    position: absolute;
    top: 16px;
    left: 42%;
    background-color: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.tooltip-date {
    font-size: 0.62rem;
    color: var(--text-muted);
}

.tooltip-val {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary);
}

.chart-x-axis {
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    margin-top: 8px;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Recent Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 12px 0;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-name-row {
    font-size: 0.78rem;
}

.act-name {
    color: var(--text-primary);
    font-weight: 700;
}

.act-action {
    color: var(--text-secondary);
    margin-left: 4px;
}

.act-time {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.user-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-trust-footer {
    margin-top: 40px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

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

/* Hero Left Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    border: 1px solid rgba(13, 138, 106, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 0.9rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta-wrapper {
    margin-bottom: 28px;
}

.hero-trust-list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   7. DASHBOARD MOCKUP (HERO RIGHT)
   -------------------------------------------------------------------------- */
.hero-mockup-wrapper {
    position: relative;
}

.dashboard-mockup {
    display: flex;
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-mockup);
    overflow: hidden;
    min-height: 520px;
    transition: transform var(--transition-normal);
}

.dashboard-mockup:hover {
    transform: translateY(-4px);
}

/* Dashboard Sidebar */
.dash-sidebar {
    width: 68px;
    background-color: var(--sidebar-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 28px;
}

.dash-brand-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-brand-icon svg {
    width: 20px;
    height: 20px;
}

.dash-nav-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.dash-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.dash-icon-btn svg {
    width: 20px;
    height: 20px;
}

.dash-icon-btn:hover,
.dash-icon-btn.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dashboard Main Window */
.dash-main {
    flex: 1;
    background-color: #fafcfb;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: hidden;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-greeting {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-select-wrapper {
    position: relative;
}

.dash-select {
    appearance: none;
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 6px 32px 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
}

.select-chevron {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.dash-bell-btn {
    position: relative;
    width: 32px;
    height: 32px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

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

.bell-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* Stat Cards Grid */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stat-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-icon-wrapper {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper.mint {
    background-color: var(--primary-light);
    color: var(--primary);
}

.stat-icon-wrapper.blue {
    background-color: #e0f2fe;
    color: #0284c7;
}

.stat-icon-wrapper svg {
    width: 14px;
    height: 14px;
}

.stat-body {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.stat-badge.positive {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Bottom Grid inside Dashboard */
.dash-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-panel {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}

.panel-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.panel-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
    margin-bottom: 12px;
}

/* Appointments List */
.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.appt-info {
    flex: 1;
}

.appt-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.appt-time {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.panel-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    margin-top: 4px;
}

.panel-link:hover {
    text-decoration: underline;
}

/* Referral Panel */
.copy-input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: #f9fafb;
    margin-bottom: 14px;
}

.copy-input {
    flex: 1;
    padding: 8px 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    background: transparent;
}

.btn-copy {
    padding: 8px 12px;
    background-color: white;
    border-left: 1px solid var(--border-color);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

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

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

.share-group {
    margin-top: 8px;
}

.share-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.social-share-btns {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform var(--transition-fast);
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn svg {
    width: 14px;
    height: 14px;
}

.social-btn.whatsapp { background-color: #25d366; }
.social-btn.facebook { background-color: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.email { background-color: #4b5563; }

/* --------------------------------------------------------------------------
   8. VALUE PROPOSITION SECTION
   -------------------------------------------------------------------------- */
.value-section {
    background: radial-gradient(circle at 12% 25%, rgba(13, 138, 106, 0.06) 0%, transparent 55%),
                radial-gradient(circle at 88% 75%, rgba(13, 138, 106, 0.06) 0%, transparent 55%),
                #ffffff;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 56px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.value-card.profile-card .value-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 6px;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 138, 106, 0.2);
}

.value-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon-box svg {
    width: 26px;
    height: 26px;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE FEATURE SHOWCASE SECTION
   -------------------------------------------------------------------------- */
.features-showcase-section {
    background: linear-gradient(180deg, #ffffff 0%, rgba(13, 138, 106, 0.04) 50%, #ffffff 100%);
}

.showcase-header {
    margin-bottom: 48px;
}

.sub-badge-green {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.showcase-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Left Feature Tabs */
.feature-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-tab-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background-color: transparent;
    text-align: left;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.feature-tab-item:hover {
    background-color: var(--bg-light-gray);
}

.feature-tab-item.active {
    background-color: var(--bg-light-gray);
    border-color: rgba(13, 138, 106, 0.15);
    box-shadow: var(--shadow-sm);
}

.tab-icon-box {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-icon-box svg {
    width: 22px;
    height: 22px;
}

.tab-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.tab-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Right Showcase Visual (Mobile Phone Mockup & Network) */
.showcase-visual-wrapper {
    position: relative;
}

.phone-and-diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

/* Phone Mockup Frame (Sleek iPhone Style) */
.phone-mockup {
    width: 300px;
    background-color: #0f172a;
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    border: 2px solid #334155;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 80px;
    left: -4px;
    width: 3px;
    height: 48px;
    background-color: #334155;
    border-radius: 2px 0 0 2px;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 90px;
    right: -4px;
    width: 3px;
    height: 38px;
    background-color: #334155;
    border-radius: 0 2px 2px 0;
}

.phone-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 16px 6px;
    color: #111827;
    font-size: 0.72rem;
    font-weight: 700;
    position: relative;
}

.phone-dynamic-island {
    width: 75px;
    height: 18px;
    background-color: #000000;
    border-radius: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 4px;
}

.phone-status-icons {
    color: #374151;
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-screen-content {
    background-color: #ffffff;
    border-radius: 34px;
    overflow: hidden;
    height: 480px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-screen-view {
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.phone-screen-view.active {
    display: flex;
    opacity: 1;
}

.phone-home-bar {
    width: 100px;
    height: 4px;
    background-color: #000000;
    border-radius: 4px;
    margin: 8px auto 2px;
}

/* Phone App Standard Components */
.phone-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #f3f4f6;
    background-color: #ffffff;
}

.phone-hdr-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #111827;
}

.phone-hdr-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    background: transparent;
    border: none;
    padding: 0;
}

.phone-hdr-btn svg {
    width: 18px;
    height: 18px;
}

.phone-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #f3f4f6;
    background-color: #ffffff;
    margin-top: auto;
}

.p-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.58rem;
    color: #9ca3af;
    gap: 2px;
    font-weight: 500;
}

.p-nav-item svg {
    width: 16px;
    height: 16px;
}

.p-nav-item.active {
    color: #0d8a6a;
    font-weight: 800;
}

/* Screen 1: Agenda */
.phone-calendar-strip {
    padding: 8px 12px;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.cal-month-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    color: #6b7280;
    display: block;
    margin-bottom: 6px;
}

.cal-days-row {
    display: flex;
    justify-content: space-between;
}

.cal-day-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.58rem;
    color: #6b7280;
    padding: 4px 6px;
    border-radius: 10px;
}

.cal-day-col.active {
    background-color: #0d8a6a;
    color: #ffffff;
    font-weight: 700;
}

.d-name { font-size: 0.52rem; }
.d-num { font-size: 0.68rem; font-weight: 700; }

.phone-agenda-list {
    flex: 1;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow-y: auto;
}

.agenda-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    background-color: #f9fafb;
    border-radius: 10px;
    font-size: 0.68rem;
}

.ag-time {
    font-weight: 700;
    color: #374151;
    font-size: 0.65rem;
    width: 36px;
}

.ag-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 6px;
}

.ag-name {
    font-weight: 700;
    color: #111827;
    font-size: 0.68rem;
}

.ag-service {
    font-size: 0.58rem;
    color: #6b7280;
}

.ag-status {
    padding: 3px 8px;
    border-radius: 99px;
    font-size: 0.56rem;
    font-weight: 700;
}

.status-confirmed { background-color: #dcfce7; color: #15803d; }
.status-pending { background-color: #dbeafe; color: #1d4ed8; }

/* Screen 2: Referidos */
.phone-ref-hero-card {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.ref-hero-desc {
    font-size: 0.7rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.35;
}

.phone-link-box-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.phone-link-box-row .phone-input {
    flex: 1;
    font-size: 0.65rem;
    padding: 6px 8px;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #4b5563;
}

.btn-copy-icon {
    background-color: #0d8a6a;
    color: white;
    border-radius: 8px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-copy-icon svg { width: 14px; height: 14px; }

.ref-share-lbl {
    font-size: 0.62rem;
    color: #6b7280;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.share-social-row {
    display: flex;
    gap: 10px;
}

.soc-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
}

.soc-btn svg { width: 14px; height: 14px; }
.soc-wa { background-color: #25d366; }
.soc-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc-fb { background-color: #1877f2; }
.soc-more { background-color: #f3f4f6; color: #374151; font-weight: 800; }

.phone-ref-stats-sec {
    flex: 1;
    padding: 12px 14px;
    text-align: left;
}

.ref-stats-h {
    font-size: 0.72rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.ref-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.65rem;
}

.ref-st-left {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
}

.ref-st-left svg { width: 14px; height: 14px; color: #0d8a6a; }
.ref-st-val { font-weight: 800; color: #111827; }

/* Screen 3: Comisiones */
.phone-comm-green-card {
    margin: 10px 12px 8px;
    padding: 14px;
    background-color: #0d8a6a;
    color: white;
    border-radius: 16px;
    text-align: left;
}

.comm-lbl { font-size: 0.62rem; opacity: 0.85; display: block; }
.comm-val { font-size: 1.25rem; font-weight: 800; display: block; line-height: 1.2; margin-top: 2px; }

.comm-sub-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 6px;
}

.comm-growth { font-size: 0.58rem; font-weight: 600; opacity: 0.9; }
.comm-sparkline { width: 54px; height: 16px; }

.phone-tab-subrow {
    display: flex;
    gap: 16px;
    padding: 4px 14px;
    border-bottom: 1px solid #f3f4f6;
}

.sub-tab-btn {
    font-size: 0.68rem;
    font-weight: 600;
    color: #6b7280;
    padding: 4px 0;
    background: transparent;
    border: none;
}

.sub-tab-btn.active {
    color: #0d8a6a;
    border-bottom: 2px solid #0d8a6a;
    font-weight: 800;
}

.phone-comm-list {
    flex: 1;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
}

.comm-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f9fafb;
}

.comm-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.comm-details { flex: 1; text-align: left; }
.comm-name { font-size: 0.68rem; font-weight: 700; color: #111827; display: block; }
.comm-subtext { font-size: 0.58rem; color: #6b7280; }

.comm-payout { text-align: right; }
.payout-val { font-size: 0.68rem; font-weight: 800; color: #111827; display: block; }
.payout-st { font-size: 0.55rem; color: #6b7280; }

.comm-total-footer {
    display: flex;
    justify-content: space-between;
    padding: 8px 14px;
    background-color: #f9fafb;
    font-size: 0.68rem;
    color: #374151;
    border-top: 1px solid #f3f4f6;
}

/* Screen 4: Reportes */
.phone-dropdown-pill {
    font-size: 0.62rem;
    color: #6b7280;
    font-weight: 600;
}

.phone-reports-section {
    flex: 1;
    padding: 10px 12px;
    text-align: left;
    overflow-y: auto;
}

.rep-sub-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.rep-grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}

.rep-card {
    background-color: #f9fafb;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rep-lbl { font-size: 0.56rem; color: #6b7280; }
.rep-val { font-size: 0.82rem; font-weight: 800; color: #111827; }
.rep-badge.pos { font-size: 0.56rem; font-weight: 700; color: #16a34a; }

.rep-chart-box {
    background-color: #f9fafb;
    padding: 8px 10px;
    border-radius: 10px;
}

.mini-chart-graph { position: relative; margin-top: 4px; }
.phone-rep-svg { width: 100%; height: 42px; }

.mini-chart-dates {
    display: flex;
    justify-content: space-between;
    font-size: 0.52rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* Referral Diagram Nodes next to Phone */
.referral-diagram-nodes {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 240px;
    z-index: 3;
    pointer-events: none;
}

.node-central-dollar {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 138, 106, 0.2);
}

.nodes-svg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.node-avatar {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    box-shadow: var(--shadow-md);
}

.node-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.node-avatar.top-node {
    top: 0;
    right: 0;
}

.node-avatar.middle-node {
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
}

.node-avatar.bottom-node {
    bottom: 0;
    right: 0;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIAL SECTION
   -------------------------------------------------------------------------- */
.testimonial-section {
    background: radial-gradient(circle at 50% 40%, rgba(13, 138, 106, 0.05) 0%, transparent 65%), #ffffff;
}

.testimonial-card {
    background-color: var(--bg-light-gray);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.4s ease;
}

.quote-icon-large {
    position: absolute;
    top: 36px;
    left: 40px;
    width: 48px;
    height: 48px;
    opacity: 0.9;
}

.testimonial-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-avatar-box {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.testimonial-text-box {
    flex: 1;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.star-rating {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   11. DARK CTA BOTTOM BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
    background: radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 85% 80%, rgba(13, 138, 106, 0.35) 0%, transparent 50%),
                var(--dark-emerald);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;

}

.cta-subheading {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-mint);
    line-height: 1.2;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.btn-cta-dark {
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1.05rem;
}

.cta-benefits-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.cta-icon {
    width: 15px;
    height: 15px;
    color: var(--primary-mint);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: white;
    border-top: 1px solid var(--border-color);
    padding: 64px 0 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 460px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
}

.footer-bottom-container {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* --------------------------------------------------------------------------
   13. TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-mint);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 600px;
    }

    .hero-trust-list {
        justify-content: center;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .referral-diagram-nodes {
        display: none;
    }

    .cta-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .cta-right {
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto !important;
        background-color: #ffffff;
        padding: 18px 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid var(--border-light);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        gap: 10px;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu .mobile-only-link {
        display: block !important;
    }

    .nav-actions .btn-text {
        display: none !important;
    }

    .nav-actions .btn-primary {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .nav-actions .btn-primary .btn-arrow {
        display: none !important;
    }

    .nav-link {
        height: auto;
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-link.active::after {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-toggle span {
        width: 100%;
        height: 2.5px;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title-centered {
        font-size: 2.4rem;
    }

.dashboard-scale-box {
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .hero-mockup-centered-wrapper {
        position: relative !important;
        width: 100% !important;
        max-width: 360px !important;
        height: auto !important;
        margin: 0 auto !important;
        overflow: visible !important;
        display: block !important;
        padding: 0 10px !important;
    }

    .dashboard-scale-box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        transform: none !important;
    }

    .dashboard-mockup {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        border-radius: 20px !important;
        min-height: auto !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
        overflow: hidden !important;
    }

    .dash-sidebar {
        display: flex !important;
        width: 44px !important;
        padding: 12px 0 !important;
        gap: 14px !important;
    }

    .dash-brand-icon {
        width: 26px !important;
        height: 26px !important;
        border-radius: 6px !important;
    }

    .dash-brand-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .dash-icon-btn {
        width: 30px !important;
        height: 30px !important;
    }

    .dash-icon-btn svg {
        width: 15px !important;
        height: 15px !important;
    }

    .dash-main {
        padding: 10px !important;
        gap: 8px !important;
        flex: 1 !important;
        overflow: hidden !important;
    }

    .dash-greeting {
        font-size: 0.88rem !important;
    }

    .dash-select {
        font-size: 0.65rem !important;
        padding: 3px 20px 3px 6px !important;
    }

    .dash-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 5px !important;
    }

    .stat-card {
        padding: 6px 5px !important;
    }

    .stat-label {
        font-size: 0.58rem !important;
    }

    .stat-value {
        font-size: 0.88rem !important;
    }

    .stat-badge {
        font-size: 0.55rem !important;
        padding: 1px 4px !important;
    }

    .dash-bottom-grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    .activity-panel {
        display: none !important;
    }

    .dash-panel {
        padding: 8px !important;
    }

    .panel-header h3 {
        font-size: 0.75rem !important;
    }

    .floating-badge {
        position: absolute !important;
        z-index: 20 !important;
        padding: 8px 12px !important;
        min-width: auto !important;
        gap: 6px !important;
        border-radius: 14px !important;
        box-shadow: 0 8px 22px rgba(0,0,0,0.14) !important;
        background-color: #ffffff !important;
        border: 1px solid var(--border-color) !important;
    }

    .floating-left {
        top: 15px !important;
        left: -14px !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .floating-right {
        bottom: 15px !important;
        right: -14px !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .floating-icon-box {
        width: 32px !important;
        height: 32px !important;
    }

    .floating-icon-box svg {
        width: 16px !important;
        height: 16px !important;
    }

    .floating-text {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }

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

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-meta {
        flex-direction: column;
        gap: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title-centered {
        font-size: 2.4rem;
    }

    .hero-subtitle-centered {
        font-size: 0.9rem;
    }

    .feature-tabs-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .phone-mockup {
        width: 100%;
        max-width: 295px;
        margin: 0 auto;
    }

    .cta-heading, .cta-subheading {
        font-size: 1.55rem;
    }

    .cta-benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 20px;
        justify-content: center;
    }
}
