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

:root {
    --primary: #6C5CE7;
    --primary-light: #a855f7;
    --primary-dark: #5a4bd1;
    --bg-dark: #0a0a1a;
    --bg-card: #111128;
    --bg-card-hover: #16163a;
    --bg-surface: #0d0d24;
    --text-primary: #ffffff;
    --text-secondary: #a0a3bd;
    --text-muted: #6b6e8a;
    --border: rgba(108, 92, 231, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #a855f7 100%);
    --gradient-bg: linear-gradient(180deg, #0a0a1a 0%, #0d0d24 100%);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(108, 92, 231, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn--block {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn--outline:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
}
.btn--ghost:hover {
    color: var(--text-primary);
}

.btn--white {
    background: white;
    color: var(--bg-dark);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn--ghost-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost-white:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav--scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: var(--transition);
}

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

.nav__link:hover::after {
    width: 100%;
}

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

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__burger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

.nav__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger--active span:nth-child(2) {
    opacity: 0;
}
.nav__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6C5CE7, transparent);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a855f7, transparent);
    bottom: -50px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite;
    opacity: 0.2;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero__title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

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

/* Hero floating devices */
.hero__devices {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__device {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(17, 17, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    animation: deviceFloat 6s ease-in-out infinite;
}

.hero__device--1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
}

.hero__device--2 {
    top: 35%;
    right: 8%;
    animation-delay: 2s;
}

.hero__device--3 {
    bottom: 25%;
    left: 12%;
    animation-delay: 4s;
}

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

.hero__device-icon {
    font-size: 24px;
}

.hero__device-name {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.hero__device-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

/* ===== TRUSTED ===== */
.trusted {
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trusted__label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.trusted__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted__logo {
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.trusted__logo:hover {
    opacity: 1;
    color: var(--text-secondary);
}

.trusted__logo svg {
    height: 24px;
    width: auto;
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(108, 92, 231, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.feature-card--accent {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(168, 85, 247, 0.05));
    border-color: rgba(108, 92, 231, 0.2);
}

.feature-card__icon {
    margin-bottom: 20px;
}

.feature-card__icon svg {
    width: 48px;
    height: 48px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card__tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-surface);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.step:hover {
    border-color: rgba(108, 92, 231, 0.2);
    box-shadow: var(--shadow-glow);
}

.step__number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.6;
}

.step__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__icon-wrap svg {
    width: 64px;
    height: 64px;
}

/* ===== DASHBOARD ===== */
.dashboard {
    padding: 120px 0;
}

.dashboard__preview {
    perspective: 1000px;
}

.dashboard__window {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    transform: rotateX(2deg);
    transition: var(--transition);
}

.dashboard__window:hover {
    transform: rotateX(0deg);
}

.dashboard__toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-light);
}

.dashboard__dots {
    display: flex;
    gap: 6px;
}

.dashboard__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard__dots span:nth-child(1) { background: #ff5f57; }
.dashboard__dots span:nth-child(2) { background: #febc2e; }
.dashboard__dots span:nth-child(3) { background: #28c840; }

.dashboard__url {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 16px;
    border-radius: 6px;
}

.dashboard__content {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 400px;
}

.dashboard__sidebar {
    padding: 20px 16px;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard__nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
}

.dashboard__nav-item--active {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-light);
}

.dashboard__main {
    padding: 28px;
}

.dashboard__greeting h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dashboard__greeting p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.dashboard__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dashboard__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.dashboard__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.dashboard__card-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
}

.dashboard__card-status--ok {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.dashboard__card-status--warn {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.dashboard__card-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.dashboard__card-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.dashboard__card-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

.dashboard__card-bar-fill--warn {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.dashboard__card-bar-fill--green {
    background: linear-gradient(90deg, #22c55e, #10b981);
}

/* ===== DEVICES ===== */
.devices {
    padding: 120px 0;
    background: var(--bg-surface);
}

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

.device-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.device-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(108, 92, 231, 0.2);
    transform: translateY(-4px);
}

.device-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.device-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.device-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(108, 92, 231, 0.2);
    box-shadow: var(--shadow-glow);
}

.testimonial-card__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-card__role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
    background: var(--bg-surface);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(108, 92, 231, 0.2);
    transform: translateY(-4px);
}

.pricing-card--popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.08) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card--popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card__header {
    margin-bottom: 24px;
}

.pricing-card__name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-card__desc {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-card__price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-card__amount {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.pricing-card__currency {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-card__features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 28px;
    position: relative;
}

.pricing-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%236C5CE7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
}

.cta__inner {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.cta__bg-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.cta__bg-orb--1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    top: -100px;
    right: -50px;
}

.cta__bg-orb--2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -80px;
    left: -30px;
}

.cta__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta__desc {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 280px;
}

.footer__col-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer__link {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__social:hover {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .devices__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .dashboard__sidebar {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        overflow-x: auto;
        padding: 12px 16px;
    }

    .dashboard__nav-item {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav__links--open {
        display: flex;
    }

    .nav__links--open .nav__link {
        font-size: 24px;
    }

    .nav__burger {
        display: flex;
        z-index: 1001;
    }

    .nav__actions .btn {
        display: none;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero__devices {
        display: none;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .features__grid,
    .testimonials__grid,
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .pricing-card--popular {
        transform: none;
    }

    .pricing-card--popular:hover {
        transform: translateY(-4px);
    }

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

    .step {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .step__visual {
        order: -1;
    }

    .step__number {
        font-size: 36px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta__inner {
        padding: 60px 24px;
    }
}

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

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