/* ==========================================================================
   FB FARMING-X - Premium Responsive Dark Mode Style System (Showcase Edition)
   ========================================================================== */

/* Design Tokens & Custom Variables */
:root {
    --bg-base: #0b0f19;
    --bg-surface: #151a2a;
    --bg-surface-glass: rgba(21, 26, 42, 0.75);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-glow: rgba(0, 255, 204, 0.2);

    --primary: #00ffcc;
    --primary-glow: rgba(0, 255, 204, 0.4);
    --secondary: #00e6b8;
    --accent: #00ffcc;
    --accent-glow: rgba(0, 255, 204, 0.4);
    --magenta: #0099cc;

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --success: #00FF87;
    --warning: #FFB020;
    --danger: #FF4646;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --shadow-premium: 0 15px 35px -15px rgba(0, 0, 0, 0.8);
    --shadow-cyan: 0 0 25px rgba(0, 255, 204, 0.2);
    --shadow-purple: 0 0 30px rgba(0, 153, 204, 0.2);
}

/* Base Elements & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Dynamic Radial Glow Backgrounds */
.glow-bg {
    position: absolute;
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    top: 5%;
    left: -10%;
    background: var(--primary);
    animation: pulseGlow 15s infinite alternate;
}

.glow-2 {
    top: 35%;
    right: -10%;
    background: var(--magenta);
    animation: pulseGlow 20s infinite alternate-reverse;
}

.glow-3 {
    bottom: 10%;
    left: 20%;
    background: var(--secondary);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1) translate(30px, -20px);
        opacity: 0.15;
    }

    100% {
        transform: scale(0.9) translate(-10px, 30px);
        opacity: 0.1;
    }
}

/* Global Helpers & Grid Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

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

.text-purple {
    color: var(--magenta);
}

.text-green {
    color: var(--success);
}

.text-yellow {
    color: var(--warning);
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 16px;
}

.border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pt-2 {
    padding-top: 8px;
}

/* Gradient Typography */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Custom UI Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 30px;
    background: rgba(0, 255, 204, 0.08);
    border: 1px solid rgba(0, 255, 204, 0.2);
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge.bg-purple-glow {
    background: rgba(0, 255, 204, 0.08);
    border: 1px solid rgba(0, 255, 204, 0.2);
    color: #c084fc;
}

/* Premium Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-elastic);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #000000;
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-danger {
    background: rgba(255, 70, 70, 0.1);
    border: 1px solid rgba(255, 70, 70, 0.3);
    color: #ff8888;
}

.btn-danger:hover {
    background: var(--danger);
    color: #ffffff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
    opacity: 0;
}

.glow-btn:hover::after {
    left: 120%;
    opacity: 1;
}

/* Floating Glassmorphic Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    z-index: 101;
}

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

.logo-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 255, 204, 0.3));
}

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

.nav-links {
    display: flex;
    gap: 32px;
    transition: var(--transition-smooth);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 101;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition-smooth);
}

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

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

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

/* ==========================================================================
   Hero Section Styling
   ========================================================================== */
.hero-section {
    padding: 160px 0 80px 0;
    position: relative;
    z-index: 1;
}

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

.hero-content {
    width: 100%;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-base);
    margin-left: -12px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

/* Premium Dashboard Simulation Box */
.hero-visual {
    width: 100%;
}

.dashboard-mockup {
    background: #151a2a;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-premium), 0 0 50px rgba(0, 255, 204, 0.05);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.4), transparent);
}

.mockup-header {
    background: #1e293b;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

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

.dot-red {
    background: var(--danger);
}

.dot-yellow {
    background: var(--warning);
}

.dot-green {
    background: var(--success);
}

.mockup-title {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mockup-status-indicator {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
}

.status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: blink 1.5s infinite;
}

.mockup-body {
    padding: 24px;
}

/* Mockup Stats Panel */
.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.m-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.m-stat-val {
    font-family: monospace;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 700;
}

/* Interactive Logger Screen */
.logger-box {
    background: #0b0f19;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px;
    height: 180px;
    overflow-y: hidden;
    font-family: monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.logger-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.log-line {
    color: var(--text-secondary);
}

.log-line.system {
    color: var(--text-muted);
}

.log-line.success {
    color: var(--success);
}

.log-line.info {
    color: var(--secondary);
}

.log-line.warning {
    color: var(--warning);
}

/* Custom Progress Bar inside Mockup */
.mockup-progress-sec {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--magenta));
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ==========================================================================
   Partners & Integration Trust bar
   ========================================================================== */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
}

.trust-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.partner-logo {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.05rem;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* ==========================================================================
   Features Section Styling
   ========================================================================== */
.features-section {
    padding: 80px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-glow);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.feature-icon.bg-cyan {
    background: rgba(0, 255, 204, 0.15);
    color: var(--primary);
}

.feature-icon.bg-blue {
    background: rgba(79, 172, 254, 0.15);
    color: var(--secondary);
}

.feature-icon.bg-purple {
    background: rgba(0, 255, 204, 0.15);
    color: #a78bfa;
}

.feature-icon.bg-pink {
    background: rgba(0, 153, 204, 0.15);
    color: var(--magenta);
}

.feature-icon.bg-yellow {
    background: rgba(255, 176, 32, 0.15);
    color: var(--warning);
}

.feature-icon.bg-green {
    background: rgba(0, 255, 135, 0.15);
    color: var(--success);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-bullets {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-bullets li::before {
    content: "•";
    color: var(--primary);
    margin-right: 8px;
    font-weight: bold;
}

/* ==========================================================================
   Simulator playground Section
   ========================================================================== */
.simulator-section {
    padding: 80px 0;
    position: relative;
}

.simulator-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    backdrop-filter: blur(20px);
}

.simulator-info .section-title {
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.sim-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.sim-ctrl-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ctrl-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ctrl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sim-features-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.mini-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
}

.feat-dot.bg-cyan {
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}

.feat-dot.bg-green {
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
}

/* High Fidelity Device Wrapping Wrapper */
.device-screen-wrapper {
    background: #020408;
    border: 6px solid #1e293b;
    border-radius: 20px;
    box-shadow: var(--shadow-premium), 0 0 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    width: 100%;
}

.screen-header {
    background: #0c101d;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.screen-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Device Farm layout inside simulator */
.active-farm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.farm-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.farm-item.active {
    border-color: rgba(0, 255, 204, 0.2);
}

.farm-item.warning {
    border-color: rgba(255, 176, 32, 0.2);
}

.farm-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.farm-task {
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-text {
    font-family: monospace;
    font-size: 0.72rem;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Small rotating indicator */
.task-loader {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(0, 255, 204, 0.1);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    flex-shrink: 0;
}

.task-loader.warning {
    border-color: rgba(255, 176, 32, 0.1);
    border-top-color: var(--warning);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Live simulated terminal cli console */
.screen-terminal {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 16px;
    height: 160px;
}

.term-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
    margin-bottom: 8px;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.blink-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--danger);
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.term-body {
    height: 110px;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: monospace;
    font-size: 0.75rem;
}

.term-row {
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.term-row.success {
    color: var(--success);
}

.term-row.info {
    color: var(--secondary);
}

/* ==========================================================================
   Statistics Counter Section
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.stat-box {
    text-align: center;
    padding: 16px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   Selling/Pricing Tool & Custom Estimator Layout
   ========================================================================== */
.pricing-section {
    padding: 80px 0;
}

/* Dynamic slider card styling */
.calculator-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 56px auto;
    backdrop-filter: blur(20px);
}

.calc-header {
    margin-bottom: 32px;
}

.calc-header h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 8px;
}

.calc-header p {
    color: var(--text-secondary);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Range input customized styling */
.control-group {
    margin-bottom: 24px;
}

.control-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.control-val {
    color: var(--primary);
    font-weight: 700;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    margin-bottom: 8px;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Feature Check list container inside calc card */
.included-highlights h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* Calc outputs details */
.calc-output {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 28px;
}

.output-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pack-badge {
    background: rgba(0, 255, 204, 0.1);
    color: #c084fc;
    border: 1px solid rgba(0, 255, 204, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.output-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.output-price .currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    align-self: flex-start;
    margin-top: 4px;
}

.output-price .price-val {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.output-price .period {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-left: 4px;
}

.output-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-breakdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-bottom: 20px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.secure-checkout-text {
    display: block;
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Static Cards Grid beneath calculator */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-elastic);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-glow);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(0, 255, 204, 0.03) 0%, rgba(12, 16, 29, 0.6) 100%);
    border-color: var(--primary-glow);
    box-shadow: var(--shadow-cyan);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #000000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.card-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 40px;
}

.card-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}

.card-price .currency {
    font-size: 1.4rem;
    font-weight: 700;
}

.card-price .price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
}

.card-price .period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 4px;
}

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

.features-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li .check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================================
   Testimonial Client Feedbacks
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.feedback {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.user-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.user-info strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Accordion FAQ Styles
   ========================================================================== */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 24px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header span {
    padding-right: 20px;
}

.chevron {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item[open] .chevron,
.accordion-header[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Footer & support styling
   ========================================================================== */
.footer-section {
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
}

/* Large CTA Box inside Footer */
.footer-cta-card {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.04) 0%, rgba(0, 255, 204, 0.04) 100%);
    border: 1px solid rgba(0, 255, 204, 0.15);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 64px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.footer-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.12;
    top: -50px;
    left: -50px;
}

.footer-cta-card h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: 16px;
}

.footer-cta-card p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Main Footer grid elements */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--primary);
    border-color: var(--primary-glow);
    background: rgba(0, 255, 204, 0.05);
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-group h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-links-group a {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

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

/* bottom row credentials */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom p {
    max-width: 600px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 500;
}

.pulse-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.4;
    }

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

/* ==========================================================================
   Showcase Interactive Toast Notifications
   ========================================================================== */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: calc(100vw - 48px);
}

.toast {
    background: rgba(12, 16, 29, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass-glow);
    padding: 16px 24px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: var(--shadow-cyan);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.toast-content {
    font-size: 0.88rem;
    font-weight: 500;
}

/* ==========================================================================
   Intro Video Floating PIP-Style Widget (Bottom-Left)
   ========================================================================== */
.intro-floating-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 280px;
    background: linear-gradient(135deg, rgba(12, 16, 29, 0.95) 0%, rgba(6, 9, 19, 0.98) 100%);
    border: 1px solid var(--border-glass-glow);
    border-radius: 14px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.55), var(--shadow-cyan);
    z-index: 4999;
    overflow: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.intro-floating-widget.hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    pointer-events: none;
}

.video-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-glass);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.video-widget-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-widget-close:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.video-widget-body {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000000;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.widget-big-play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    border: none;
    color: #060913;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.widget-big-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.6);
}

.video-unmute-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-unmute-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ==========================================================================
   Offers Popup Modal
   ========================================================================== */
.offers-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 320px;
    height: auto;
    z-index: 5000;
    display: none;
    pointer-events: none;
}

.offers-popup.active {
    display: block;
    animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

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

.offers-card {
    background: linear-gradient(135deg, rgba(12, 16, 29, 0.95) 0%, rgba(6, 9, 19, 0.98) 100%);
    border: 1px solid var(--border-glass-glow);
    border-radius: 16px;
    padding: 24px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), var(--shadow-cyan);
    text-align: center;
    pointer-events: auto;
}

.offers-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
}

.offers-close-btn:hover {
    background: rgba(255, 70, 70, 0.15);
    border-color: var(--danger);
    color: var(--danger);
}

.offers-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.1;
    top: -40px;
    right: -40px;
    pointer-events: none;
}

.offers-badge {
    display: inline-block;
    background: rgba(255, 176, 32, 0.1);
    border: 1px solid rgba(255, 176, 32, 0.25);
    color: var(--warning);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.offers-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.offers-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 14px;
}

.offers-pricing {
    margin-bottom: 14px;
}

.offers-from {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.offers-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
}

.offers-price span {
    font-size: 1.2rem;
    color: var(--primary);
    vertical-align: super;
}

.offers-price small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.offers-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offers-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .offers-popup {
        bottom: 12px;
        right: 12px;
        left: 12px;
        width: calc(100% - 24px);
    }

    .offers-card {
        padding: 20px 16px;
    }

    .offers-title {
        font-size: 1.1rem;
    }

    .intro-floating-widget {
        top: 80px;
        bottom: auto;
        left: calc(50% - 140px);
        width: 280px;
    }
}

/* ==========================================================================
   Perfect Responsive Breakpoints & Mobile Auto-resizing Optimizations
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .simulator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }

    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .header {
        background: var(--bg-surface-glass);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-glass);
        padding: 12px 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(6, 9, 19, 0.98);
        backdrop-filter: blur(24px);
        gap: 28px;
        z-index: 100;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-btn-hide {
        display: none;
    }

    .hero-section {
        padding: 110px 0 50px 0;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .trust-avatars {
        justify-content: center;
    }

    .hero-visual {
        max-width: 100%;
    }

    .mockup-header {
        padding: 10px 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .mockup-title {
        font-size: 0.7rem;
        display: none;
    }

    .mockup-body {
        padding: 14px;
    }

    .mockup-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .m-stat {
        padding: 8px;
    }

    .m-stat-label {
        font-size: 0.55rem;
    }

    .m-stat-val {
        font-size: 0.78rem;
    }

    .logger-box {
        height: 130px;
        padding: 10px;
        font-size: 0.7rem;
    }

    .partner-logos {
        gap: 16px;
    }

    .partner-logo {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

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

    .feature-card {
        padding: 24px;
    }

    .simulator-wrapper {
        padding: 20px;
        border-radius: 16px;
    }

    .sim-controls {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sim-ctrl-card {
        padding: 12px;
    }

    .ctrl-actions {
        flex-direction: column;
    }

    .ctrl-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .active-farm-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .farm-head {
        font-size: 0.65rem;
    }

    .task-text {
        font-size: 0.65rem;
    }

    .screen-terminal {
        height: 120px;
        padding: 8px 10px;
    }

    .term-body {
        height: 80px;
        font-size: 0.65rem;
    }

    .term-row {
        font-size: 0.65rem;
    }

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

    .stat-number {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .calculator-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .calc-header h3 {
        font-size: 1.3rem;
    }

    .output-price .price-val {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    .breakdown-row {
        font-size: 0.8rem;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 48px auto 0 auto;
    }

    .pricing-card {
        padding: 24px;
    }

    .card-price .price {
        font-size: 2.2rem;
    }

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

    .testimonial-card {
        padding: 24px;
    }

    .faq-container {
        max-width: 100%;
    }

    .accordion-header {
        padding: 16px;
        font-size: 0.95rem;
    }

    .accordion-content p {
        padding: 0 16px 16px 16px;
        font-size: 0.88rem;
    }

    .footer-cta-card {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .footer-cta-card h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: 100%;
    }

    .toast {
        padding: 12px 16px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero-section {
        padding: 100px 0 40px 0;
    }

    .hero-title {
        font-size: clamp(1.4rem, 7vw, 1.9rem);
    }

    .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

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

    .stat-box {
        padding: 12px 8px;
    }

    .mockup-stats {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .section-header {
        margin: 0 auto 36px auto;
    }

    .features-section,
    .simulator-section,
    .pricing-section,
    .testimonials-section {
        padding: 50px 0;
    }

    .faq-section {
        padding: 40px 0;
    }

    .footer-section {
        padding: 60px 0 32px 0;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.88rem;
    }
}
/* Bento 2D Hover Animations injected by Redesign */
.feature-card:hover, .pricing-card:hover, .testimonial-card:hover, .stat-box:hover, .dashboard-mockup:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.05) !important;
    border-color: #313d5f !important;
    z-index: 10;
}
.feature-card, .pricing-card, .testimonial-card, .stat-box, .dashboard-mockup {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
