:root {
    --bg: #050810;
    --bg2: #0a0f1e;
    --surface: #0f1629;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #ff5c35;
    --accent2: #ff8c5a;
    --gold: #f5c842;
    --teal: #00d4aa;
    --blue: #4d8dff;
    --text: #f0ede8;
    --muted: rgba(240, 237, 232, 0.5);
    --faint: rgba(240, 237, 232, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* NOISE TEXTURE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    background: rgba(5, 8, 16, 0.7);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
    background: var(--accent2) !important;
    transform: translateY(-1px);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

/* 3D GRID FLOOR */
.grid-3d {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    perspective: 600px;
    pointer-events: none;
    overflow: hidden;
}

.grid-plane {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 92, 53, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 92, 53, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(70deg) translateZ(0);
    transform-origin: bottom center;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* ORBS */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 92, 53, 0.18), transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 141, 255, 0.15), transparent 70%);
    top: 200px;
    right: -80px;
    animation-delay: -3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.12), transparent 70%);
    bottom: 100px;
    left: 200px;
    animation-delay: -5s;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.97);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 92, 53, 0.12);
    border: 1px solid rgba(255, 92, 53, 0.3);
    color: var(--accent2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    animation: fade-up 0.6s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero h1 {
    font-family: Arial, sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 28px;
    animation: fade-up 0.6s ease 0.1s both;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.4;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 44px;
    animation: fade-up 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    animation: fade-up 0.6s ease 0.3s both;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 92, 53, 0.35);
}

.btn-secondary {
    color: var(--muted);
    padding: 16px 24px;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    animation: fade-up 0.6s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    display: block;
}

.stat-num .accent {
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 4px;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DASHBOARD PREVIEW */
.dashboard-preview {
    padding: 0 40px 120px;
    display: flex;
    justify-content: center;
    position: relative;
}

.dashboard-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    perspective: 1200px;
    animation: fade-up 0.8s ease 0.5s both;
}

.dashboard-3d {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transform: rotateX(8deg) rotateY(-2deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard-3d:hover {
    transform: rotateX(3deg) rotateY(-1deg);
}

.dashboard-bar {
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

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

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.bar-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--faint);
    letter-spacing: 0.5px;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    min-height: 520px;
}

/* SIDEBAR */
.dash-sidebar {
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-logo {
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 16px;
    padding: 0 8px 20px;
    color: var(--text);
}

.side-logo span {
    color: var(--accent);
}

.side-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--muted);
    cursor: default;
    transition: all 0.15s;
}

.side-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.side-item.active {
    background: rgba(255, 92, 53, 0.12);
    color: var(--accent2);
    font-weight: 500;
}

.side-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.side-badge {
    margin-left: auto;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 100px;
}

/* MAIN DASH */
.dash-main {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.dash-title {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.dash-date {
    font-size: 12px;
    color: var(--muted);
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.dash-card-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dash-card-value {
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.dash-card-value.green {
    color: var(--teal);
}

.dash-card-value.orange {
    color: var(--accent2);
}

.dash-card-value.blue {
    color: var(--blue);
}

.dash-card-delta {
    font-size: 11px;
    color: var(--teal);
    margin-top: 4px;
}

/* CHART */
.dash-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.chart-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.chart-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.chart-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: opacity 0.2s;
    position: relative;
}

.chart-bar-x {
    font-size: 10px;
    color: var(--faint);
}

/* ORDERS PANEL */
.dash-right {
    border-left: 1px solid var(--border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.order-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
}

.order-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.order-num {
    font-size: 13px;
    font-weight: 500;
}

.order-status {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 500;
}

.status-prep {
    background: rgba(245, 200, 66, 0.15);
    color: var(--gold);
}

.status-ready {
    background: rgba(0, 212, 170, 0.15);
    color: var(--teal);
}

.status-delivering {
    background: rgba(77, 141, 255, 0.15);
    color: var(--blue);
}

.order-items {
    font-size: 11px;
    color: var(--muted);
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.order-table {
    font-size: 11px;
    color: var(--faint);
}

.order-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* GLOW HIGHLIGHT ON DASHBOARD */
.dashboard-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 92, 53, 0.2), rgba(77, 141, 255, 0.1), rgba(0, 212, 170, 0.1));
    z-index: -1;
    filter: blur(20px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* SECTIONS */
section {
    padding: 100px 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 20px;
}

.section-badge::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: Arial, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}

/* FEATURES */
.features {
    background: var(--bg2);
}

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

.feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    cursor: default;
}

.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 92, 53, 0.3);
}

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

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-orange {
    background: rgba(255, 92, 53, 0.12);
}

.icon-teal {
    background: rgba(0, 212, 170, 0.12);
}

.icon-blue {
    background: rgba(77, 141, 255, 0.12);
}

.icon-gold {
    background: rgba(245, 200, 66, 0.12);
}

.icon-pink {
    background: rgba(255, 100, 180, 0.12);
}

.icon-purple {
    background: rgba(160, 100, 255, 0.12);
}

.feat-title {
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.feat-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.feat-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 3D FLOATING CARDS - POSSIBILITIES */
.possibilities {
    position: relative;
    overflow: hidden;
}

.possibilities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.poss-visual {
    position: relative;
    height: 500px;
    perspective: 800px;
}

.float-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    animation: float-card 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.float-card:nth-child(1) {
    top: 20px;
    left: 0;
    width: 260px;
    animation-delay: 0s;
    transform: rotateY(8deg) rotateX(-5deg);
}

.float-card:nth-child(2) {
    top: 120px;
    right: 20px;
    width: 230px;
    animation-delay: -2s;
    transform: rotateY(-8deg) rotateX(3deg);
}

.float-card:nth-child(3) {
    bottom: 80px;
    left: 40px;
    width: 250px;
    animation-delay: -4s;
    transform: rotateY(5deg) rotateX(5deg);
}

.float-card:nth-child(4) {
    bottom: 20px;
    right: 0;
    width: 200px;
    animation-delay: -1s;
    transform: rotateY(-6deg) rotateX(-4deg);
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0) rotateY(8deg) rotateX(-5deg);
    }

    50% {
        transform: translateY(-12px) rotateY(8deg) rotateX(-5deg);
    }
}

.float-card:nth-child(2) {
    animation-name: float-card-2;
}

@keyframes float-card-2 {

    0%,
    100% {
        transform: translateY(0) rotateY(-8deg) rotateX(3deg);
    }

    50% {
        transform: translateY(-10px) rotateY(-8deg) rotateX(3deg);
    }
}

.float-card:nth-child(3) {
    animation-name: float-card-3;
}

@keyframes float-card-3 {

    0%,
    100% {
        transform: translateY(0) rotateY(5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-14px) rotateY(5deg) rotateX(5deg);
    }
}

.float-card:nth-child(4) {
    animation-name: float-card-4;
}

@keyframes float-card-4 {

    0%,
    100% {
        transform: translateY(0) rotateY(-6deg) rotateX(-4deg);
    }

    50% {
        transform: translateY(-8px) rotateY(-6deg) rotateX(-4deg);
    }
}

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

.fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.fc-title {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.fc-value {
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.fc-label {
    font-size: 11px;
    color: var(--muted);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-top: 12px;
    height: 32px;
}

.mini-bar {
    border-radius: 2px 2px 0 0;
    flex: 1;
}

.poss-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.poss-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.poss-num {
    font-family: Arial, sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--faint);
    line-height: 1;
    min-width: 50px;
}

.poss-item h3 {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.poss-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* PRICING */
.pricing {
    background: var(--bg2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px auto 0;
    max-width: 1000px;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    transition: transform 0.3s;
}

.price-card.featured {
    border-color: rgba(255, 92, 53, 0.4);
    background: linear-gradient(145deg, rgba(255, 92, 53, 0.06), var(--surface));
}

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

.price-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
}

.price-plan {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.price-amount {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

.price-period {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}

.price-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.price-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: Arial, sans-serif;
}

.price-btn:hover {
    border-color: rgba(255, 92, 53, 0.4);
    color: var(--accent2);
}

.price-btn.featured-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.price-btn.featured-btn:hover {
    background: var(--accent2);
    box-shadow: 0 8px 30px rgba(255, 92, 53, 0.3);
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
}

.stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.testi-name {
    font-size: 14px;
    font-weight: 500;
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
}

/* CTA */
.cta-section {
    text-align: center;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 53, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: Arial, sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 44px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--accent);
}

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

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 13px;
    color: var(--faint);
}

/* SCROLL ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* INTEGRATION STRIP */
.integrations {
    padding: 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.int-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

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

.int-logo {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--faint);
    letter-spacing: -0.5px;
    transition: color 0.2s;
}

.int-logo:hover {
    color: var(--muted);
}

/* 3D ROTATING CUBE - decorative */
.cube-container {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    perspective: 400px;
    pointer-events: none;
}

.cube {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 12s linear infinite;
    margin: 20px auto;
}

.cube-face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 92, 53, 0.06);
    border: 1px solid rgba(255, 92, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cube-face.front {
    transform: translateZ(40px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(40px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(40px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(40px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(40px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(40px);
}

@keyframes rotate-cube {
    from {
        transform: rotateX(20deg) rotateY(0deg);
    }

    to {
        transform: rotateX(20deg) rotateY(360deg);
    }
}

@media (max-width: 1200px) {
    .dashboard-body {
        grid-template-columns: 190px 1fr;
    }

    .dash-right {
        display: none;
    }

    .dash-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    nav {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero {
        padding: 170px 24px 72px;
    }

    .hero-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 36px;
        margin-top: 52px;
    }

    .grid-3d {
        width: min(1000px, 130vw);
    }

    .dashboard-preview {
        padding: 0 24px 96px;
    }

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

    .dash-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 14px;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        overflow-x: auto;
    }

    .side-logo {
        padding: 0 8px 0 4px;
        white-space: nowrap;
    }

    .side-item {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    section {
        padding: 80px 24px;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .possibilities-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .poss-visual {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .float-card,
    .float-card:nth-child(1),
    .float-card:nth-child(2),
    .float-card:nth-child(3),
    .float-card:nth-child(4) {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        animation: none;
        transform: none;
    }

    .cta-actions {
        flex-wrap: wrap;
    }

    footer {
        padding: 40px 24px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .dashboard-preview {
        padding: 0 16px 72px;
    }

    .dashboard-3d,
    .dashboard-3d:hover {
        transform: none;
    }

    .dash-main {
        padding: 16px;
    }

    .dash-cards,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section p {
        font-size: 16px;
    }

    .integrations {
        padding: 48px 20px;
    }

    .int-logos {
        gap: 20px;
    }

    .cube-container {
        display: none;
    }

    .footer-links {
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 14px 14px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero {
        padding: 168px 14px 60px;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 30px;
    }

    section {
        padding: 68px 14px;
    }

    .feat-card,
    .price-card,
    .testi-card {
        padding: 22px;
    }

    .price-amount {
        font-size: 40px;
    }
}