/* ============================================
   INTEGRIXEL - Design System
   Corporate IT Services - Premium Dark Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a2035;
    --bg-elevated: #1f2a42;
    --bg-input: #151d2e;
    --accent: #00d4aa;
    --accent-hover: #00f5c4;
    --accent-muted: rgba(0, 212, 170, 0.12);
    --accent-glow: rgba(0, 212, 170, 0.25);
    --secondary: #f59e0b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(0, 212, 170, 0.2);
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(0, 212, 170, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1200px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================ 
   NAVIGATION 
   ============================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.nav.scrolled { background: rgba(10, 14, 23, 0.95); box-shadow: var(--shadow-md); }
.nav-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent), #0891b2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: var(--bg-primary);
}
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
    font-family: var(--font-display);
    font-size: 0.875rem; font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--accent); color: var(--bg-primary) !important;
    padding: 10px 24px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.875rem;
    font-family: var(--font-display);
}
.nav-cta:hover { background: var(--accent-hover); color: var(--bg-primary) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile Menu */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); margin: 6px 0;
    transition: var(--transition);
}

/* ============================================ 
   BUTTONS 
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 600;
    border: none; cursor: pointer;
    transition: var(--transition);
    text-align: center; justify-content: center;
}
.btn-primary {
    background: var(--accent); color: var(--bg-primary);
}
.btn-primary:hover {
    background: var(--accent-hover); color: var(--bg-primary);
    transform: translateY(-2px); box-shadow: var(--shadow-glow);
}
.btn-outline {
    background: transparent; color: var(--accent);
    border: 1.5px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent-muted); color: var(--accent-hover);
    border-color: var(--accent-hover);
}
.btn-secondary {
    background: var(--bg-elevated); color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--bg-card); border-color: var(--accent);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; color: #fff; }

/* ============================================ 
   HERO SECTION 
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding-top: 72px;
    background: url('/images/homebanner.jpg') center center / cover no-repeat;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 23, 0.75) 0%, rgba(10, 14, 23, 0.65) 50%, rgba(10, 14, 23, 0.85) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    padding: 8px 18px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 28px;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-tag .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); }
.hero .hero-desc {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ============================================ 
   SECTIONS 
   ============================================ */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-secondary); }
.section-header {
    text-align: center; max-width: 640px;
    margin: 0 auto 60px;
}
.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem; font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 16px;
    background: var(--accent-muted);
    padding: 6px 16px; border-radius: 4px;
}
.section-header h2 { margin-bottom: 16px; }

/* ============================================ 
   CARDS 
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-icon {
    width: 52px; height: 52px;
    background: var(--accent-muted);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 24px; color: var(--accent);
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 20px; }
.card-link {
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 600;
    color: var(--accent);
    display: inline-flex; align-items: center; gap: 6px;
}
.card-link:hover { gap: 10px; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.grid-3 > * { width: calc(33.333% - 19px); min-width: 280px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================ 
   SERVICE CARDS 
   ============================================ */
.service-card { text-align: left; }
.service-card .card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent-muted), rgba(8, 145, 178, 0.1));
    border: 1px solid var(--border-accent);
}
.service-card .price {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.6rem;
    color: var(--accent); margin-top: 16px;
}
.service-card .price span {
    font-size: 0.9rem; font-weight: 400;
    color: var(--text-muted);
}

/* ============================================ 
   PRICING TABLE 
   ============================================ */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
}
.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    box-shadow: var(--shadow-glow);
    transform: scale(1.04);
}
.pricing-card:hover { border-color: var(--border-accent); }
.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 0.7rem; font-weight: 700;
    padding: 4px 14px; border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.pricing-card h3 {
    font-size: 1.3rem; margin-bottom: 8px;
}
.pricing-card .price-tag {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 800;
    color: var(--text-primary);
    margin: 20px 0;
}
.pricing-card .price-tag .currency {
    font-size: 1.4rem; font-weight: 600;
    vertical-align: super; margin-right: 2px;
}
.pricing-card .price-tag .period {
    font-size: 0.9rem; font-weight: 400;
    color: var(--text-muted);
}
.pricing-features {
    list-style: none; text-align: left;
    margin: 28px 0;
}
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
    color: var(--accent); font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================ 
   STATS / COUNTERS 
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 800;
    color: var(--accent);
    display: block;
}
.stat-label {
    font-size: 0.85rem; color: var(--text-muted);
    margin-top: 4px; font-weight: 500;
}

/* ============================================ 
   TESTIMONIALS 
   ============================================ */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.testimonial-card .stars { color: var(--secondary); font-size: 1rem; margin-bottom: 16px; }
.testimonial-card blockquote {
    font-size: 1rem; font-style: italic;
    color: var(--text-secondary); margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-card .author { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }
.testimonial-card .role { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================ 
   FORMS 
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-muted);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ============================================ 
   FOOTER 
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand h3 {
    font-size: 1.4rem; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer h4 {
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 0.8rem; color: var(--text-muted);
}

/* ============================================ 
   PAGE HEADERS 
   ============================================ */
.page-hero {
    padding: 140px 0 80px;
    position: relative;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 170, 0.06) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 16px; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; margin-bottom: 20px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================ 
   CHECKOUT / PAYMENT 
   ============================================ */
.checkout-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.order-summary {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky; top: 96px;
}
.order-summary h3 { margin-bottom: 20px; font-size: 1.1rem; }
.summary-row {
    display: flex; justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--text-secondary); }
.summary-row .value { color: var(--text-primary); font-weight: 600; }
.summary-row.total { font-size: 1.1rem; }
.summary-row.total .value { color: var(--accent); font-size: 1.3rem; }

/* Payment Page */
.payment-container { max-width: 560px; margin: 0 auto; text-align: center; }
.qr-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    display: inline-block;
    margin: 24px 0;
}
.qr-box canvas, .qr-box img { max-width: 240px; }
.upi-apps { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.upi-app-btn {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
}
.upi-app-btn:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
    color: var(--text-primary);
}
.upi-app-btn .app-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
}
.timer-text {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 16px 0;
}

/* Status Page */
.status-card {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}
.status-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}
.status-icon.success { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.status-icon.pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.status-icon.failed { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

/* ============================================ 
   LEGAL PAGES 
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--accent); }
.legal-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.legal-content p { margin-bottom: 16px; line-height: 1.8; }
.legal-content ul, .legal-content ol {
    padding-left: 24px; margin-bottom: 16px;
}
.legal-content li {
    margin-bottom: 8px; color: var(--text-secondary);
    line-height: 1.7;
}
.legal-content strong { color: var(--text-primary); }

/* ============================================ 
   ADMIN PANEL 
   ============================================ */
.admin-body {
    background: var(--bg-primary);
    min-height: 100vh;
}
.admin-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 0 24px; height: 64px;
    display: flex; align-items: center;
    justify-content: space-between;
}
.admin-header h1 {
    font-size: 1.1rem;
    display: flex; align-items: center; gap: 10px;
}
.admin-content { padding: 32px 24px; max-width: 1400px; margin: 0 auto; }
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.admin-stat-card .stat-label {
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-muted);
    margin-bottom: 8px;
}
.admin-stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    color: var(--text-primary);
}

/* Admin Table */
.admin-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    background: var(--bg-elevated);
    padding: 14px 16px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.8rem; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* Status Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-display);
}
.badge-success { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.badge-info { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }

/* ============================================ 
   MICRO-SERVICES LIST
   ============================================ */
.micro-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.micro-grid .micro-card {
    width: calc(25% - 15px);
    min-width: 240px;
}
.micro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex; flex-direction: column;
    transition: var(--transition);
}
.micro-card:hover { border-color: var(--border-accent); }
.micro-card h4 { font-size: 1rem; margin-bottom: 8px; }
.micro-card p { font-size: 0.85rem; flex: 1; }
.micro-card .micro-price {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.3rem;
    color: var(--accent);
    margin-top: 12px;
}
.micro-card .micro-price .from {
    font-size: 0.75rem; font-weight: 400;
    color: var(--text-muted);
}

/* ============================================ 
   PROCESS / TIMELINE 
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.process-step {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    counter-increment: step;
}
.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 800;
    color: var(--accent-muted);
    display: block; margin-bottom: 16px;
    line-height: 1;
    background: linear-gradient(180deg, var(--accent), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; }

/* ============================================ 
   CTA SECTION 
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative; overflow: hidden;
    margin: 0 24px;
}
.cta-section::before {
    content: ''; position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; position: relative; }
.cta-section p { max-width: 480px; margin: 0 auto 32px; position: relative; }
.cta-section .btn { position: relative; }

/* ============================================ 
   LOADING / SPINNER 
   ============================================ */
.spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 24px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================ 
   ALERTS 
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid;
}
.alert-success { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: var(--success); }
.alert-danger { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: var(--danger); }
.alert-warning { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: var(--warning); }
.alert-info { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: #3b82f6; }

/* ============================================ 
   RESPONSIVE 
   ============================================ */
@media (max-width: 1024px) {
    .grid-3 > * { width: calc(50% - 14px); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
    .micro-grid .micro-card { width: calc(50% - 10px); }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 > * { width: 100%; min-width: unset; }
    .grid-4 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .section { padding: 64px 0; }
    .checkout-form, .order-summary { padding: 24px; }
    .legal-content { padding: 28px; }
    .cta-section { padding: 40px 24px; margin: 0; border-radius: 0; }
    .micro-grid .micro-card { width: 100%; min-width: unset; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .pricing-card .price-tag { font-size: 2.2rem; }
}

/* ============================================ 
   ANIMATIONS 
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* iOS Safari fix */
.site-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
