:root {
    /* Colors */
    --bg-main: #0f172a;
    /* Slate 900 */
    --bg-card: #1e293b;
    /* Slate 800 */
    --text-primary: #f8fafc;
    /* Slate 50 */
    --text-secondary: #94a3b8;
    /* Slate 400 */

    --accent-blue: #38bdf8;
    /* Sky 400 */
    --accent-purple: #818cf8;
    /* Indigo 400 */
    --accent-teal: #2dd4bf;
    /* Teal 400 */

    --border-subtle: rgba(255, 255, 255, 0.08);

    --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Spacing & Radius */
    --radius-lg: 16px;
    --radius-md: 8px;
    --container-width: 1200px;

    /* Shadows */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 80px rgba(56, 189, 248, 0.15);
}

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

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

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

/* Layout */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-blue);
    color: #0f172a;
    border: 1px solid var(--accent-blue);
}

.btn-primary:hover {
    background: #7dd3fc;
    border-color: #7dd3fc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

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

.btn-full {
    width: 100%;
}

/* Header */
/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    /* Floating pill header */
    padding: 0 30px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled {
    width: 95%;
    top: 10px;
    background: rgba(15, 23, 42, 0.85);
}

.header-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
    /* Glowing Logo */
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Gap for pill links */
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-nav {
    margin-left: 20px;
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 50px;
    background: white;
    color: #000;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    background: #fff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
}


/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 100px;
    /* Increased top padding */
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: var(--accent-blue);
    filter: blur(250px);
    opacity: 0.12;
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 20%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 650px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    border-radius: 50px;
    /* Pill shape */
}

/* Stats Strip */
.stats-strip {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 40px 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 60px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 6px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--border-subtle), transparent);
}

/* Services */
/* Services */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(56, 189, 248, 0.1) inset;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1);
}

.service-icon-box.blue {
    color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.service-icon-box.purple {
    color: var(--accent-purple);
    background: rgba(129, 140, 248, 0.1);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.2);
}

.service-icon-box.teal {
    color: var(--accent-teal);
    background: rgba(45, 212, 191, 0.1);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.2);
}

.service-icon-box.orange {
    color: #fb923c;
    background: rgba(251, 146, 60, 0.1);
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.2);
}

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

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* About */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.check-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.about-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #172033 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-purple);
    filter: blur(80px);
    opacity: 0.2;
}

.about-card h3 {
    margin-bottom: 16px;
    position: relative;
}

.about-card p {
    color: var(--text-secondary);
    position: relative;
}

/* Contact */
.contact-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.contact-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.method-val {
    font-size: 1.1rem;
    font-weight: 500;
}

.clean-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(15, 23, 42, 0.8);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0;
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 8px;
    max-width: 300px;
}

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

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.9rem;
    width: 100%;
    margin-top: 20px;
    opacity: 0.6;
}

/* Mobile */
@media (max-width: 900px) {

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

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .contact-card {
        padding: 30px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Checker Section */
.checker-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.checker-box {
    background: rgba(30, 41, 59, 0.7);
    /* translucent bg */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Add a subtle glow behind the box */
.checker-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.checker-tabs {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.6);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #fff;
    background: var(--bg-card);
    /* Lighter card background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.tab-btn:hover:not(.active) {
    color: var(--text-primary);
}

.checker-input-group {
    display: flex;
    gap: 0;
    /* Removing gap for seamless look */
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 6px;
    /* Padding for inner elements */
    transition: all 0.3s ease;
}

.checker-input-group:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.checker-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.checker-input-group input:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.checker-input-group .btn {
    border-radius: 12px;
    padding: 12px 32px;
    margin-left: 8px;
}

/* Loader styling remains same but positioned better */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(15, 23, 42, 0.3);
    border-radius: 50%;
    border-top-color: #0f172a;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* Checker Result Redesign */
.checker-result {
    margin-top: 40px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 32px;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

/* Decor gradient blob */
.result-card::after {
    content: '';
    position: absolute;
    right: -20%;
    top: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    filter: blur(120px);
    opacity: 0.1;
    z-index: 0;
}

/* Circular Gauge */
.risk-circle-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.risk-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(var(--score-color) calc(var(--percent) * 1%), rgba(255, 255, 255, 0.05) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: background 1s ease-out;
}

.risk-circle::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--bg-card);
    /* Inner hole */
    border-radius: 50%;
}

.risk-number {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.risk-number span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.risk-max {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.risk-status-text {
    margin-top: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

/* Grid Info */
.result-info-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 1;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.2s;
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.info-box.full-width {
    grid-column: span 2;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

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

.status-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .result-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .result-info-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .info-box.full-width {
        grid-column: span 1;
    }
}

/* Partners */
.partners {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    background: rgba(15, 23, 42, 0.3);
}

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

.partner-item {
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.partner-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partner-item img {
    height: 40px;
    /* Adjust based on logo needs */
    width: auto;
    object-fit: contain;
}

/* Workflow / Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Increased gap */
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

/* Connecting Line */
.process-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-blue) 0%, rgba(56, 189, 248, 0.1) 100%);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
    /* Glowing line */
    z-index: 0;
}

.process-step {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-card), #0f172a);
    border: 1px solid rgba(56, 189, 248, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2), 0 0 0 8px var(--bg-main);
    /* Outer glow + mask */
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.step-card {
    flex: 1;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

/* Card hover glow effect */
.step-card:hover {
    transform: translateY(-4px) translateX(4px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(56, 189, 248, 0.1) inset;
    /* Inner glow */
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
}

.step-card:hover .step-icon {
    background: rgba(56, 189, 248, 0.2);
    color: #fff;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .process-steps {
        padding-left: 40px;
        gap: 30px;
    }

    .process-steps::before {
        left: 19px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .step-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .checker-input-group {
        flex-direction: column;
    }
}