@import url('variables.css');

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    padding: var(--space-5) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(7, 27, 56, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: var(--font-extrabold);
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.navbar-logo span {
    color: var(--accent);
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.navbar-link {
    color: var(--n300);
    font-weight: var(--font-medium);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.navbar-link:hover, .navbar-link.active {
    color: #ffffff;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-fast);
}

.navbar-link:hover::after, .navbar-link.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.lang-switch {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: var(--font-medium);
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.lang-switch:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    background-color: var(--primary);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-fixed);
    padding: var(--space-12) var(--space-8);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    list-style: none;
}

.mobile-menu-link {
    color: var(--n300);
    font-size: 1.15rem;
    font-weight: var(--font-semibold);
}

.mobile-menu-link:hover, .mobile-menu-link.active {
    color: #ffffff;
}

/* Hero Section - Dark Cyber Theme */
.hero.cyber-theme {
    min-height: 100vh;
    background: #030712; /* Deep space dark background */
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(44, 184, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 184, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    z-index: 0;
    pointer-events: none;
}

.cyber-glow-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(44, 184, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

.cyber-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: var(--font-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pulse-dot.active-pulse {
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(44, 184, 255, 0.7); }
    70% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 10px rgba(44, 184, 255, 0); }
    100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(44, 184, 255, 0); }
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--font-extrabold);
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: var(--space-6);
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, var(--accent) 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--n300);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-6);
    width: 100%;
}

.hero-stat-value {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: #ffffff;
    background: linear-gradient(to right, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--n400);
    margin-top: 2px;
}

/* 3D Visual & Parallax CSS Dashboard */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1200px;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.parallax-layer {
    position: absolute;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

/* Main Dashboard Layer */
.main-dashboard {
    width: 85%;
    height: 280px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    top: 15%;
    left: 5%;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: rotateX(-10deg) rotateY(15deg);
}

.mockup-header {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--n400);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mockup-status {
    font-size: 0.75rem;
    color: var(--n300);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.pulse-dot.green {
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: greenPulse 1.5s infinite;
}

@keyframes greenPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

.mockup-body {
    padding: 18px;
}

.dashboard-graph {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.graph-pulse-point {
    animation: graphGlow 1.5s infinite alternate;
}

@keyframes graphGlow {
    0% { r: 3; fill-opacity: 0.7; }
    100% { r: 6; fill-opacity: 1; }
}

.mockup-metric-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--n400);
}

.metric-value {
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    color: #ffffff;
}

.metric-value.color-green {
    color: #10b981;
}

.metric-trend.color-green {
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 2px;
}

/* Floating Widgets Base */
.floating-widget {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transform: rotateX(-10deg) rotateY(15deg);
}

/* Live Orders Widget */
.widget-orders {
    width: 60%;
    top: 40%;
    right: -2%;
    z-index: 20;
}

.widget-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.widget-title {
    font-size: 0.8rem;
    font-weight: var(--font-bold);
    color: #ffffff;
}

.order-item {
    font-size: 0.75rem;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.order-name {
    color: var(--n200);
}

.order-price {
    font-weight: var(--font-bold);
    color: #ffffff;
}

.order-time {
    color: var(--n400);
}

/* Efficiency Widget */
.widget-efficiency {
    width: 48%;
    bottom: -5%;
    left: 2%;
    z-index: 25;
}

.efficiency-dial {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dial-value {
    position: absolute;
    font-size: 0.85rem;
    font-weight: var(--font-bold);
    color: #ffffff;
}

/* Digital Screens Widget */
.widget-screens {
    width: 48%;
    top: 5%;
    right: 5%;
    z-index: 15;
}

.monitor-icon {
    font-size: 1.5rem;
    background: rgba(44, 184, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Bento Grid Features Styles */
.bento-section {
    background-color: var(--n50);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.bento-card {
    background: #ffffff;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--n200);
    padding: var(--space-8);
    box-shadow: 0 10px 30px rgba(7, 27, 56, 0.02);
    transition: all var(--transition-base);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(7, 27, 56, 0.06);
    border-color: rgba(44, 184, 255, 0.3);
}

.bento-2col {
    grid-column: span 2;
}

.bento-1col {
    grid-column: span 1;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.tag-primary {
    background-color: rgba(7, 27, 56, 0.05);
    color: var(--primary);
}

.tag-accent {
    background-color: rgba(44, 184, 255, 0.1);
    color: var(--accent-dark);
}

.bento-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.bento-desc {
    font-size: 0.95rem;
    color: var(--n500);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

/* Interactive elements containers */
.interactive-container {
    background: var(--n50);
    border: 1px solid var(--n200);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
}

.bento-card:hover .interactive-container {
    border-color: rgba(44, 184, 255, 0.2);
}

/* Recipe tool styles */
.recipe-item-card {
    background: #ffffff;
    border: 1px solid var(--n100);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-5);
}

.recipe-img {
    font-size: 2.2rem;
    background: var(--n50);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-name {
    font-size: 1.05rem;
    font-weight: var(--font-bold);
    color: var(--primary);
    margin-bottom: 4px;
}

.detail-label {
    font-size: 0.7rem;
    color: var(--n400);
    display: block;
}

.detail-val {
    font-size: 0.95rem;
    font-weight: var(--font-bold);
    color: var(--primary);
}

.detail-val.text-red {
    color: var(--error);
}

.calculator-sliders {
    margin-bottom: var(--space-5);
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.slider-label {
    font-size: 0.8rem;
    color: var(--n500);
}

.slider-value {
    font-size: 0.8rem;
    font-weight: var(--font-bold);
    color: var(--primary);
}

.bento-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: var(--n200);
    outline: none;
    margin: 8px 0;
}

.bento-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(44, 184, 255, 0.4);
    transition: transform 0.2s;
}

.bento-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.bento-range-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(44, 184, 255, 0.4);
    transition: transform 0.2s;
    border: none;
}

.margin-result-box {
    background: rgba(44, 184, 255, 0.05);
    border: 1px solid rgba(44, 184, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.result-label {
    font-size: 0.75rem;
    color: var(--n500);
    display: block;
}

.result-val {
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    color: var(--primary);
}

.result-val.color-green {
    color: var(--success);
}

/* Shift scheduler styles */
.shifts-list {
    min-height: 160px;
    justify-content: center;
}

.shift-row {
    background: #ffffff;
    border: 1px solid var(--n100);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.shift-row.swap-pending {
    border-color: rgba(44, 184, 255, 0.25);
    background: rgba(44, 184, 255, 0.01);
}

.shift-avatar {
    font-size: 1.4rem;
    background: var(--n50);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shift-name {
    font-size: 0.85rem;
    font-weight: var(--font-bold);
    color: var(--primary);
}

.shift-time {
    font-size: 0.75rem;
    color: var(--n400);
}

/* Signage template styles */
.signage-tabs {
    margin-bottom: var(--space-4);
}

.signage-tab {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: #ffffff;
    border: 1px solid var(--n200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.signage-tab:hover {
    border-color: var(--accent);
}

.signage-tab.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.signage-screen-preview {
    background: #0f172a;
    border: 3px solid #334155;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    color: #ffffff;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-md);
}

.preview-item {
    font-size: 0.8rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.preview-item:last-child {
    border: none;
    padding: 0;
}

.preview-item-name {
    color: var(--n300);
}

.preview-item-price {
    font-weight: var(--font-bold);
    color: var(--accent);
}

/* Delivery tool styles */
.simulated-position {
    background: #ffffff;
    border: 1px solid var(--n100);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pos-label {
    font-size: 0.75rem;
    color: var(--n400);
    text-transform: uppercase;
}

.pos-ranking {
    font-size: 3rem;
    font-weight: var(--font-extrabold);
    color: var(--primary);
    line-height: 1;
    margin: 8px 0;
}

.pos-number-prefix {
    color: var(--accent);
    font-size: 2rem;
    margin-right: 2px;
}

.ranking-status-badge {
    align-self: center;
}

/* Services Section Upgrades */
.services-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.cyber-glow-3 {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 184, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-10);
    position: relative;
    z-index: 1;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--n100);
    background: #ffffff;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.service-item-icon-small {
    font-size: 1.5rem;
    background: var(--n50);
    min-width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--primary);
}

.service-item-icon-small svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    display: block;
}

.service-item:hover {
    border-color: rgba(44, 184, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 27, 56, 0.05);
}

.service-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(7, 27, 56, 0.15);
}

.service-item.active .service-item-icon-small {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.service-item.active .service-item-title {
    color: #ffffff;
}

.service-item.active .service-item-desc {
    color: var(--n300);
}

.service-item-title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--primary);
    margin-bottom: var(--space-1);
    transition: color var(--transition-base);
}

.service-item-desc {
    font-size: 0.9rem;
    color: var(--n500);
    line-height: var(--leading-normal);
    transition: color var(--transition-base);
}

/* Services Visual Panel */
.services-visual-panel {
    background: #0f172a; /* Tech dark slate background */
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    padding: var(--space-8);
    color: #ffffff;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.visual-panel-glow {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(44, 184, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.panel-icon-badge {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    display: block;
}

@keyframes blink {
    0% { opacity: 0.15; }
    100% { opacity: 1; }
}

.panel-main-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: #ffffff;
}

.panel-body {
    position: relative;
    z-index: 1;
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
}

.panel-desc {
    font-size: 1.05rem;
    color: var(--n300);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.panel-long-content {
    font-size: 0.95rem;
    color: var(--n400);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.panel-features-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}

.features-header-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: var(--space-3);
}

.panel-features-list {
    list-style: none;
}

.panel-features-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9rem;
    color: var(--n200);
}

.panel-features-list li::before {
    content: '✦';
    color: var(--accent);
    font-weight: bold;
}

/* Products Section */
.product-card {
    border-top: 3px solid var(--accent);
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    background: var(--gradient-accent);
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: var(--space-6);
}

.product-name {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
}

.product-features {
    list-style: none;
    margin: var(--space-6) 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    color: var(--n600);
    font-size: 0.95rem;
}

.product-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: var(--font-bold);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: #ffffff;
    text-align: center;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: var(--space-8);
}

.stat-value {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--accent);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--n300);
    margin-top: var(--space-2);
}

.stat-divider {
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    margin: var(--space-4) auto 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: var(--space-12);
}

.process-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--n200);
    z-index: 0;
}

.process-step {
    position: relative;
    padding-bottom: var(--space-12);
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-dot {
    position: absolute;
    left: -43px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: #ffffff;
    border: 3px solid var(--accent);
    color: var(--accent-dark);
    z-index: 1;
    font-weight: var(--font-bold);
    font-size: 0.85rem;
}

.process-step.active .process-dot {
    background-color: var(--accent);
    color: var(--primary);
}

.process-content {
    background-color: #ffffff;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid var(--n200);
    box-shadow: var(--shadow-sm);
}

/* Testimonials */
.testimonials-slider {
    position: relative;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--n100);
    position: relative;
}

.testimonial-quote {
    font-size: var(--text-lg);
    color: var(--n700);
    line-height: var(--leading-relaxed);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.testimonial-name {
    font-weight: var(--font-bold);
    color: var(--primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--n500);
}

.quote-mark {
    position: absolute;
    top: var(--space-6);
    right: var(--space-8);
    font-size: 5rem;
    color: rgba(44, 184, 255, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--n200);
    padding: var(--space-6) 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: var(--font-semibold);
    color: var(--primary);
    font-size: var(--text-lg);
    gap: var(--space-4);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-dark);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    color: var(--n600);
    line-height: var(--leading-relaxed);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: var(--space-4);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-16) var(--space-12);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 184, 255, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: var(--n300);
    font-size: 1.15rem;
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

/* Blog Cards */
.blog-card-image img {
    height: 200px;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.blog-card-category {
    align-self: flex-start;
}

.blog-card-title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--n500);
    line-height: var(--leading-relaxed);
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--n400);
    margin-top: var(--space-4);
}

/* Contact Section */
.contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
}

.contact-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background-color: rgba(44, 184, 255, 0.1);
    color: var(--accent-dark);
    font-size: 1.25rem;
}

.contact-item-title {
    font-weight: var(--font-bold);
    color: var(--primary);
    margin-bottom: var(--space-1);
}

.contact-item-value {
    color: var(--n600);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--n900);
    color: #ffffff;
    padding-top: var(--space-16);
}

.footer-top {
    height: 3px;
    background: var(--gradient-accent);
    margin-bottom: var(--space-12);
}

.footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-brand .description {
    color: var(--n400);
    font-size: 0.9rem;
    line-height: var(--leading-relaxed);
}

.footer-heading {
    font-size: 1rem;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    list-style: none;
}

.footer-link {
    color: var(--n400);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8) 0;
    margin-top: var(--space-12);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--n500);
}
