/* ==========================================
   Rivet Minecraft Agency - Light & Orange Theme
   ========================================== */

/* Custom Font - Onder */
@font-face {
    font-family: 'Onder';
    src: url('Onder-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8fafc;
    --tertiary-bg: #f1f5f9;
    
    --accent: #ff7800;
    --accent-hover: #e06000;
    --accent-light: rgba(255, 120, 0, 0.08);
    --accent-glow: rgba(255, 120, 0, 0.3);
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;
    
    --border-light: rgba(15, 23, 42, 0.06);
    --border-glass: rgba(255, 255, 255, 0.65);
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08), 0 0 1px rgba(15, 23, 42, 0.05);
    --card-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.04), 0 5px 15px -5px rgba(15, 23, 42, 0.02);
    
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-serif-italic: 'Playfair Display', serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Text selection highlight */
::selection {
    background: var(--accent);
    color: var(--text-white);
}
::-moz-selection {
    background: var(--accent);
    color: var(--text-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.1);
    border-radius: 10px;
    border: 2px solid var(--secondary-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
}

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

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

.section-padding {
    padding: 120px 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #ff5100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-orange {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.highlight-orange::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 120, 0, 0.2);
    z-index: -1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(255, 120, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.6);
}

.btn-secondary {
    background-color: var(--text-main);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.btn-secondary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-orange {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline-orange:hover {
    background-color: var(--accent);
    color: var(--text-white);
    transform: translateY(-2px);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Floating Glassmorphic Header */
.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff; /* 100% solid white */
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 30px; /* Pill shaped */
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 0 1px rgba(15, 23, 42, 0.05);
    transition: var(--transition-normal);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
}

.logo-word {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    width: 100%;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video, .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft sky mask fading to solid white where the dashboard cards float */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.45) 50%, #ffffff 96%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    z-index: 12;
    max-width: 900px;
    margin: 0 auto;
}

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

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 120, 0, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

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

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.hero-title {
    font-size: 4rem;
    margin-top: -24px;
    margin-bottom: 20px;
    color: var(--text-main);
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-muted);
    max-width: 720px;
    text-align: center;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-logo {
    max-width: 440px; /* Big branding wordmark */
    width: 85%;       /* Fluid sizing */
    height: auto;
    object-fit: contain;
    margin-bottom: 0;
}

/* Serif Accent Typography */
.italic-serif {
    font-family: var(--font-serif-italic);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 4px;
    color: rgba(15, 23, 42, 0.4);
    margin-right: 12px;
    display: inline-block;
}

/* Badge dot */
.dot-badge {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.dot-badge.orange {
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

/* Floating Software Console Dashboard */
.hero-dashboard-preview {
    margin-top: 64px;
    width: 100%;
    z-index: 10;
}

.preview-card-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.preview-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.04), 0 0 1px rgba(15, 23, 42, 0.02);
    text-align: left;
    width: 320px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -15px rgba(15, 23, 42, 0.06);
}

.card-header-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.card-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.card-indicator.orange { background-color: var(--accent); }
.card-indicator.green { background-color: #22c55e; }
.card-indicator.blue { background-color: #3b82f6; }

.card-title-simple {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Gauge styling */
.gauge-display {
    margin-bottom: 16px;
}

.gauge-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

.gauge-max {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.gauge-bar-container {
    width: 100%;
    height: 6px;
    background-color: var(--tertiary-bg);
    border-radius: 10px;
    margin-top: 12px;
    overflow: hidden;
}

.gauge-bar-fill {
    height: 100%;
    border-radius: 10px;
}
.gauge-bar-fill.orange {
    background-color: var(--accent);
}

.card-footer-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-footer-note svg {
    width: 16px;
    height: 16px;
}

.card-footer-note.green {
    color: #15803d;
    font-weight: 600;
}

/* TPS Display */
.tps-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.tps-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

.tps-unit {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.tps-status-badge {
    background-color: rgba(34, 197, 94, 0.1);
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 6px;
}

/* Console window */
.preview-card.card-console {
    width: 440px;
}

.console-logs-window {
    background-color: #0b0f19;
    border-radius: 12px;
    padding: 16px;
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: #94a3b8;
    height: 110px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.log-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.log-time {
    color: #475569;
}

.log-tag {
    font-weight: 700;
    font-size: 0.7rem;
    padding: 1px 4px;
    border-radius: 3px;
}

.log-tag.info {
    color: #38bdf8;
}

.log-tag.success {
    color: #4ade80;
}

/* Stats Banner Strip (Under Hero) */
.stats-banner-strip {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 40px 0;
}

.stats-strip-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-number-inline {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.stat-suffix-inline {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 700;
    margin-left: 2px;
}

.stat-label-inline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-strip-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(15, 23, 42, 0.08);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

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

/* Home Page Services Highlight */
.home-services-intro {
    background-color: var(--secondary-bg);
}

/* ==========================================
   INTERACTIVE SERVICES FAN STACK
   ========================================== */
.services-fan-container {
    position: relative;
    width: 100%;
    height: 480px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.fan-instruction-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-light);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 120, 0, 0.15);
    transition: var(--transition-normal);
    z-index: 20;
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.05);
}

.services-fan-container:hover .fan-instruction-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 120, 0, 0.15);
}

.services-fan-stack {
    position: relative;
    width: 280px;
    height: 340px;
    z-index: 10;
}

.fan-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 340px;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    transform-origin: bottom center;
    display: flex;
    flex-direction: column;
    user-select: none;
}

/* Default stack state (spread like cards in hand) */
.fan-card[data-index="0"] { transform: rotate(-9deg) translate(-15px, 10px); z-index: 11; }
.fan-card[data-index="1"] { transform: rotate(-3deg) translate(-5px, 0); z-index: 12; }
.fan-card[data-index="2"] { transform: rotate(3deg) translate(5px, 5px); z-index: 13; }
.fan-card[data-index="3"] { transform: rotate(9deg) translate(15px, 15px); z-index: 14; }

/* Expanded state (expanded fan) */
.services-fan-container.expanded .fan-card[data-index="0"] {
    transform: rotate(-15deg) translate(-340px, -20px);
}
.services-fan-container.expanded .fan-card[data-index="1"] {
    transform: rotate(-5deg) translate(-115px, -5px);
}
.services-fan-container.expanded .fan-card[data-index="2"] {
    transform: rotate(5deg) translate(115px, -5px);
}
.services-fan-container.expanded .fan-card[data-index="3"] {
    transform: rotate(15deg) translate(340px, -20px);
}

/* Hover effects in expanded state */
.services-fan-container.expanded .fan-card:hover {
    z-index: 30 !important;
    border-color: var(--accent);
    box-shadow: 0 20px 45px -15px rgba(255, 120, 0, 0.15);
}

.services-fan-container.expanded .fan-card[data-index="0"]:hover { transform: rotate(-15deg) translate(-340px, -45px) scale(1.05); }
.services-fan-container.expanded .fan-card[data-index="1"]:hover { transform: rotate(-5deg) translate(-115px, -30px) scale(1.05); }
.services-fan-container.expanded .fan-card[data-index="2"]:hover { transform: rotate(5deg) translate(115px, -30px) scale(1.05); }
.services-fan-container.expanded .fan-card[data-index="3"]:hover { transform: rotate(15deg) translate(340px, -45px) scale(1.05); }

.teaser-icon-glass,
.why-icon-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    transition: var(--transition-normal);
}

.teaser-icon-glass {
    margin-bottom: 20px;
}

.glass-icon-svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 6px 12px rgba(255, 120, 0, 0.12));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fan-card:hover .glass-icon-svg,
.why-card:hover .glass-icon-svg,
.service-card:hover .glass-icon-svg {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 12px 24px rgba(255, 120, 0, 0.28));
}

.fan-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.fan-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.fan-card .teaser-link {
    margin-top: auto;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
}

.fan-card .teaser-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.fan-card .teaser-link:hover svg {
    transform: translateX(4px);
}


/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(135deg, #ff7800 0%, #ff5100 100%);
    color: var(--text-white);
    padding: 80px 0;
    text-align: center;
}

.cta-banner .section-title {
    color: var(--text-white);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

.cta-banner .btn-secondary {
    background-color: var(--primary-bg);
    color: var(--text-main);
}

.cta-banner .btn-secondary:hover {
    background-color: var(--secondary-bg);
    color: var(--accent);
}

/* PRICING PAGE & CALCULATOR */
.services-section {
    background-color: var(--primary-bg);
}

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

.service-card {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-bg);
    box-shadow: var(--card-shadow);
    border-color: rgba(255, 120, 0, 0.15);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--primary-bg);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--accent-light);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 72px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

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

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Custom Plan Section */
.custom-plan-section {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--border-light);
}

.custom-plan-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--card-shadow);
}

.custom-plan-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.custom-plan-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 24px;
}

.custom-plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    background: var(--secondary-bg);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.custom-plan-features li:hover {
    border-color: rgba(255, 120, 0, 0.3);
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}

.feature-check {
    width: 24px;
    height: 24px;
    background-color: var(--accent);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

/* Responsive Custom Plan Section */
@media (max-width: 900px) {
    .custom-plan-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-plan-wrapper {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .custom-plan-features {
        grid-template-columns: 1fr;
    }
    .custom-plan-wrapper {
        padding: 30px 20px;
    }
}

/* CONTACT & FAQ PAGE */
.contact-section {
    background-color: var(--primary-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.info-val {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
}

/* Form Card */
.contact-form-card {
    position: relative;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background-color: var(--primary-bg);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-bg);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.success-icon svg {
    width: 64px;
    height: 64px;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

/* FAQ Accordion List */
.faq-section {
    background-color: var(--secondary-bg);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    color: var(--text-light);
    transition: var(--transition-normal);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Active state */
.faq-item.active {
    border-color: rgba(255, 120, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.01);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary large value */
}

/* Why Rivet Section */
.why-section {
    background-color: var(--primary-bg);
}

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

.why-card {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px -15px rgba(255, 120, 0, 0.08);
}

/* why-icon-glass styled in parent teaser-icon-glass block */

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-main);
}

.why-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Footer */
.main-footer {
    background-color: var(--secondary-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 320px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-main);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}

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

.social-icon {
    width: 38px;
    height: 38px;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================
   PROCESS SECTION (MINIMALIST STYLE)
   ========================================== */
.process-section {
    position: relative;
    background-color: var(--primary-bg); /* Clean white background */
}

/* Process Wave Section Styling */
.process-wave-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    min-height: 480px;
}

.process-wave-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
    background-color: var(--primary-bg);
    padding: 10px 20px;
    margin: -10px -20px;
    border-radius: 12px;
}

.process-wave-step.step-high {
    align-self: start;
    margin-top: 20px;
}

.process-wave-step.step-low {
    align-self: end;
    margin-top: 180px; /* Offset for wave effect */
}

.process-svg-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent); /* Orange accent */
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    opacity: 0.85;
    transition: var(--transition-normal);
}

.process-wave-step:hover .process-step-num {
    transform: translateY(-4px);
    opacity: 1;
    color: var(--accent-hover);
}

.process-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.process-step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Custom lowercase serif formatting */
.lowercase-serif {
    text-transform: lowercase;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-text-wrapper {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-top: 0;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-wave-container {
        grid-template-columns: repeat(2, 1fr);
        min-height: auto;
        margin-top: 40px;
        gap: 30px;
    }
    
    .process-wave-step.step-high,
    .process-wave-step.step-low {
        align-self: stretch;
        margin-top: 0;
    }
    
    .process-svg-line {
        display: none;
    }
    
    
    /* Cleaned up estimator responsive overrides */
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .main-header {
        top: 0;
        padding: 0;
    }
    
    .nav-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 16px 24px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-bg);
        border-bottom: 1px solid var(--border-light);
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-normal);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-btn-mobile {
        display: block;
        background-color: var(--accent);
        color: var(--text-white) !important;
        padding: 12px !important;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .nav-btn-mobile::after {
        display: none !important;
    }
    
    .nav-btn-desktop {
        display: none;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-top: -12px;
    }
    
    .hero-logo {
        max-width: 260px;
        margin-bottom: 0;
    }
    
    .services-grid,
    .why-grid,
    .process-wave-container,
    .server-type-grid,
    .addons-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   RESPONSIVE folding for Services Fan Stack
   ========================================== */
@media (max-width: 900px) {
    .services-fan-container {
        height: auto;
        cursor: default;
    }
    
    .fan-instruction-badge {
        display: none;
    }

    .services-fan-stack {
        position: static;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fan-card {
        position: static;
        width: 100%;
        height: auto;
        transform: none !important;
        transform-origin: center center;
    }
    
    .fan-card:hover {
        transform: translateY(-5px) !important;
        border-color: var(--accent);
        box-shadow: 0 15px 35px rgba(255, 120, 0, 0.08);
    }
}

@media (max-width: 600px) {
    .services-fan-stack {
        grid-template-columns: 1fr;
    }
}

/* Onboarding Wizard Styles */
.onboarding-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.onboarding-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

/* Progress bar styling */
.wizard-progress-wrapper {
    margin-bottom: 40px;
}

.wizard-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.wizard-progress-track {
    height: 6px;
    background-color: var(--secondary-bg);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.wizard-progress-fill {
    height: 100%;
    background-color: var(--accent);
    border-radius: 3px;
    width: 20%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Step container animation */
.step-container {
    display: none;
    animation: stepFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-container.active {
    display: block;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Choice card grid layout */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

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

.choice-card {
    background-color: var(--primary-bg);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.choice-card:hover {
    border-color: rgba(255, 120, 0, 0.4);
    transform: translateY(-2px);
}

.choice-card.selected {
    border-color: var(--accent);
    background-color: var(--accent-light);
    box-shadow: 0 8px 20px -6px rgba(255, 120, 0, 0.15);
}

.choice-card .choice-icon {
    width: 36px;
    height: 36px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.choice-card.selected .choice-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.choice-card .choice-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.choice-card.selected .choice-label {
    color: var(--accent);
}

/* Other Custom Input Field container */
.other-input-wrap {
    margin-top: 16px;
    margin-bottom: 32px;
    display: none;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.other-input-wrap.active {
    display: block;
}

/* Phone Input Prefix styles */
.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.phone-prefix {
    position: absolute;
    left: 16px;
    font-weight: 700;
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.95rem;
}

.phone-input-container input {
    padding-left: 54px !important;
    width: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wizard navigation actions container */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
}

.wizard-actions .btn {
    min-width: 140px;
}

/* Review details styling */
.review-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
}

.review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-light);
}

.review-row:last-child {
    border-bottom: none;
}

.review-row:nth-child(even) {
    background-color: var(--secondary-bg);
}

.review-info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

.review-edit-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-edit-btn:hover {
    background-color: var(--accent-light);
}

/* Success screen overlay */
.success-screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.success-screen-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive wizard grid overrides */
@media (max-width: 768px) {
    .onboarding-card {
        padding: 32px 24px;
    }
    
    .choice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .choice-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-actions {
        flex-direction: column-reverse;
        gap: 16px;
    }
    
    .wizard-actions .btn {
        width: 100%;
    }
}

/* Cookie Banner Style */
#cookieBanner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    z-index: 9999;
    display: flex;
    animation: slideUpCookie 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#cookieBanner.hide {
    animation: slideDownCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.cookie-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: left;
}

.cookie-content p a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

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

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

@media (max-width: 600px) {
    #cookieBanner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .cookie-content .btn {
        width: 100%;
    }
}

/* ==========================================
   Slide to Submit Inquiry Component
   ========================================== */
.slider-wrapper {
    width: 100%;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.slide-to-submit {
    position: relative;
    height: 56px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.slider-bg-text {
    position: absolute;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(90deg, var(--text-muted) 0%, var(--text-main) 50%, var(--text-muted) 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: textShimmer 3s infinite linear;
}

@keyframes textShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 120, 0, 0.15), rgba(255, 120, 0, 0.3));
    border-radius: 28px 0 0 28px;
    z-index: 0;
    transition: width 0.05s ease-out;
}

.slider-handle {
    position: absolute;
    left: 4px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.slider-handle:hover {
    transform: scale(1.05);
    background-color: #ff8b1f;
}

.slider-handle:active {
    cursor: grabbing;
    transform: scale(0.98);
}

.slider-handle i {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

/* Success/Loading slider states */
.slide-to-submit.submitting {
    background: rgba(15, 23, 42, 0.02);
    pointer-events: none;
}

.slide-to-submit.submitting .slider-bg-text {
    color: var(--text-light);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.slide-to-submit.submitting .slider-handle {
    background: var(--text-light);
    box-shadow: none;
}

/* Glow animation for handle when loaded */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 120, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 120, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 120, 0, 0); }
}

.slider-handle.success-state {
    background-color: #10b981 !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
    animation: pulseGlow 1.5s infinite;
}

