/* ==========================================================================
   RITYM TECHNOLOGIES — ULTRA-PROFESSIONAL RESPONSIVE ENTERPRISE DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-main: #ffffff;
    --bg-surface: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-border: #e2e8f0;
    --bg-card-hover: #f1f5f9;

    --brand-dark: #0f172a;
    --brand-dark-surface: #1e293b;
    --primary-orange: #ff6b00;
    --primary-orange-hover: #e66000;
    --primary-orange-light: #fff7ed;
    --primary-orange-glow: rgba(255, 107, 0, 0.2);
    --primary-blue: #2563eb;
    --primary-indigo: #4f46e5;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-gold: #f59e0b;

    --text-main: #0f172a;
    --text-muted: #334155;
    --text-dim: #64748b;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
    --shadow-orange: 0 12px 28px -6px rgba(255, 107, 0, 0.35);
}

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

body.light-theme {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

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

/* Text Gradients & Color Utilities */
.gradient-text-orange {
    background: linear-gradient(135deg, #0f172a 0%, var(--primary-orange) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.text-orange { color: var(--primary-orange); }
.text-green { color: var(--accent-green); }
.text-gold { color: var(--accent-gold); }
.font-mono { font-family: var(--font-mono); }

.bg-surface {
    background-color: var(--bg-surface);
}

/* Card Component */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1e293b 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 107, 0, 0.4);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-hover) 100%);
    border-color: var(--primary-orange);
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--text-main);
    border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.btn-outline {
    background: #ffffff;
    color: var(--text-muted);
    border: 1px solid #cbd5e1;
}

.btn-outline:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    background: var(--primary-orange-light);
}

.btn-sm { padding: 9px 18px; font-size: 0.88rem; min-height: 38px; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 10px; min-height: 52px; }
.btn-xs { padding: 4px 10px; font-size: 0.75rem; border-radius: 6px; min-height: 28px; }
.btn-block { width: 100%; }

/* SLEEK DARK HEADER NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 8px 0;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 2px 0;
}

.official-logo-img {
    height: 65px;
    width: auto;
    max-width: 320px;
    display: block;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
}

.official-logo-img-footer {
    height: 70px;
    width: auto;
    max-width: 320px;
    display: block;
    object-fit: contain;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 14px rgba(255, 107, 0, 0.3));
}

.brand-logo:hover .official-logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 18px rgba(255, 107, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}

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

.highlight-link {
    color: var(--primary-orange);
    font-weight: 600;
}

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

/* Tagline Sub-Header Banner */
.tagline-bar {
    margin-top: 81px;
    background: #04060a;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tagline-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.t-segment { color: var(--primary-orange); }
.t-bullet { color: rgba(255, 255, 255, 0.25); }

/* Anti-Spam Email Chip */
.email-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 20px;
    background: #1e293b;
    border: 1px solid #334155;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.email-chip:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: var(--primary-orange-light);
}

.copy-badge {
    font-size: 0.68rem;
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-orange);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* HERO SECTION WITH FLUID TYPOGRAPHY & ZERO OVERFLOW */
.hero {
    padding: 85px 0 70px 0;
    background: radial-gradient(circle at 90% 15%, rgba(255, 107, 0, 0.08) 0%, transparent 65%),
                radial-gradient(circle at 10% 85%, rgba(37, 99, 235, 0.04) 0%, transparent 55%);
}

.hero-container.hero-pro-class {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content-pro {
    width: 100%;
    text-align: left;
}

.hero-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.agency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #ffedd5;
    border: 1px solid #fed7aa;
    color: var(--primary-orange);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pro-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 6px 14px;
    border-radius: 20px;
}

.pulse-ring {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-orange);
    box-shadow: 0 0 10px var(--primary-orange);
}

.hero-title-pro {
    font-size: clamp(1.75rem, 5.5vw, 3.8rem);
    letter-spacing: -1px;
    margin-bottom: 22px;
    line-height: 1.18;
    max-width: 1200px;
    word-wrap: break-word;
}

.hero-subtitle-pro {
    font-size: clamp(1.0rem, 2.5vw, 1.28rem);
    margin-bottom: 36px;
    max-width: 1100px;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Value-Driven Capability Cards Bar */
.pro-capability-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 42px;
    max-width: 1220px;
}

.cap-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cap-pill:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.c-icon {
    font-size: 1.3rem;
}

.hero-actions-pro {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.trust-metrics-pro {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 20px 32px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.t-metric {
    display: flex;
    flex-direction: column;
}

.t-metric strong {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.t-metric span {
    font-size: 0.84rem;
    color: var(--text-dim);
}

.t-divider {
    width: 1px;
    height: 36px;
    background: #cbd5e1;
}

/* Industries Served Banner */
.industries-bar {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}

.ind-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ind-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.ind-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ind-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.text-center { text-align: center; margin-left: auto; margin-right: auto; }

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--primary-orange);
    margin-bottom: 14px;
}

.tag-primary { color: var(--primary-orange); }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.08rem);
}

/* Grids */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
}

.s-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-orange { background: #ffedd5; color: var(--primary-orange); border: 1px solid #fed7aa; }
.icon-indigo { background: #e0e7ff; color: var(--primary-indigo); border: 1px solid #c7d2fe; }
.icon-cyan { background: #cff4fc; color: var(--accent-cyan); border: 1px solid #a5f3fc; }

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

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.s-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
}

.s-list li {
    padding-left: 22px;
    position: relative;
    color: var(--text-muted);
}

.s-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Why Choose Us Cards */
.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.w-icon {
    background: var(--primary-orange-light);
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #fed7aa;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.92rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.process-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.p-step-num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.process-step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.t-stars {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.t-quote {
    font-size: 0.94rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.6;
}

.t-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e2e8f0;
    padding-top: 14px;
}

.t-author strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.t-author span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.t-verified {
    font-size: 0.74rem;
    color: var(--accent-green);
    margin-top: 4px;
    font-weight: 600;
}

/* Case Study Impact Box */
.case-impact-box {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
}

.c-impact-item {
    display: flex;
    flex-direction: column;
}

.c-impact-item strong {
    font-size: 1.05rem;
    color: var(--primary-orange);
    font-family: var(--font-mono);
}

.c-impact-item span {
    font-size: 0.72rem;
    color: var(--text-dim);
}

/* App Configurator Wizard */
.wizard-card {
    background: #ffffff;
    border-color: #cbd5e1;
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.wizard-steps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.w-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.w-step.active {
    opacity: 1;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.w-step.active .step-num {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(255, 107, 0, 0.4);
}

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

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 16px;
}

.wizard-step-panel {
    display: none;
}

.wizard-step-panel.active {
    display: block;
}

.w-panel-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.w-panel-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input[type="checkbox"] {
    position: absolute;
    top: 16px;
    right: 16px;
    accent-color: var(--primary-orange);
    width: 18px;
    height: 18px;
}

.option-content {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 20px;
    height: 100%;
    transition: var(--transition);
}

.option-card:hover .option-content {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.option-card input:checked + .option-content {
    border-color: var(--primary-orange);
    background: var(--primary-orange-light);
    box-shadow: 0 0 16px rgba(255, 107, 0, 0.15);
}

.option-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.option-content h4 {
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.option-content p {
    font-size: 0.84rem;
}

/* Payment Milestones Box */
.payment-milestones-box {
    background: var(--primary-orange-light);
    border: 1px solid #fed7aa;
    padding: 24px 28px;
}

.p-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    margin-bottom: 18px;
}

.p-box-header h4 {
    font-size: 1.05rem;
    color: var(--primary-orange);
}

.p-milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.p-milestone-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 16px;
}

.m-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    background: #ffedd5;
    color: var(--primary-orange);
    display: inline-block;
    margin-bottom: 8px;
}

.m-badge.blue { background: #dbeafe; color: var(--primary-blue); }
.m-badge.green { background: #d1fae5; color: var(--accent-green); }

.m-title { font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.m-desc { font-size: 0.8rem; color: var(--text-muted); }

.form-row {
    display: flex;
    gap: 24px;
}

.flex-1 { flex: 1; }

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

/* ENTERPRISE DISTORTED VISUAL CANVAS CAPTCHA STYLING */
.visual-captcha-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 18px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-canvas-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

#contact-captcha-canvas, #wizard-captcha-canvas {
    border-radius: 6px;
    border: 1px solid #0f172a;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.inline-error-banner {
    background: #fef2f2;
    border: 2px solid #ef4444;
    color: #dc2626;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-top: 14px;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.2);
    animation: shakeErr 0.35s ease-in-out;
}

@keyframes shakeErr {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

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

.form-group input, .form-group select, .form-group textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 16px;
    outline: none;
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 14px rgba(255, 107, 0, 0.2);
}

.review-box {
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #e2e8f0;
}

.review-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 6px;
}

.r-label { color: var(--text-muted); }
.r-val { font-weight: 600; color: var(--primary-orange); }

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    gap: 14px;
}

/* 7-Stage Project Tracker Pipeline */
.tracker-search-bar {
    display: flex;
    gap: 14px;
}

.tracker-search-bar input {
    flex-grow: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
}

.t-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 12px;
}

.t-order-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.t-id-badge {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.98rem;
    background: #ffedd5;
    color: var(--primary-orange);
    padding: 5px 14px;
    border-radius: 6px;
}

.t-client-name {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.t-status-pill {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffedd5;
    color: var(--primary-orange);
}

.t-status-pill.status-waiting {
    background: #fef3c7;
    color: #b45309;
}

.t-status-pill.status-rejected {
    background: #fee2e2;
    color: #dc2626;
}

.t-status-pill .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-orange);
}

.t-status-pill.status-waiting .status-dot { background: #b45309; }
.t-status-pill.status-rejected .status-dot { background: #dc2626; }

.lifecycle-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 36px;
    overflow-x: auto;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.pipe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 110px;
    flex-shrink: 0;
    opacity: 0.45;
    transition: var(--transition);
    scroll-snap-align: start;
}

.pipe-step.completed, .pipe-step.active {
    opacity: 1;
}

.pipe-node {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.pipe-step.completed .pipe-node {
    background: #d1fae5;
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.pipe-step.active .pipe-node {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(255, 107, 0, 0.4);
}

.pipe-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.pipe-sub {
    font-size: 0.74rem;
    color: var(--text-dim);
}

.pipe-line {
    flex-grow: 1;
    min-width: 30px;
    height: 3px;
    background: #e2e8f0;
    margin-top: 19px;
    flex-shrink: 0;
}

.pipe-line.completed { background: var(--accent-green); }
.pipe-line.active { background: var(--primary-orange); }

.stage-info-box {
    background: var(--primary-orange-light);
    border-left: 4px solid var(--primary-orange);
    padding: 20px 24px;
}

.s-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.s-progress-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Case Studies */
.case-card {
    padding: 0;
    overflow: hidden;
}

.case-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-img {
    transform: scale(1.05);
}

.case-body {
    padding: 24px;
}

.case-badge {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.case-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.case-tags {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.case-tags span {
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 6px;
    background: #f1f5f9;
    color: var(--text-muted);
    border: 1px solid #e2e8f0;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
}

.contact-left h2 { font-size: 2.2rem; margin-bottom: 14px; }
.contact-method-card { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding: 18px; background: #f8fafc; border-radius: var(--radius-sm); border: 1px solid #e2e8f0; flex-wrap: wrap; }
.c-icon-wrap { width: 46px; height: 46px; border-radius: 12px; background: #ffedd5; color: var(--primary-orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-info { display: flex; flex-direction: column; }
.c-label { font-size: 0.8rem; color: var(--text-dim); }

.email-display-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.email-display-group strong {
    font-family: var(--font-mono);
    color: var(--primary-orange);
    word-break: break-all;
}

/* Footer */
.footer { border-top: 1px solid #0f172a; padding: 44px 0; background: #0f172a; color: #ffffff; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer p { color: #94a3b8; }
.sys-status-link { font-family: var(--font-mono); font-size: 0.82rem; color: #94a3b8; transition: var(--transition); }
.sys-status-link:hover { color: var(--primary-orange); }

/* Success Modal */
.otp-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    z-index: 2500;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
}

.otp-modal-overlay.active { opacity: 1; pointer-events: auto; }

.otp-modal-card {
    max-width: 540px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

.otp-shield-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffedd5;
    display: flex; align-items: center; justify-content: center;
}

.otp-shield-icon.green-icon {
    background: #d1fae5;
}

.otp-close-btn {
    background: none; border: none;
    font-size: 1.8rem; color: var(--text-dim);
    cursor: pointer; line-height: 1;
}

.otp-subtitle {
    font-size: 0.94rem;
    color: var(--text-muted);
}

.submission-summary-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 6px;
}

.s-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.status-badge {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.status-badge.green {
    background: #d1fae5;
    color: #047857;
}

/* Toast Container */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; max-width: calc(100vw - 32px); }
.toast { background: #0f172a; border: 1px solid var(--primary-orange); color: #ffffff; padding: 12px 20px; border-radius: 10px; font-size: 0.9rem; box-shadow: var(--shadow-lg); word-break: break-word; }

/* Responsive */
@media (max-width: 992px) {
    .pro-capability-bar { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title-pro { font-size: 2.8rem; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 24px 16px; }
}

@media (max-width: 600px) {
    .pro-capability-bar { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-title-pro { font-size: 1.95rem; }
    .nav-links { display: none; }
}
