/* =============================================
   Replix3D — Premium Design System v2.0
   ============================================= */

:root {
    --bg-dark: #06080e;
    --bg-darker: #040609;
    --bg-card: rgba(14, 17, 26, 0.7);
    --bg-card-hover: rgba(20, 24, 38, 0.8);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-hover: rgba(0, 212, 255, 0.25);
    --accent-blue: #00d4ff;
    --accent-cyan: #00f0ff;
    --accent-blue-dim: rgba(0, 212, 255, 0.12);
    --accent-purple: #7B61FF;
    --accent-purple-dim: rgba(123, 97, 255, 0.12);
    --accent-gradient: linear-gradient(135deg, #00d4ff, #7B61FF);
    --accent-gradient-h: linear-gradient(90deg, #00d4ff, #7B61FF);
    --text-main: #eef0f6;
    --text-secondary: #c0c5d4;
    --text-muted: #7a8299;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.12);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* =============================================
   Particle Canvas
   ============================================= */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* =============================================
   Layout
   ============================================= */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 110px 0;
    position: relative;
    z-index: 2;
}

.bg-alt {
    background: rgba(8, 10, 18, 0.6);
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; }

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

.text-accent { color: var(--accent-blue); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-left { text-align: left; }

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
    text-align: left;
}

.section-tag {
    display: inline-block;
    color: var(--accent-blue);
    margin-bottom: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.06);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* =============================================
   Navigation
   ============================================= */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 8, 14, 0.75);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 0;
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 10px 0;
    background: rgba(6, 8, 14, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

nav a:hover,
nav a.active {
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.06);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(6, 8, 14, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
        border-left: 1px solid var(--border-glass);
        z-index: 2000;
        visibility: hidden;
        opacity: 0;
    }

    nav.open {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    nav a {
        font-size: 1.05rem;
        padding: 14px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }
}

/* =============================================
   Glass Card
   ============================================= */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-card-hover);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 800px;
    z-index: 1;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 212, 255, 0.04);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-blue);
    border: 1px solid rgba(0, 212, 255, 0.15);
    margin-bottom: 24px;
}

.location-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-blue);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 8px var(--accent-blue); }
    50% { box-shadow: 0 0 20px var(--accent-blue), 0 0 40px rgba(0, 212, 255, 0.3); }
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

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

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero-subtitle {
        margin: 0 auto 32px auto;
    }
    .hero-stats {
        justify-content: center;
        gap: 28px;
    }
    .hero-actions {
        justify-content: center;
    }
}

/* =============================================
   Utility Layouts
   ============================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 40px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 24px; }
.w-100 { width: 100%; }
.p-4 { padding: 24px; }
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .order-1, .order-2 { order: unset; }
}

/* =============================================
   Form Controls
   ============================================= */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.form-control option {
    background: var(--bg-dark);
    color: var(--text-main);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* =============================================
   Services Section
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    overflow: hidden;
    text-align: left;
}

.service-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--accent-blue);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

.service-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
}

.service-card.featured {
    border-color: rgba(0, 212, 255, 0.15);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03), var(--bg-card));
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    background: var(--accent-gradient);
    padding: 4px 14px;
    border-radius: 100px;
}

/* =============================================
   Formats Marquee
   ============================================= */
.formats-marquee {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(6, 8, 14, 0.4);
}

.marquee-track {
    width: 100%;
    overflow: hidden;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    gap: 16px;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.format-chip {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-glass);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    background: rgba(12, 14, 22, 0.8);
    transition: var(--transition-fast);
}

/* =============================================
   Calculator Section
   ============================================= */
.calc-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

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

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

.calc-footer {
    margin-top: 8px;
}

.calc-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-summary h3 {
    margin-bottom: 24px;
    font-size: 1.4rem;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.summary-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.summary-list .icon {
    color: var(--accent-purple);
    margin-top: 4px;
    flex-shrink: 0;
}

.summary-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.02rem;
}

.summary-list p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.price-estimate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
}

.price-label {
    font-size: 1.05rem;
    font-weight: 600;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.placeholder-text {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .calc-wrapper { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
}

/* =============================================
   Feature Lists & Images
   ============================================= */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-blue);
    filter: blur(90px);
    opacity: 0.1;
    z-index: 0;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

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

.feature-list span {
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 12px;
    color: var(--text-secondary);
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3,
.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 16px;
}

.faq-icon {
    font-size: 1.6rem;
    color: var(--accent-blue);
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

.faq-item:hover .faq-icon {
    border-color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-answer.open {
    max-height: 500px; /* Sufficient height for content */
    opacity: 1;
}

.faq-answer p {
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.7;
}

/* =============================================
   Process Section
   ============================================= */
.process {
    padding: 120px 0;
    background: rgba(8, 10, 18, 0.4);
    position: relative;
    overflow: hidden;
}

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

.process-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    mix-blend-mode: luminosity;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 40%, transparent 60%, var(--bg-dark) 100%);
    z-index: 1;
}

.process-timeline,
.process .section-header {
    position: relative;
    z-index: 2;
}

.process-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
    opacity: 0.2;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    position: relative;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-left: auto;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .timeline-line { left: 40px; }
    .step-number { width: 36px; font-size: 1.4rem; }
    .process-step { gap: 16px; }
    .step-icon { display: none; }
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing {
    padding: 120px 0;
}

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

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

.price-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    text-align: left;
}

.price-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.price-card.featured {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05), var(--bg-card));
    box-shadow: var(--shadow-glow);
    transform: scale(1.04);
}

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

@media (max-width: 992px) {
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #000;
    padding: 6px 22px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-header {
    margin-bottom: 24px;
}

.price-icon {
    width: 44px;
    height: 44px;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.price-icon svg {
    width: 100%;
    height: 100%;
}

.price-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

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

.price-amount {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-glass);
}

.price-amount .from {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    vertical-align: super;
}

.price-amount .amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.price-amount .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.price-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue);
    opacity: 0.5;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: var(--radius-md);
}

.pricing-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* =============================================
   Scroll Animations
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   Service Page Hero
   ============================================= */
.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero .hero-container {
    position: relative;
    z-index: 2;
}

.service-hero .hero-visual img {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

/* Service Page Specific Colors */
.service-hero.scanning::before {
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
}

.service-hero.printing::before {
    background: radial-gradient(ellipse at 20% 50%, rgba(123, 97, 255, 0.08) 0%, transparent 60%);
}

.service-hero.reverse::before {
    background: radial-gradient(ellipse at 20% 50%, rgba(160, 60, 255, 0.08) 0%, transparent 60%);
}

/* =============================================
   Service Detail Sections
   ============================================= */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

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

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.detail-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

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

.detail-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 212, 255, 0.12);
}

.detail-card .card-icon svg {
    width: 26px;
    height: 26px;
}

.detail-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Purple variant */
.detail-card.purple .card-icon {
    background: var(--accent-purple-dim);
    color: var(--accent-purple);
    border-color: rgba(123, 97, 255, 0.12);
}

.detail-card.purple::before {
    background: linear-gradient(135deg, var(--accent-purple), #a040ff);
}

/* =============================================
   Technology Comparison
   ============================================= */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.tech-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.tech-card .tech-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.12);
}

.tech-card .tech-icon svg {
    width: 32px;
    height: 32px;
}

.tech-card h3 {
    margin-bottom: 8px;
}

.tech-card .tech-label {
    font-size: 0.78rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 16px;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.tech-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tech-card ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.tech-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
    opacity: 0.5;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-glass);
    background: var(--bg-darker);
}

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

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

/* =============================================
   Breadcrumb
   ============================================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-blue);
}

.breadcrumb .separator {
    opacity: 0.4;
}

/* =============================================
   Upload Area (reuse)
   ============================================= */
.upload-area {
    border: 2px dashed var(--border-glass);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.2);
}

.upload-area:hover {
    border-color: var(--accent-blue);
    background: var(--accent-blue-dim);
}

/* =============================================
   Misc
   ============================================= */
.core-service {
    border-color: rgba(0, 212, 255, 0.2);
    background: linear-gradient(180deg, rgba(14, 17, 26, 0.8) 0%, rgba(0, 212, 255, 0.03) 100%);
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }
    h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-item {
        min-width: 80px;
    }
}