﻿:root {
    --primary: #3b82f6;
    --primary-soft: #7dd3fc;
    --primary-light: #93c5fd;
    --secondary: #7c3aed;
    --dark-bg: #050816;
    --bg-panel: rgba(9, 14, 26, 0.72);
    --bg-panel-strong: rgba(13, 19, 33, 0.9);
    --card-bg: rgba(255, 255, 255, 0.04);
    --text-primary: #f8fbff;
    --text-secondary: #bdc9de;
    --text-muted: #8ea4c6;
    --border-color: rgba(160, 180, 220, 0.18);
    --glow-blue: rgba(59, 130, 246, 0.32);
    --glow-purple: rgba(124, 58, 237, 0.25);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 52px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.16), transparent 30%),
        var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    min-height: 100vh;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -2;
    pointer-events: none;
    animation: auroraPulse 8s ease-in-out infinite alternate;
}

body::before {
    width: 880px;
    height: 880px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.28) 0%, transparent 68%);
    top: -280px;
    left: -220px;
}

body::after {
    width: 820px;
    height: 820px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, transparent 70%);
    bottom: -260px;
    right: -180px;
    animation-delay: 4s;
}

@keyframes auroraPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
    50% { transform: scale(1.12) translate(30px, -22px); opacity: 1; }
    100% { transform: scale(1) translate(-18px, 16px); opacity: 0.7; }
}

.container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

/* ==========================
   HERO SECTION
========================== */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 52px 0 88px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(96, 165, 250, 0.18), transparent 20%),
        radial-gradient(circle at 80% 12%, rgba(168, 85, 247, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(8, 12, 24, 0.36), rgba(8, 12, 24, 0));
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 58px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 640px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(96, 165, 250, 0.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 24px rgba(59,130,246,0.12);
    color: #9ad6ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    margin-bottom: 22px;
    transition: var(--transition);
    animation: tagGlow 3s ease-in-out infinite;
}

.hero-tag:hover {
    background: rgba(18, 32, 58, 0.85);
    border-color: rgba(96, 165, 250, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.22);
}

@keyframes tagGlow {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 20px rgba(59, 130, 246, 0.1); }
    50% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 32px rgba(59, 130, 246, 0.25); }
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 0.98;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.065em;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #dbeafe 0%, #7dd3fc 18%, #60a5fa 35%, #7c3aed 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3.8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.72;
    max-width: 590px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.22);
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.28), transparent 28%, transparent 72%, rgba(255,255,255,0.18));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #7dd3fc 0%, #3b82f6 28%, #4f46e5 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(59, 130, 246, 0.38), 0 0 24px rgba(96, 165, 250, 0.24);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 24px 48px rgba(59, 130, 246, 0.52), 0 0 30px rgba(96, 165, 250, 0.32);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.48);
    border-color: rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #f8fbff;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.76);
    border-color: rgba(148, 163, 184, 0.32);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.42);
}

.hero-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 540px;
}

.list-item {
    font-size: 14px;
    color: #dae4f4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: var(--transition);
}

.list-item::before {
    content: "\2713";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #7dd3fc, #3b82f6 52%, #4f46e5 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.24);
}

.list-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.hero-dashboard {
    position: relative;
    animation: floatCard 6s ease-in-out infinite;
    width: 100%;
    max-width: 560px;
    justify-self: center;
}

.dashboard-card {
    position: relative;
    background: linear-gradient(180deg, rgba(10, 15, 27, 0.82), rgba(11, 17, 30, 0.74));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 32px;
    padding: 28px 24px 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.7),
        0 0 0 1px rgba(148, 163, 184, 0.08),
        0 0 70px rgba(59, 130, 246, 0.18),
        0 0 120px rgba(124, 58, 237, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
}

.dashboard-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.8), rgba(59, 130, 246, 0.9), rgba(124, 58, 237, 0.9), rgba(125, 211, 252, 0.8));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    animation: gradientBorder 5s ease infinite;
    opacity: 0.8;
}

@keyframes gradientBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dashboard-card::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.28) 0%, rgba(168, 85, 247, 0.18) 30%, transparent 72%);
    top: -110px;
    right: -80px;
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: innerGlow 5.5s ease-in-out infinite alternate;
}

@keyframes innerGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(18px, -12px) scale(1.25); opacity: 1; }
}

.dashboard-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 38px 90px rgba(2, 6, 23, 0.74), 0 0 0 1px rgba(148, 163, 184, 0.08), 0 0 90px rgba(59, 130, 246, 0.2), 0 0 150px rgba(124, 58, 237, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-card:hover::before {
    opacity: 1;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.dashboard-header h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-logo-image {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.22);
    background: rgba(15, 23, 42, 0.7);
    padding: 4px;
}

.dashboard-logo h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.status {
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(22, 163, 74, 0.4));
    border: 1px solid rgba(110, 231, 183, 0.4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.26);
    animation: statusPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: #d1fae5;
}

.status::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(74, 222, 128, 0.9);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.24); }
    50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.52); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.dashboard-header h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dashboard-logo h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.dashboard-right {
    display: flex;
    justify-content: center;
}

.dashboard-body {
    display: grid;
    gap: 18px;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #cce1ff;
    background: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.stat-trend.up {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.16);
}

.stat-trend.down {
    color: #fda4af;
    background: rgba(248, 113, 113, 0.16);
}

.rec-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.rec-header h4 {
    margin: 0;
    font-size: 15px;
    color: #fff;
}

.status {
    padding: 7px 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.status::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.7); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.score-card {
    text-align: center;
    margin-bottom: 20px;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.score-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.score-card h2 {
    font-size: clamp(44px, 7vw, 62px);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #2563eb, #7c3aed);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    line-height: 1;
    margin: 6px 0;
}

.score-status {
    font-size: 12px;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 10px;
}

.score-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 6px;
}

.score-fill {
    height: 100%;
    width: 96%;
    background: linear-gradient(90deg, #2563eb, #60a5fa, #22c55e);
    border-radius: 10px;
    animation: progressFill 2s ease-out;
    position: relative;
}

.score-fill::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 96%; }
}

@keyframes progressShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    transition: width 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-box:hover::after {
    width: 80%;
}

.stat-box small {
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #60a5fa;
    font-family: 'Space Grotesk', sans-serif;
}

.recommendation {
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-left: 3px solid #2563eb;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.recommendation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #60a5fa, #2563eb, #7c3aed);
    border-radius: 0 3px 3px 0;
}

.recommendation:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.recommendation h4 {
    margin-bottom: 6px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
}

.recommendation p {
    color: #d6e2f3;
    line-height: 1.6;
    font-size: 12px;
}

@keyframes floatCard {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(0.5deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-0.5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* ==========================
   FEATURES SECTION
========================== */
.features-section {
    padding: 104px 0;
    position: relative;
}

.section-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(14, 116, 144, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #9ad6ff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    margin: 0 0 18px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.section-title h2 span {
    background: linear-gradient(135deg, #dbeafe 0%, #7dd3fc 20%, #60a5fa 45%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

.section-title p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 760px;
}

.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.features-mobile-carousel {
    display: none;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 224px;
    background: linear-gradient(145deg, rgba(10, 15, 27, 0.92), rgba(14, 20, 35, 0.76));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    padding: 22px 22px 20px;
    text-align: left;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 16px 44px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255,255,255,0.06);
    text-decoration: none;
    color: inherit;
    isolation: isolate;
    animation: cardFloat 7.2s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.16), transparent 42%, rgba(124, 58, 237, 0.12));
    pointer-events: none;
    opacity: 0.8;
    z-index: -2;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 68%);
    top: -90px;
    right: -90px;
    transition: transform 0.45s ease, opacity 0.45s ease;
    pointer-events: none;
    opacity: 0.82;
    z-index: -1;
}

.feature-card:hover {
    animation: none;
    transform: translate3d(var(--shift-x, 0px), calc(-10px + var(--shift-y, 0px)), 0) scale(1.015);
    border-color: rgba(96, 165, 250, 0.44);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.82));
    box-shadow: 0 30px 84px rgba(2, 6, 23, 0.46), 0 0 70px rgba(59, 130, 246, 0.14);
}

.feature-card:hover::after {
    transform: scale(1.18);
    opacity: 1;
}

.feature-card--large {
    grid-column: span 7;
    min-height: 300px;
}

.feature-card--wide {
    grid-column: span 5;
    min-height: 300px;
}

.feature-card--medium {
    grid-column: span 4;
}

.feature-card--small {
    grid-column: span 3;
}

.feature-card--featured {
    border-color: rgba(125, 211, 252, 0.26);
    box-shadow: 0 24px 58px rgba(59, 130, 246, 0.16), inset 0 1px 0 rgba(255,255,255,0.08);
}

.feature-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.feature-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.feature-card__footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.26);
    color: #9ad6ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.feature-meter {
    position: relative;
    flex: 1;
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.feature-meter span {
    display: block;
    height: 100%;
    width: 50%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa, #7dd3fc, #8b5cf6);
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.22);
}

.feature-metric {
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(59, 130, 246, 0.14), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(125, 211, 252, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 34px rgba(59,130,246,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    color: #f8fbff;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 42px rgba(59,130,246,0.2);
    border-color: rgba(125, 211, 252, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    line-height: 1.2;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@keyframes cardFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

@media (max-width: 1100px) {
    .features-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .feature-card--large,
    .feature-card--wide,
    .feature-card--medium,
    .feature-card--small {
        grid-column: span 1;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-bento-grid {
        display: none;
    }

    .features-mobile-carousel {
        display: flex;
        overflow-x: auto;
        padding: 8px 2px 6px;
        margin-top: 24px;
        gap: 14px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .features-mobile-carousel::-webkit-scrollbar {
        display: none;
    }

    .features-mobile-carousel .feature-card {
        min-width: min(84vw, 320px);
        scroll-snap-align: start;
        padding: 24px 22px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 45px 0;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 19px;
        margin-bottom: 2px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

/* ==========================
   DASHBOARD PREVIEW
========================== */
.dashboard-preview {
    padding: 86px 0 28px;
    position: relative;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.12);
    color: #9ad6ff;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
    border: 1px solid rgba(96, 165, 250, 0.24);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.dashboard-left h2 {
    font-size: clamp(34px, 4.6vw, 54px);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.06em;
}

.dashboard-left h2 span {
    background: linear-gradient(135deg, #dbeafe 0%, #7dd3fc 22%, #60a5fa 48%, #7c3aed 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.dashboard-left p {
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 30px;
    font-size: 17px;
    max-width: 510px;
}

.dashboard-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-bottom: 28px;
    max-width: 480px;
}

.dashboard-list div {
    color: #dce9fb;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.dashboard-list div::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #7dd3fc, #3b82f6 52%, #4f46e5 100%);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 24px rgba(59,130,246,0.26);
}

.dashboard-list div::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-13px, 4px) rotate(-45deg);
}

.dashboard-list div:hover {
    color: #fff;
    transform: translateX(4px);
}

.dashboard-screen {
    background: linear-gradient(180deg, rgba(7, 12, 24, 0.92), rgba(10, 16, 29, 0.8));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 30px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 22px;
    box-shadow: 0 26px 75px rgba(2, 6, 23, 0.6), 0 0 0 1px rgba(148,163,184,0.08), 0 0 80px rgba(59, 130, 246, 0.14);
    transition: all 0.4s ease;
}

.dashboard-screen:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 90px rgba(2, 6, 23, 0.72), 0 0 110px rgba(59, 130, 246, 0.18);
    border-color: rgba(96, 165, 250, 0.18);
}

.screen-header {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
    align-items: center;
}

.screen-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.screen-header span:nth-child(1) { background: #ef4444; }
.screen-header span:nth-child(2) { background: #fbbf24; }
.screen-header span:nth-child(3) { background: #34d399; }

.screen-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mini-card {
    background: linear-gradient(180deg, rgba(15,23,42,0.9), rgba(11,18,32,0.8));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 18px;
    padding: 18px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.mini-card:hover {
    background: rgba(17, 24, 39, 1);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(2, 6, 23, 0.28);
}

.mini-card small {
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 8px;
}

.mini-card h3 {
    color: #7dd3fc;
    font-size: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.chart-box {
    grid-column: 1 / 3;
    height: 170px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.24), rgba(59,130,246,0.18)),
        linear-gradient(135deg, #111827, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #dbeafe;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 1px solid rgba(96, 165, 250, 0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.chart-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 0 76%, rgba(148,163,184,0.08) 76% 77%, transparent 77%),
        linear-gradient(90deg, transparent 0 10%, rgba(148,163,184,0.08) 10% 11%, transparent 11% 100%);
    pointer-events: none;
    opacity: 0.7;
}

.chart-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.2), transparent 68%);
    top: -52px;
    right: -40px;
    pointer-events: none;
}

.chart-box:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 35px rgba(59,130,246,0.12);
}

@media (max-width: 991px) {
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .dashboard-left p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .dashboard-list {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .dashboard-screen {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dashboard-preview {
        padding: 45px 0;
    }

    .dashboard-left h2 {
        font-size: 32px;
    }

    .dashboard-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .screen-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .chart-box {
        grid-column: auto;
        height: 120px;
    }

    .mini-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .dashboard-preview {
        padding: 35px 0;
    }

    .dashboard-left h2 {
        font-size: 26px;
    }

    .dashboard-left p {
        font-size: 14px;
    }

    .section-tag {
        font-size: 11px;
        padding: 7px 14px;
    }

    .dashboard-screen {
        padding: 16px;
    }

    .screen-body {
        gap: 10px;
    }

    .mini-card {
        padding: 14px;
    }
}

/* ==========================
   HOME SCALE CARDS
========================== */
.sat-home-scale {
    padding: 1rem 0 3rem;
}

.sat-home-scale__heading {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.sat-home-scale__eyebrow {
    margin: 0 0 0.7rem;
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    font-weight: 700;
}

.sat-home-scale__heading h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.1;
}

.sat-home-scale__heading p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.8;
}

.sat-home-scale__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.sat-home-scale-card {
    display: block;
    padding: 1.2rem;
    border-radius: 22px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    box-shadow: 0 18px 42px rgba(3, 10, 24, 0.16);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sat-home-scale-card:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.16);
}

.sat-home-scale-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.8rem;
    border-radius: 14px;
    color: #60a5fa;
    background: rgba(96,165,250,0.16);
    border: 1px solid rgba(255,255,255,0.12);
}

.sat-home-scale-card__icon svg {
    width: 20px;
    height: 20px;
}

.sat-home-scale-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.sat-home-scale-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .sat-home-scale__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sat-home-scale__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   PLATFORM BENTO + DASHBOARD
========================== */
.platform-bento {
    padding: 120px 0 70px;
    position: relative;
}

.premium-showcase__header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.premium-showcase__header--split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: end;
    max-width: 1280px;
    text-align: left;
    margin-bottom: 52px;
}

.premium-showcase__header h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.premium-showcase__header h2 span {
    background: linear-gradient(135deg, #dbeafe 0%, #7dd3fc 22%, #60a5fa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

.premium-showcase__header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.75;
}

.platform-bento__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    grid-auto-rows: minmax(180px, auto);
    gap: 22px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 26px 24px 22px;
    background: linear-gradient(180deg, rgba(10, 15, 27, 0.88), rgba(15, 22, 37, 0.7));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.16), transparent 38%);
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.42);
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.48), 0 0 80px rgba(59, 130, 246, 0.12);
}

.bento-card--large {
    grid-column: 1 / 2;
    grid-row: span 2;
    min-height: 420px;
}

.bento-card--wide {
    grid-column: 2 / span 2;
    min-height: 220px;
}

.bento-card--small {
    min-height: 200px;
}

.bento-card--medium {
    min-height: 220px;
}

.bento-card--blue { background: linear-gradient(180deg, rgba(22, 33, 60, 0.92), rgba(12, 18, 30, 0.74)); }
.bento-card--purple { background: linear-gradient(180deg, rgba(32, 24, 51, 0.9), rgba(15, 21, 37, 0.74)); }
.bento-card--cyan { background: linear-gradient(180deg, rgba(17, 35, 44, 0.88), rgba(12, 19, 31, 0.74)); }
.bento-card--amber { background: linear-gradient(180deg, rgba(36, 28, 17, 0.9), rgba(15, 19, 30, 0.74)); }
.bento-card--green { background: linear-gradient(180deg, rgba(18, 35, 31, 0.9), rgba(12, 19, 30, 0.74)); }
.bento-card--red { background: linear-gradient(180deg, rgba(41, 22, 26, 0.9), rgba(12, 19, 30, 0.74)); }

.bento-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.bento-card__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    color: #f8fbff;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.22), rgba(59, 130, 246, 0.18), rgba(168, 85, 247, 0.18));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 26px rgba(59,130,246,0.18);
}

.bento-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #9ad6ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bento-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.05em;
    font-family: 'Space Grotesk', sans-serif;
}

.bento-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

.premium-dashboard-showcase {
    padding: 90px 0 70px;
    position: relative;
}

.dashboard-workspace {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 12px 0 36px;
    width: 100%;
    max-width: 100%;
}

.dashboard-workspace__sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.dashboard-mini-panel {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(12, 18, 32, 0.8));
    border: 1px solid rgba(148, 163, 184, 0.13);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 26px rgba(2, 6, 23, 0.18);
}

.dashboard-mini-panel--active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.9));
    border-color: rgba(96, 165, 250, 0.28);
}

.dashboard-mini-panel__label {
    display: block;
    color: #8ea6c8;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dashboard-mini-panel strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 6px;
}

.dashboard-mini-panel small {
    color: #bad3f9;
    font-size: 12px;
}

.dashboard-workspace__visual {
    position: relative;
    background: linear-gradient(180deg, rgba(9, 14, 26, 0.96), rgba(12, 17, 28, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 34px;
    padding: 22px 22px 18px;
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.7), 0 0 80px rgba(59, 130, 246, 0.14);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.dashboard-workspace__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.15), transparent 28%);
    pointer-events: none;
}

.dashboard-workspace__topbar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    margin-bottom: 18px;
}

.dashboard-workspace__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #edf5ff;
    font-weight: 700;
}

.dashboard-workspace__logo {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(15, 23, 42, 0.8);
    padding: 4px;
}

.dashboard-workspace__status {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.28);
    color: #a7f3d0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dashboard-workspace__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
    width: 100%;
}

.workspace-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(11, 17, 30, 0.82));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 22px;
    padding: 18px 18px 16px;
    min-height: 140px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.workspace-card--primary {
    grid-column: 1 / span 2;
    min-height: 210px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(15, 23, 42, 0.81));
    border-color: rgba(96, 165, 250, 0.22);
}

.workspace-card--list {
    grid-column: 3 / 4;
    grid-row: 1 / span 2;
    min-height: 100%;
}

.workspace-card__label {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #9eb9d6;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.workspace-card__value {
    font-size: clamp(26px, 2.5vw, 42px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.workspace-card__sparkline {
    height: 88px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.08), rgba(15, 23, 42, 0));
    display: flex;
    align-items: end;
    padding: 10px 12px 0;
}

.workspace-card__sparkline span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.95), rgba(59, 130, 246, 0.45));
    clip-path: polygon(0 100%, 0 70%, 15% 72%, 30% 58%, 48% 62%, 60% 38%, 72% 52%, 88% 20%, 100% 32%, 100% 100%);
    box-shadow: 0 14px 26px rgba(59, 130, 246, 0.22);
}

.workspace-card__delta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.workspace-card__delta--up {
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.12);
}

.workspace-card__delta--down {
    color: #fecaca;
    background: rgba(248, 113, 113, 0.12);
}

.workspace-card--list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    color: #dfeaf9;
    font-size: 13px;
    line-height: 1.6;
}

.workspace-card--list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot--blue { background: #60a5fa; }
.dot--green { background: #34d399; }
.dot--purple { background: #a78bfa; }

.workspace-card--recommendation {
    grid-column: 1 / span 2;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(15, 23, 42, 0.82));
    border-color: rgba(168, 85, 247, 0.18);
}

.workspace-card--recommendation p {
    color: #dfeaf9;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.dashboard-floating-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    min-width: 105px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 17, 30, 0.8));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 12px 35px rgba(2, 6, 23, 0.34);
    animation: driftCard 6s ease-in-out infinite;
}

.dashboard-floating-card--top {
    top: 12%;
    right: 5%;
}

.dashboard-floating-card--bottom {
    bottom: 10%;
    left: 3%;
}

.dashboard-floating-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #9ad6ff;
    text-transform: uppercase;
}

.dashboard-floating-card strong {
    font-size: 28px;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.dashboard-floating-card small {
    color: #bdc9de;
    font-size: 11px;
}

@keyframes driftCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

    .bento-card--large,
    .bento-card--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .premium-showcase__header--split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dashboard-workspace {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dashboard-workspace__sidebar {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .platform-bento {
        padding: 70px 0 30px;
    }

    .platform-bento__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card,
    .bento-card--large,
    .bento-card--small,
    .bento-card--medium,
    .bento-card--wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 200px;
    }

    .dashboard-workspace__sidebar {
        grid-template-columns: 1fr;
    }

    .dashboard-workspace__visual {
        padding: 18px 16px 16px;
        border-radius: 26px;
    }

    .dashboard-workspace__grid {
        grid-template-columns: 1fr 1fr;
    }

    .workspace-card--primary,
    .workspace-card--recommendation {
        grid-column: 1 / -1;
    }

    .workspace-card--list {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .dashboard-floating-card--top {
        right: 10px;
        top: 10px;
    }

    .dashboard-floating-card--bottom {
        left: 10px;
        bottom: 10px;
    }
}

@media (max-width: 520px) {
    .premium-showcase__header {
        margin-bottom: 28px;
    }

    .bento-card {
        padding: 20px 18px 18px;
        border-radius: 24px;
    }

    .bento-card__icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .dashboard-workspace {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dashboard-workspace__grid {
        grid-template-columns: 1fr;
    }

    .dashboard-workspace__visual {
        width: 100%;
        max-width: 100%;
    }

    .dashboard-floating-card {
        min-width: 92px;
        padding: 12px 14px;
    }

    .dashboard-floating-card strong {
        font-size: 22px;
    }
}

/* ==========================
   PRICING SECTION
========================== */
.sat-home-pricing {
    padding: 1rem 0 3rem;
}

.sat-home-pricing__heading {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.sat-home-pricing__eyebrow {
    margin: 0 0 0.8rem;
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    font-weight: 700;
}

.sat-home-pricing__heading h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.1;
}

.sat-home-pricing__heading p {
    margin: 0;
    color: #cbd5e1;
    font-size: 1.02rem;
    line-height: 1.8;
}

.sat-home-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.sat-home-pricing-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    box-shadow: 0 18px 46px rgba(3, 10, 24, 0.16);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sat-home-pricing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(110,231,255,0.28);
}

.sat-home-pricing-card--featured {
    border-color: rgba(110,231,255,0.4);
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.18);
}

.sat-home-pricing-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.7rem;
    border-radius: 14px;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.16);
    border: 1px solid rgba(255,255,255,0.12);
}

.sat-home-pricing-card__icon svg {
    width: 20px;
    height: 20px;
}

.sat-home-pricing-card__head h3 {
    margin: 0 0 0.55rem;
    font-size: 1.2rem;
}

.sat-home-pricing-card__price {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #f8fbff;
}

.sat-home-pricing-card__price span {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 600;
}

.sat-home-pricing-card__meta {
    margin: 0.35rem 0 0;
    color: #7dd3fc;
    font-weight: 600;
}

.sat-home-pricing-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #f8fbff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

.sat-home-pricing-card__button:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.12);
}

.sat-home-pricing-card__button--primary {
    color: #07111f;
    background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.sat-home-pricing-card__list,
.sat-home-pricing-card__excluded ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sat-home-pricing-card__list li,
.sat-home-pricing-card__excluded li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-left: 0;
    color: #cbd5e1;
    line-height: 1.55;
}

.sat-home-pricing-card__feature-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    color: #7dd3fc;
}

.sat-home-pricing-card__feature-icon svg {
    width: 15px;
    height: 15px;
}

.sat-home-pricing-card__excluded {
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sat-home-pricing-card__excluded h4 {
    margin: 0 0 0.55rem;
    color: #fda4af;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .sat-home-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .sat-home-pricing {
        padding: 45px 0;
    }

    .sat-home-pricing-card {
        padding: 35px 22px 30px;
    }

    .sat-home-pricing-card__price {
        font-size: 1.9rem;
    }

    .sat-home-pricing-card__head h3 {
        font-size: 1.1rem;
    }

    .sat-home-pricing-card__list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sat-home-pricing {
        padding: 35px 0;
    }

    .sat-home-pricing-card {
        padding: 30px 18px 25px;
    }

    .sat-home-pricing-card__price {
        font-size: 1.75rem;
    }
}

/* ==========================
   STATS SECTION
========================== */
.stats-section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 40px;
}

.section-title .badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.section-title h2 {
    margin-top: 18px;
    font-size: 48px;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
}

.section-title h2 span {
    display: block;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
    letter-spacing: 0;
}

.section-title p {
    margin-top: 20px;
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.stat-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
    top: -70px;
    right: -70px;
    transition: all 0.5s ease;
    pointer-events: none;
    opacity: 0.4;
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
    bottom: -50px;
    left: -50px;
    transition: all 0.5s ease;
    pointer-events: none;
    opacity: 0.3;
}

.stat-card:hover {
    transform: translateY(-12px);
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 20px 50px rgba(37, 99, 235, 0.25),
        0 0 60px rgba(37, 99, 235, 0.15),
        0 0 100px rgba(124, 58, 237, 0.1);
}

.stat-card:hover::before {
    transform: scale(1.4) translate(-10px, 10px);
    opacity: 0.8;
}

.stat-card:hover::after {
    transform: scale(1.4) translate(10px, -10px);
    opacity: 0.6;
}

.stat-card .glass-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, #7c3aed, transparent);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.stat-card:hover .glass-line {
    width: 80%;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.stat-icon::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg) scale(1.15);
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow:
        0 15px 40px rgba(37, 99, 235, 0.4),
        0 0 50px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card:hover .stat-icon::after {
    opacity: 0.4;
}

.stat-icon svg {
    color: #60a5fa;
    transition: color 0.4s ease;
}

.stat-card:hover .stat-icon svg {
    color: #93c5fd;
}

.stat-card h3 {
    font-size: 40px;
    color: #3b82f6;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover h3 {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.08);
}

.stat-card p {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover p {
    color: #cbd5e1;
}

.stats-grid .stat-card:nth-child(even)::before {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
    left: -70px;
    right: auto;
}

.stats-grid .stat-card:nth-child(even)::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
    right: -50px;
    left: auto;
}

.stats-grid .stat-card:nth-child(even):hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow:
        0 20px 50px rgba(124, 58, 237, 0.25),
        0 0 60px rgba(124, 58, 237, 0.15),
        0 0 100px rgba(37, 99, 235, 0.1);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 40px;
    }

    .stats-section {
        padding: 45px 0;
    }

    .stat-card {
        padding: 28px 18px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 35px 0;
    }

    .stats-grid {
        gap: 14px;
    }
}

/* ==========================
   HOW IT WORKS
========================== */
.how-it-works {
    padding: 60px 0;
    position: relative;
}

.timeline {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 12.5%;
    width: 75%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #4f46e5, #7c3aed);
    border-radius: 10px;
    z-index: 0;
    opacity: 0.6;
}

.step-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 18px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-number {
    opacity: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 3;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.5);
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}

.step-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 15px;
}

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

    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 45px 0;
    }

    .timeline {
        margin-top: 30px;
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        gap: 14px;
    }

    .step-card {
        padding: 28px 22px;
    }

    .step-card h3 {
        font-size: 21px;
    }

    .step-number {
        font-size: 12px;
        top: 14px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 35px 0;
    }

    .timeline {
        margin-top: 24px;
        gap: 12px;
    }

    .step-card {
        padding: 24px 18px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .step-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 13px;
    }
}

/* ==========================
   FAQ SECTION
========================== */
.faq-section {
    padding: 60px 0;
    position: relative;
}

.faq-container {
    display: grid;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question span {
    font-size: 1.4rem;
    line-height: 1;
    color: #60a5fa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    padding: 0 28px;
}

.faq-answer p {
    margin: 0 0 24px;
    color: #cbd5e1;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 45px 0;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 35px 0;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* ==========================
   CTA SECTION
========================== */
.cta-section {
    padding: 60px 0;
    position: relative;
}

.cta-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
}

.cta-content h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.cta-content p {
    margin: 0 0 1.5rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================
   MOBILE / RESPONSIVE FIXES
   (Only overrides for <= 992px)
========================== */
@media (max-width: 992px) {
    /* Stack hero columns and make dashboard full width below content */
    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero .container {
        display: block;
        width: 100%;
        padding: 0 18px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-dashboard {
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0;
        justify-self: center;
    }

    .dashboard-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Buttons full width with 16px spacing */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        display: inline-flex;
        justify-content: center;
    }

    /* Feature chips wrap correctly */
    .hero-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
        margin-top: 12px;
    }

    /* Prevent dashboard or cards from causing horizontal scroll */
    .hero, .features-section, .stats-section, .sat-home-pricing {
        overflow-x: hidden;
    }

    /* Reduce large decorative offsets that may overflow small screens */
    .dashboard-card::after,
    .feature-card::before,
    .stat-card::before,
    .stat-card::after {
        right: -30px;
        left: auto;
    }

    /* Slightly increase spacing for stacked cards and ensure equal padding */
    .features-grid {
        gap: 18px;
    }

    .feature-card {
        min-height: auto;
        padding: 22px;
    }

    .feature-icon {
        margin: 0 0 14px;
    }

    /* Ensure mobile navbar toggle and overlay are above homepage layers */
    .sat-navbar__mobile-toggle {
        position: relative;
        z-index: 13002;
    }

    .sat-navbar__backdrop,
    .sat-navbar__mobile-panel {
        z-index: 13001 !important;
    }

    /* Reduce hero title size slightly for narrow screens */
    .hero-content h1 {
        font-size: clamp(28px, 6vw, 42px);
    }
}

@media (max-width: 420px) {
    .hero .container {
        padding: 0 12px;
    }

    .features-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-dashboard {
        margin-top: 16px;
        padding: 0 6px;
    }
}

@media (max-width: 768px) {
    .cta-content {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: 28px 18px;
    }
}
