@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #050806;
    /* Deep dark greenish black */
    --bg-secondary: #0D1410;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --accent-primary: #4ADE80;
    /* Bright Green/Mint */
    --accent-secondary: #059669;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

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

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

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }

    .md-hidden {
        display: none;
    }

    .md-block {
        display: block;
    }

    .md-flex-row {
        flex-direction: row;
    }
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.btn-icon-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.btn-icon-danger:hover {
    background: #EF4444;
    color: white;
    transform: scale(1.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.btn-primary {
    position: relative;
    background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
    color: #050806;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 140%;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #52e59e 0%, #22c55e 100%);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.55), 0 6px 16px rgba(0, 200, 140, 0.18);
}

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

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.input-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.input-field {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
}

.section-padding {
    padding: 6rem 0;
}

.accent-text {
    color: var(--accent-primary);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(5, 8, 6, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: white;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: white;
}

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

.small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 1.5rem;
}

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    padding: 2rem 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: -1;
    border-bottom: 1px solid var(--glass-border);
}

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

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: white;
    display: block;
}

.mobile-menu a:hover {
    color: var(--accent-primary);
}

@media (min-width: 768px) {

    .nav-links,
    .nav-actions {
        display: flex;
    }
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 10%, #102e1f 0%, var(--bg-primary) 70%);
    padding: 1rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(13, 20, 16, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    color: white;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.auth-divider span {
    padding: 0 1rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-footer a {
    color: var(--accent-primary);
    font-weight: 500;
    margin-left: 0.25rem;
}

.form-footer a:hover {
    text-decoration: underline;
}

.back-link {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    z-index: 20;
}

.back-link:hover {
    color: white;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 5rem);
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, #102e1f 0%, var(--bg-primary) 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-desc {
    max-width: 600px;
    font-size: 1.125rem;
    opacity: 0.8;
    margin: 0 auto 2rem;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
}

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

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

    .two-col-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.list-custom li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(180deg, #1f422f 0%, #0d1410 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.founder-logo {
    font-family: serif;
    font-size: 1.5rem;
    color: #e0e0e0;
    font-style: italic;
    font-weight: bold;
}

.founder-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Products Section */
.products-wrapper {
    overflow: hidden;
    padding: 2rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.product-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    background: transparent;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
    margin-bottom: 1.5rem;
}

.product-card:hover .product-img {
    transform: translateY(-15px) scale(1.05) rotateZ(5deg);
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.product-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Price Ladder */
.price-ladder-section {
    padding-top: 4rem;
}

.price-ladder-container {
    margin-top: 3rem;
    position: relative;
    padding: 2rem 0;
}

.ladder-line {
    position: absolute;
    top: 55px;
    /* Adjust to align with dots center */
    left: 10%;
    right: 10%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #333 0, #333 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.ladder-points {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ladder-step {
    text-align: center;
    width: 120px;
}

.ladder-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.ladder-dot-wrapper {
    width: 30px;
    height: 30px;
    background: var(--bg-primary);
    /* mask line */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ladder-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    background: #000;
    position: relative;
    transition: all 0.3s ease;
}

.ladder-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.ladder-step:hover .ladder-dot {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary);
}

.extra-charge-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.orders-container {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.order-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;

    /* Smooth Animation Properties */
    opacity: 0;
    /* Start hidden for animation */
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px -10px rgba(74, 222, 128, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.order-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.order-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tracking-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 2rem;
}

.tracking-line-container {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    height: 2px;
    background: #333;
    z-index: 0;
    transform: translateY(-50%);
}

.tracking-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-secondary);
    padding: 0 10px;
}

.step-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    margin-bottom: 0.5rem;
    color: #555;
}

.step-active .step-icon-box {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.step-active .step-label {
    color: white;
}

.past-orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.past-order-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.past-order-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
}

.arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.past-order-card:hover .arrow-btn {
    background: var(--accent-primary);
    color: black;
}

/* Additional Vanilla JS Animation Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Checkout Wizard Styles */
.checkout-container {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.checkout-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 3rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 10px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    z-index: 0;
    transform: translateY(-50%);
}

.step-dot {
    width: 35px;
    height: 35px;
    background: var(--bg-secondary);
    border: 2px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #555;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.step-dot.active {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
    transform: scale(1.1);
}

.step-dot.completed {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: black;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.select-field {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
}

.select-field option {
    background: var(--bg-secondary);
    color: white;
}

textarea.input-field {
    resize: vertical;
    min-height: 100px;
}

/* Foot Scan Feature Styles */
.scan-container {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.scan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .scan-grid {
        grid-template-columns: 4fr 5fr;
    }
}

.instruction-card,
.camera-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.instruction-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-badge {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: black;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.camera-box {
    width: 100%;
    height: 350px;
    background: black;
    border-radius: 1rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #444;
}

.camera-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    /* Mirror effect */
}

.camera-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    text-align: center;
}

.recording-dot {
    width: 12px;
    height: 12px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.hiw-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.hiw-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.upload-area {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
}

/* How It Works Steps */
.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-primary);
    line-height: 1;
    min-width: 60px;
}