:root {
    --primary: #ff7a00;
    --primary-dark: #e86800;
    --primary-light: #ff9a2f;

    --secondary: #0a2342;
    --secondary-light: #163b6b;
    --secondary-dark: #07192f;

    --accent: #ffffff;

    --dark: #0b1220;
    --dark-2: #111827;
    --dark-3: #172033;

    --surface: #121a2b;
    --surface-2: #182235;
    --surface-3: #1e2a40;

    --gray-900: #0b1220;
    --gray-800: #111827;
    --gray-700: #1f2937;
    --gray-600: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;

    --gradient-primary: linear-gradient(135deg, #ff7a00 0%, #ff9a2f 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(255, 122, 0, 0.14) 0%, rgba(22, 59, 107, 0.18) 100%);
    --gradient-dark: linear-gradient(135deg, #0a2342 0%, #163b6b 100%);
    --gradient-hero:
        radial-gradient(circle at 20% 20%, rgba(255, 122, 0, 0.16), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(10, 35, 66, 0.22), transparent 32%),
        linear-gradient(180deg, #0b1220 0%, #0f172a 55%, #111827 100%);
    --gradient-grid:
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);

    --container-max: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 64px;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 0 1px rgba(255, 122, 0, 0.08), 0 0 40px rgba(255, 122, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--dark);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--gray-400);
}

strong {
    color: var(--white);
}

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

.section {
    padding: var(--section-padding) 0;
}

.alt-bg {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
}

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

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

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.08rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: var(--accent);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 122, 0, 0.28);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 122, 0, 0.35);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: rgba(255, 122, 0, 0.08);
    color: var(--white);
}

.btn-nav {
    background: rgba(255, 122, 0, 0.08);
    border: 1px solid rgba(255, 122, 0, 0.18);
    color: var(--white);
    padding: 10px 18px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: rgba(255, 122, 0, 0.14);
    border-color: rgba(255, 122, 0, 0.32);
}

.btn-large {
    padding: 18px 34px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(11, 18, 32, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-normal);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.logo-rev {
    color: var(--white);
}

.logo-shine {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-400);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
    align-items: center;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: var(--gradient-grid);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
    opacity: 0.55;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 320px;
    height: 320px;
    background: rgba(255, 122, 0, 0.16);
    top: 90px;
    left: -60px;
}

.hero-orb-2 {
    width: 380px;
    height: 380px;
    background: rgba(59, 130, 246, 0.14);
    right: -100px;
    top: 160px;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    background: rgba(18, 26, 43, 0.8);
    color: var(--gray-200);
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 14px rgba(255, 122, 0, 0.6);
}

.hero-content h1 {
    margin-bottom: 22px;
    max-width: 720px;
}

.hero-subtitle {
    font-size: 1.14rem;
    line-height: 1.8;
    color: var(--gray-400);
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 760px;
}

.metric-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(18, 26, 43, 0.92), rgba(11, 18, 32, 0.92));
    box-shadow: var(--shadow-sm);
}

.metric-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.metric-card strong {
    font-size: 0.98rem;
    color: var(--white);
    line-height: 1.4;
}

.hero-visual {
    position: relative;
}

.dashboard-card {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(18, 26, 43, 0.98) 0%, rgba(11, 18, 32, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    overflow: hidden;
}

.dashboard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.07), transparent 35%),
        linear-gradient(315deg, rgba(59, 130, 246, 0.08), transparent 40%);
    pointer-events: none;
}

.dashboard-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-label {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.dashboard-top h3 {
    font-size: 1.35rem;
    margin: 0;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.18);
    white-space: nowrap;
}

.chart-card {
    position: relative;
    z-index: 1;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: rgba(11, 18, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--gray-300);
    font-size: 0.92rem;
}

.chart-value {
    color: var(--primary-light);
    font-weight: 700;
}

.chart-area {
    position: relative;
    height: 220px;
    border-radius: 16px;
    padding: 18px;
    background:
        linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
    background-size: 100% 25%, 12.5% 100%;
    overflow: hidden;
}

.chart-bars {
    position: absolute;
    inset: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.chart-bars span {
    flex: 1;
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(180deg, rgba(255, 154, 47, 0.95), rgba(255, 122, 0, 0.85));
    box-shadow: 0 0 18px rgba(255, 122, 0, 0.1);
    opacity: 0.88;
}

.chart-line {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    top: 18px;
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.12), rgba(59, 130, 246, 0.18));
    clip-path: polygon(0% 76%, 12% 70%, 24% 72%, 36% 58%, 48% 54%, 60% 44%, 72% 36%, 84% 22%, 100% 16%, 100% 100%, 0% 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.dashboard-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.dashboard-stat {
    padding: 16px;
    border-radius: 18px;
    background: rgba(18, 26, 43, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-kicker {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.dashboard-stat strong {
    color: var(--white);
    font-size: 0.95rem;
}

.flow-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(11, 18, 32, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-node {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(24, 34, 53, 0.8);
    color: var(--gray-300);
    font-size: 0.88rem;
    font-weight: 600;
}

.flow-node-active {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(59, 130, 246, 0.14));
    color: var(--white);
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.flow-arrow {
    color: var(--primary-light);
    font-weight: 700;
    opacity: 0.8;
}

.page-hero {
    padding: 180px 0 80px;
    text-align: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 122, 0, 0.08), transparent 25%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.08), transparent 25%),
        linear-gradient(180deg, #0b1220 0%, #111827 100%);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.focus-card {
    padding: 30px 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.focus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.22);
    box-shadow: var(--shadow-md);
}

.focus-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary-light);
}

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

.focus-card h3 {
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 36px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.22);
    box-shadow: var(--shadow-md);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-light);
}

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

.service-card > p {
    margin-bottom: 24px;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-light);
    background: rgba(255, 122, 0, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 122, 0, 0.12);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.industry-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.22);
}

.industry-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--white);
}

.industry-icon svg {
    width: 28px;
    height: 28px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
    margin-bottom: 16px;
}

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

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

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

.flow-box {
    padding: 30px 40px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    min-width: 180px;
    box-shadow: var(--shadow-sm);
}

.flow-box.revshine-box {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(22, 59, 107, 0.4));
    border-color: rgba(255, 122, 0, 0.2);
}

.flow-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--primary-light);
}

.flow-box.revshine-box .flow-icon {
    color: var(--white);
}

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

.flow-box span {
    display: block;
    font-weight: 600;
    color: var(--white);
}

.flow-box small {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.flow-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--primary-light);
}

.flow-description {
    text-align: center;
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-content.reverse {
    direction: rtl;
}

.solution-content.reverse > * {
    direction: ltr;
}

.solution-text h2 {
    margin-bottom: 20px;
}

.solution-text > p {
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.solution-features {
    margin-bottom: 32px;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-300);
}

.solution-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-light);
    margin-top: 2px;
}

.solution-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    padding: 50px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.stat-display {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.code-preview {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--gray-300);
}

.code-keyword {
    color: #60a5fa;
}

.code-string {
    color: #ff9a2f;
}

.code-number {
    color: #f59e0b;
}

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

.mini-chart {
    width: 220px;
    height: 110px;
    margin-bottom: 16px;
    position: relative;
    background:
        linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
    background-size: 100% 25%, 20% 100%;
    border-radius: 16px;
}

.chart-line-mini {
    position: absolute;
    inset: 12px;
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.12), rgba(59, 130, 246, 0.16));
    clip-path: polygon(0% 78%, 18% 68%, 34% 72%, 52% 52%, 70% 42%, 84% 28%, 100% 18%, 100% 100%, 0% 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.16);
}

.chart-label {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content h2 {
    margin-bottom: 24px;
}

.mission-content > p {
    font-size: 1.08rem;
    margin-bottom: 20px;
}

.mission-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 122, 0, 0.08);
    border: 1px solid rgba(255, 122, 0, 0.12);
    border-radius: var(--radius-lg);
    margin-top: 32px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--primary-light);
}

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

.highlight-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.highlight-text p {
    color: var(--gray-300);
}

.about-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.graphic-element {
    width: 120px;
    height: 120px;
    color: var(--primary-light);
}

.graphic-element svg {
    width: 100%;
    height: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary-light);
}

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

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

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.expertise-item {
    padding: 32px;
    background: var(--surface);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
}

.expertise-item h3 {
    margin-bottom: 8px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.partner-card {
    padding: 40px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.22);
}

.partner-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    color: var(--white);
}

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

.partner-card h3 {
    margin-bottom: 12px;
}

.partner-card > p {
    margin-bottom: 24px;
}

.partner-benefits {
    margin-bottom: 24px;
}

.partner-benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--gray-300);
}

.partner-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.benefit-item h3 {
    margin-bottom: 8px;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.step-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 200px;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 16px;
}

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

.step-arrow {
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--white);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 122, 0, 0.35);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-info-card,
.contact-cta-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3,
.contact-cta-card h3 {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-light);
    flex-shrink: 0;
}

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

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-text a {
    color: var(--white);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-light);
}

.contact-cta-card p {
    margin-bottom: 24px;
}

.response-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.response-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
}

.cta-section {
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 122, 0, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.footer {
    padding: 80px 0 40px;
    background: #080e18;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

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

.footer-links a,
.footer-contact a {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

@media (max-width: 1080px) {
    .hero .container,
    .solution-content,
    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content,
    .hero-subtitle {
        max-width: 100%;
    }

    .solution-content.reverse {
        direction: ltr;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(11, 18, 32, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 20px 24px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .btn-nav {
        display: none;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 72px;
    }

    .hero-content h1 {
        font-size: clamp(2.3rem, 9vw, 3.4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-metrics,
    .dashboard-stats,
    .services-grid,
    .partner-grid,
    .benefits-grid,
    .features-grid,
    .industries-grid,
    .focus-grid,
    .values-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-top,
    .chart-header,
    .flow-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .flow-node,
    .flow-arrow {
        width: 100%;
        text-align: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .dashboard-card,
    .visual-card,
    .service-card,
    .partner-card,
    .industry-card,
    .contact-info-card,
    .contact-cta-card {
        padding: 24px;
    }

    .chart-area {
        height: 180px;
    }

    .flow-diagram {
        flex-direction: column;
    }

    .flow-diagram .flow-arrow {
        transform: rotate(90deg);
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

    .hero-badge {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .page-hero {
        padding: 150px 0 70px;
    }
}
