body {
  background-color: rgb(var(--vp-color-strategy-paper-rgb));
  color: rgb(var(--vp-color-strategy-navy-rgb));
  -webkit-font-smoothing: antialiased;
}
section { scroll-margin-top: 110px; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--vp-color-slate-100); }
::-webkit-scrollbar-thumb { background: var(--vp-color-slate-400); border-radius: 4px; }

/* Interactive Elements */
.interactive-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--vp-color-slate-200);
}
.interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgb(var(--vp-color-strategy-navy-rgb) / 0.08);
  border-color: rgb(var(--vp-color-strategy-brand-600-rgb));
}

.nav-scrolled {
  background: rgb(var(--vp-color-white-rgb) / 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px -10px rgb(var(--vp-color-black-rgb) / 0.05);
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Step Button Active State */
.step-btn {
  border-left: 3px solid transparent;
  color: var(--vp-color-slate-500);
  transition: all 0.3s ease;
}
.step-btn.active {
  border-left: 3px solid rgb(var(--vp-color-strategy-brand-600-rgb));
  color: rgb(var(--vp-color-white-rgb));
  background: linear-gradient(90deg, rgb(var(--vp-color-strategy-brand-600-rgb) / 0.15) 0%, transparent 100%);
  padding-left: 1.5rem;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.animate-marquee { --vp-marquee-duration: 40s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }    }
    .contact-widget-shell {
        --cw-bg: transparent;
        --cw-border: rgb(var(--vp-color-slate-400-rgb) / 0.35);
        --cw-text: inherit;
        --cw-placeholder: rgb(var(--vp-color-slate-400-rgb) / 0.85);
        --cw-focus: rgb(var(--vp-color-strategy-brand-500-rgb) / 0.8);
        --cw-button-bg: currentColor;
        --cw-button-text: rgb(var(--vp-color-strategy-navy-rgb));
    }

    .contact-widget-shell--light {
        --cw-bg: rgb(var(--vp-color-white-rgb));
        --cw-border: rgb(var(--vp-color-slate-400-rgb) / 0.45);
        --cw-text: var(--vp-color-slate-900);
        --cw-placeholder: rgb(var(--vp-color-slate-500-rgb) / 0.9);
        --cw-focus: rgb(var(--vp-color-strategy-brand-800-rgb) / 0.7);
        --cw-button-bg: rgb(var(--vp-color-slate-900-rgb));
        --cw-button-text: rgb(var(--vp-color-white-rgb));
    }

    .contact-widget-shell--dark {
        --cw-bg: rgb(var(--vp-color-slate-900-rgb) / 0.45);
        --cw-border: rgb(var(--vp-color-white-rgb) / 0.2);
        --cw-text: var(--vp-color-slate-50);
        --cw-placeholder: rgb(var(--vp-color-slate-300-rgb) / 0.8);
        --cw-focus: rgb(var(--vp-color-white-rgb) / 0.45);
        --cw-button-bg: rgb(var(--vp-color-white-rgb));
        --cw-button-text: rgb(var(--vp-color-strategy-navy-rgb));
    }

    .contact-widget-shell form {
        display: grid;
        gap: 1rem;
    }

    .contact-widget-shell label {
        display: block;
        margin-bottom: 0.45rem;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--cw-text);
    }
    .contact-widget-shell input:not([type="checkbox"]):not([type="radio"]),
    .contact-widget-shell textarea,
    .contact-widget-shell select {
        width: 100%;
        border: 1px solid var(--cw-border) !important;
        border-bottom: 1px solid var(--cw-border) !important;
        border-radius: 0.75rem !important;
        background: var(--cw-bg) !important;
        color: var(--cw-text) !important;
        padding: 0.8rem 1rem !important;
        line-height: 1.4;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .contact-widget-shell input::placeholder,
    .contact-widget-shell textarea::placeholder,
    .contact-widget-shell select::placeholder {
        color: var(--cw-placeholder);
    }

    .contact-widget-shell input:focus,
    .contact-widget-shell textarea:focus,
    .contact-widget-shell select:focus {
        outline: none;
        border-color: var(--cw-focus) !important;
        box-shadow: 0 0 0 2px rgb(var(--vp-color-slate-400-rgb) / 0.18);
    }

    .contact-widget-shell textarea {
        min-height: 7.5rem;
        resize: vertical;
    }

    .contact-widget-shell button,
    .contact-widget-shell input[type="submit"] {
        border-radius: 0.9rem;
    }

    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info-slot,
    .contact-form-slot {
        flex: 1 1 0%;
        min-width: 0;
    }

    @media (min-width: 1024px) {
        .contact-layout {
            flex-direction: row;
            gap: 3rem;
            align-items: flex-start;
        }
    }

    .contact-form-slot[hidden],
    .contact-form-slot.is-hidden,
    .contact-form-slot.hidden {
        display: none !important;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .contact-form > div { width: 100%; }
    .contact-form label {
        display: block;
        margin-bottom: 0.45rem;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--vp-color-slate-500);
    }
    .contact-form input[name="name"],
    .contact-form input[name="email"],
    .contact-form textarea[name="message"] {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid rgb(var(--vp-color-slate-300-rgb));
        border-radius: 0.75rem;
        background: rgb(var(--vp-color-strategy-paper-rgb));
        color: rgb(var(--vp-color-strategy-navy-rgb));
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }
    .contact-form input[name="name"]::placeholder,
    .contact-form input[name="email"]::placeholder,
    .contact-form textarea[name="message"]::placeholder { color: rgb(var(--vp-color-slate-400-rgb)); }
    .contact-form input[name="name"]:focus,
    .contact-form input[name="email"]:focus,
    .contact-form textarea[name="message"]:focus {
        border-color: rgb(var(--vp-color-strategy-brand-500-rgb));
        background: rgb(var(--vp-color-white-rgb));
        box-shadow: 0 0 0 2px rgb(var(--vp-color-strategy-brand-500-rgb) / 0.16);
    }
    .contact-form textarea[name="message"] { min-height: 7rem; resize: vertical; }
    .contact-form button[type="submit"] {
        width: 100%;
        padding: 1rem;
        border: 0;
        border-radius: 0.75rem;
        background: rgb(var(--vp-color-strategy-brand-500-rgb));
        color: rgb(var(--vp-color-white-rgb));
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    .contact-form button[type="submit"]:hover { background: rgb(var(--vp-color-strategy-navy-rgb)); }
