        /* ============================================
           RESET & VARIABLES
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #FB5A12;
            --orange-hover: #FF6E2E;
            --orange-active: #E04E0E;
            --orange-glow: rgba(251, 90, 18, 0.12);
            --orange-subtle: rgba(251, 90, 18, 0.05);
            --amber: #F59E0B;
            --black: #0C0A08;
            --charcoal: #1A1714;
            --dark-gray: #2D2924;
            --mid-gray: #78736C;
            --border-gray: #E3DFD8;
            --light-gray: #F3F1EC;
            --off-white: #FAF9F5;
            --white: #FFFFFF;
            --error: #E5484D;
            --error-bg: rgba(229, 72, 77, 0.06);
            --success: #30A46C;
            --success-bg: rgba(48, 164, 108, 0.06);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --shadow-sm: 0 1px 3px rgba(12, 10, 8, 0.07), 0 1px 2px rgba(12, 10, 8, 0.04);
            --shadow-md: 0 4px 16px rgba(12, 10, 8, 0.07), 0 2px 6px rgba(12, 10, 8, 0.04);
            --shadow-lg: 0 12px 40px rgba(12, 10, 8, 0.1), 0 4px 12px rgba(12, 10, 8, 0.05);
            --shadow-orange: 0 4px 24px rgba(251, 90, 18, 0.3);
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

        body {
            font-family: var(--font-body);
            color: var(--dark-gray);
            background: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ============================================
           NAVBAR
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 64px;
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(24px, 5vw, 60px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .navbar__brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .navbar__logo {
            height: 34px;
            width: auto;
            display: block;
        }

        .navbar__tag {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            font-weight: 500;
            color: rgba(255,255,255,0.35);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: none;
        }

        @media (min-width: 640px) {
            .navbar__tag { display: block; }
        }

        /* ============================================
           HERO
           ============================================ */
        .hero {
            position: relative;
            padding: 112px clamp(24px, 5vw, 60px) 52px;
            background: var(--black);
            overflow: hidden;
            min-height: 250px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 60% at 80% 8%, rgba(251, 90, 18, 0.17) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 18% 90%, rgba(245, 158, 11, 0.08) 0%, transparent 58%);
        }

        .hero__stripes {
            position: absolute;
            top: -10%;
            right: 4%;
            width: 32%;
            height: 112%;
            opacity: 0.05;
            transform: rotate(-14deg);
            background: repeating-linear-gradient(
                90deg,
                var(--orange) 0px,
                var(--orange) 2px,
                transparent 2px,
                transparent 24px
            );
            pointer-events: none;
        }

        .hero__angle {
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 34px;
            background: var(--off-white);
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
        }

        .hero__content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-mono);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(16px);
            animation: fadeUp 0.6s ease forwards 0.2s;
        }

        .hero__eyebrow::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--orange);
            border-radius: 1px;
        }

        .hero__title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(1.9rem, 4.6vw, 3rem);
            line-height: 1.08;
            color: var(--white);
            margin-bottom: 12px;
            max-width: 620px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.35s;
        }

        .hero__subtitle {
            font-size: 0.98rem;
            font-weight: 400;
            color: rgba(255,255,255,0.64);
            line-height: 1.6;
            max-width: 620px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.5s;
        }

        /* ============================================
           FORM CONTAINER
           ============================================ */
        .form-wrapper {
            position: relative;
            z-index: 10;
            max-width: 1240px;
            margin: -20px auto 60px;
            padding: 0 clamp(16px, 4vw, 40px);
            display: grid;
            grid-template-columns: minmax(242px, 280px) minmax(0, 1fr);
            gap: 18px;
            align-items: start;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.7s ease forwards 0.6s;
        }

        .experience-panel {
            position: sticky;
            top: 82px;
            z-index: 15;
            padding: 18px 16px 16px;
            border-radius: 18px;
            background:
                linear-gradient(180deg, #1c1915 0%, #100d0a 100%);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 12px 28px rgba(12, 10, 8, 0.24);
        }

        .experience-panel__top {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            align-items: start;
        }

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

        .experience-stat__label {
            font-family: var(--font-mono);
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.58);
        }

        .experience-stat strong {
            font-family: var(--font-display);
            font-size: 1.22rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
        }

        .experience-progress {
            height: 7px;
            border-radius: 999px;
            background: rgba(255,255,255,0.16);
            overflow: hidden;
        }

        .experience-progress__fill {
            display: block;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--orange) 0%, var(--orange-hover) 100%);
            transition: width 0.3s ease;
        }

        .experience-actions {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: stretch;
        }

        .experience-btn {
            height: 38px;
            width: 100%;
            padding: 0 14px;
            font-family: var(--font-display);
            font-size: 0.76rem;
            font-weight: 600;
            color: var(--white);
            border: 1px solid transparent;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--orange-active), var(--orange));
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .experience-btn:hover {
            background: linear-gradient(90deg, #cf470c, var(--orange-hover));
            box-shadow: 0 8px 18px rgba(251, 90, 18, 0.24);
        }

        .experience-btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

        .draft-status {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.3;
            text-align: left;
        }

        .experience-sections {
            margin-top: 14px;
            display: grid;
            gap: 4px;
            border-left: 1px solid rgba(255,255,255,0.14);
            padding-left: 12px;
        }

        .experience-chip {
            min-height: 34px;
            border: none;
            border-radius: 10px;
            padding: 8px 8px 8px 16px;
            background: transparent;
            color: rgba(255,255,255,0.72);
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: normal;
            text-align: left;
            position: relative;
            line-height: 1.2;
        }

        .experience-chip::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.42);
            background: #191612;
            left: -17px;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.2s ease;
        }

        .experience-chip:hover {
            color: var(--white);
            background: rgba(255,255,255,0.07);
        }

        .experience-chip.is-active {
            color: var(--white);
            background: rgba(251, 90, 18, 0.2);
        }

        .experience-chip.is-active::before {
            border-color: var(--orange);
            background: var(--orange);
        }

        .experience-chip.is-complete {
            color: #DDF6EA;
            background: rgba(48, 164, 108, 0.22);
        }

        .experience-chip.is-complete::before {
            border-color: var(--success);
            background: var(--success);
        }

        .experience-chip.is-required::after {
            content: '*';
            margin-left: 4px;
            color: var(--orange);
        }

        .form-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            border: 1px solid rgba(12, 10, 8, 0.05);
        }

        /* ============================================
           FORM SECTIONS
           ============================================ */
        .form-section {
            position: relative;
            padding: 36px clamp(24px, 5vw, 44px);
            transition: background 0.25s ease, box-shadow 0.25s ease;
        }

        .form-section + .form-section {
            border-top: 1px solid var(--border-gray);
        }

        .form-section--active {
            background:
                linear-gradient(90deg, rgba(251, 90, 18, 0.06) 0%, rgba(251, 90, 18, 0.015) 38%, transparent 100%);
        }

        .form-section--done .section-number {
            color: var(--success);
            background: var(--success-bg);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
        }

        .section-header__left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .section-number {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            font-weight: 600;
            color: var(--orange);
            background: var(--orange-glow);
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0;
        }

        .section-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--black);
            letter-spacing: -0.01em;
        }

        .section-badge {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--mid-gray);
            letter-spacing: 0.5px;
        }

        /* ============================================
           FORM FIELDS
           ============================================ */
        .field-grid {
            display: grid;
            gap: 22px;
        }

        .field-row {
            display: grid;
            gap: 22px;
        }

        @media (min-width: 580px) {
            .field-row--two {
                grid-template-columns: 1fr 1fr;
            }
        }

        .field {
            position: relative;
        }

        .field__label {
            display: block;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
            letter-spacing: 0.01em;
        }

        .field__label .required {
            color: var(--orange);
            margin-left: 2px;
        }

        .field__hint {
            display: block;
            font-size: 0.72rem;
            font-weight: 400;
            color: var(--mid-gray);
            margin-top: 2px;
        }

        .field__input {
            width: 100%;
            height: 54px;
            padding: 0 18px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--black);
            background: var(--white);
            border: 2px solid var(--border-gray);
            border-radius: var(--radius-md);
            outline: none;
            transition: all 0.2s ease;
        }

        .field__input::placeholder {
            color: #AAA59D;
            font-weight: 400;
        }

        .field__input:hover {
            border-color: #B8B3AB;
            background: var(--white);
        }

        .field__input:focus {
            background: var(--white);
            border-color: var(--orange);
            box-shadow: 0 0 0 4px var(--orange-glow);
        }

        .field__input--error {
            border-color: var(--error) !important;
            background: var(--error-bg) !important;
            box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.08) !important;
        }

        .field__error {
            display: none;
            font-size: 0.74rem;
            font-weight: 500;
            color: var(--error);
            margin-top: 6px;
            padding-left: 2px;
        }

        .field__error--visible {
            display: block;
            animation: shake 0.3s ease;
        }

        select.field__input {
            appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E6E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .multi-select {
            position: relative;
        }

        .multi-select__summary {
            list-style: none;
            width: 100%;
            min-height: 54px;
            padding: 14px 44px 14px 18px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--black);
            background: var(--white);
            border: 2px solid var(--border-gray);
            border-radius: var(--radius-md);
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            line-height: 1.35;
        }

        .multi-select__summary::-webkit-details-marker {
            display: none;
        }

        .multi-select__summary::after {
            content: '';
            position: absolute;
            right: 16px;
            top: 50%;
            width: 12px;
            height: 8px;
            transform: translateY(-50%);
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E6E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            transition: transform 0.2s ease;
        }

        .multi-select__summary.is-placeholder {
            color: #AAA59D;
            font-weight: 400;
        }

        .multi-select__summary:hover {
            border-color: #B8B3AB;
        }

        .multi-select[open] .multi-select__summary {
            border-color: var(--orange);
            box-shadow: 0 0 0 4px var(--orange-glow);
        }

        .multi-select[open] .multi-select__summary::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .multi-select__menu {
            margin-top: 8px;
            background: var(--white);
            border: 1.5px solid var(--border-gray);
            border-radius: var(--radius-md);
            padding: 8px;
            max-height: 220px;
            overflow-y: auto;
            display: grid;
            gap: 4px;
        }

        .multi-select__option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 10px;
            border-radius: var(--radius-sm);
            font-size: 0.86rem;
            color: var(--dark-gray);
            cursor: pointer;
            transition: background 0.15s ease;
        }

        .multi-select__option:hover {
            background: var(--off-white);
        }

        .multi-select__option input[type="checkbox"] {
            accent-color: var(--orange);
            width: 16px;
            height: 16px;
            margin: 0;
            flex-shrink: 0;
        }

        .field__input--file {
            height: auto;
            min-height: 54px;
            padding: 11px 12px;
            line-height: 1.3;
        }

        .field__input--file::file-selector-button {
            margin-right: 10px;
            padding: 7px 11px;
            border: 1px solid rgba(251, 90, 18, 0.25);
            border-radius: var(--radius-sm);
            font-family: var(--font-display);
            font-size: 0.74rem;
            font-weight: 600;
            color: var(--orange);
            background: rgba(251, 90, 18, 0.08);
            cursor: pointer;
        }

        .logo-preview {
            margin-top: 12px;
            display: flex;
            gap: 12px;
            align-items: center;
            background: var(--off-white);
            border: 1px solid var(--border-gray);
            border-radius: var(--radius-md);
            padding: 10px 12px;
        }

        .logo-preview__image {
            width: 54px;
            height: 54px;
            object-fit: contain;
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: var(--radius-sm);
            padding: 6px;
            flex-shrink: 0;
        }

        .logo-preview__meta {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }

        .logo-preview__name {
            font-size: 0.75rem;
            color: var(--dark-gray);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 260px;
        }

        .logo-preview__remove {
            width: fit-content;
            border: none;
            background: transparent;
            color: var(--error);
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
        }

        /* ============================================
           TOGGLE SWITCHES
           ============================================ */
        .toggle-group {
            background: var(--off-white);
            border: 1.5px solid var(--border-gray);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .toggle-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            gap: 16px;
        }

        .toggle-row + .toggle-row {
            border-top: 1px solid var(--border-gray);
        }

        .toggle-row__left {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }

        .toggle-row__label {
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--black);
        }

        .toggle-row__hint {
            font-size: 0.74rem;
            color: var(--mid-gray);
            line-height: 1.4;
        }

        .toggle {
            position: relative;
            width: 48px;
            height: 28px;
            flex-shrink: 0;
        }

        .toggle input {
            opacity: 0;
            width: 0;
            height: 0;
            position: absolute;
        }

        .toggle__track {
            position: absolute;
            inset: 0;
            background: #D5D1CB;
            border-radius: 14px;
            cursor: pointer;
            transition: background 0.25s ease;
        }

        .toggle__track::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: 0 1px 4px rgba(12, 10, 8, 0.15);
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .toggle input:checked + .toggle__track {
            background: var(--orange);
        }

        .toggle input:checked + .toggle__track::after {
            transform: translateX(20px);
        }

        .toggle input:focus-visible + .toggle__track {
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

        /* Conditional reveal */
        .conditional-field {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
            padding: 0 20px;
        }

        .conditional-field--visible {
            max-height: 120px;
            opacity: 1;
            padding: 0 20px 18px;
        }

        .conditional-field--stacked.conditional-field--visible {
            max-height: 1600px;
            padding: 0 20px 18px;
        }

        .depot-list {
            display: grid;
            gap: 10px;
        }

        .depot-item {
            border: 1px solid var(--border-gray);
            border-radius: var(--radius-md);
            background: var(--white);
            padding: 12px;
        }

        .depot-item__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 8px;
        }

        .depot-item__title {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: var(--mid-gray);
            font-weight: 600;
        }

        .depot-item__remove {
            border: 1px solid rgba(229, 72, 77, 0.25);
            background: rgba(229, 72, 77, 0.08);
            color: var(--error);
            border-radius: 999px;
            padding: 4px 10px;
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
        }

        .depot-item__remove:hover {
            background: rgba(229, 72, 77, 0.14);
        }

        .depot-add {
            margin-top: 10px;
        }

        .depot-add__btn {
            height: 34px;
            border: 1px dashed rgba(251, 90, 18, 0.45);
            border-radius: 999px;
            background: rgba(251, 90, 18, 0.08);
            color: var(--orange);
            font-family: var(--font-display);
            font-size: 0.76rem;
            font-weight: 600;
            padding: 0 14px;
            cursor: pointer;
        }

        .depot-add__btn:hover {
            background: rgba(251, 90, 18, 0.14);
        }

        /* ============================================
           CHECKBOX CARDS
           ============================================ */
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
        }

        .checkbox-card {
            position: relative;
        }

        .checkbox-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .checkbox-card__label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            background: var(--white);
            border: 2px solid var(--border-gray);
            border-radius: var(--radius-md);
            cursor: pointer;
            font-size: 0.86rem;
            font-weight: 500;
            color: var(--dark-gray);
            transition: all 0.2s ease;
            user-select: none;
        }

        .checkbox-card__label:hover {
            border-color: #B8B3AB;
            background: var(--off-white);
        }

        .checkbox-card__check {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border-gray);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }

        .checkbox-card__check svg {
            width: 12px;
            height: 12px;
            stroke: white;
            stroke-width: 2.5;
            fill: none;
            opacity: 0;
            transition: opacity 0.15s ease;
        }

        .checkbox-card input:checked + .checkbox-card__label {
            border-color: var(--orange);
            background: rgba(251, 90, 18, 0.04);
        }

        .checkbox-card input:checked + .checkbox-card__label .checkbox-card__check {
            background: var(--orange);
            border-color: var(--orange);
        }

        .checkbox-card input:checked + .checkbox-card__label .checkbox-card__check svg {
            opacity: 1;
        }

        .checkbox-card input:disabled + .checkbox-card__label {
            opacity: 0.5;
            cursor: not-allowed;
            background: var(--light-gray);
        }

        .checkbox-card input:disabled:checked + .checkbox-card__label {
            opacity: 1;
        }

        /* ============================================
           RADIO CARDS
           ============================================ */
        .radio-group {
            display: grid;
            gap: 10px;
        }

        @media (min-width: 580px) {
            .radio-group--inline {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .radio-card {
            position: relative;
        }

        .radio-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .radio-card__label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 18px;
            background: var(--white);
            border: 2px solid var(--border-gray);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
            height: 100%;
        }

        .radio-card__label:hover {
            border-color: #B8B3AB;
        }

        .radio-card__dot {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
            transition: all 0.2s ease;
        }

        .radio-card__dot::after {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--orange);
            transform: scale(0);
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .radio-card input:checked + .radio-card__label {
            border-color: var(--orange);
            background: rgba(251, 90, 18, 0.04);
        }

        .radio-card input:checked + .radio-card__label .radio-card__dot {
            border-color: var(--orange);
        }

        .radio-card input:checked + .radio-card__label .radio-card__dot::after {
            transform: scale(1);
        }

        .radio-card__text {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .radio-card__title {
            font-size: 0.86rem;
            font-weight: 600;
            color: var(--black);
        }

        .radio-card__desc {
            font-size: 0.74rem;
            color: var(--mid-gray);
            line-height: 1.4;
        }

        /* ============================================
           PRODUCT RANGE
           ============================================ */
        .product-group {
            margin-bottom: 22px;
        }

        .product-group:last-child {
            margin-bottom: 0;
        }

        .product-group__title {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.78rem;
            color: var(--mid-gray);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 10px;
            padding-left: 2px;
        }

        /* ============================================
           OPENING HOURS
           ============================================ */
        .hours-grid {
            display: flex;
            flex-direction: column;
            background: var(--off-white);
            border: 1.5px solid var(--border-gray);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .hours-grid--error {
            border-color: var(--error);
            box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.08);
        }

        .hours-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 20px;
        }

        .hours-row + .hours-row {
            border-top: 1px solid var(--border-gray);
        }

        .hours-row__day {
            width: 40px;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--black);
            flex-shrink: 0;
            font-family: var(--font-mono);
            letter-spacing: 0.3px;
        }

        .hours-row__toggle {
            flex-shrink: 0;
        }

        .hours-row__times {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            transition: opacity 0.25s ease;
        }

        .hours-row--closed .hours-row__times {
            display: none;
        }

        .hours-row__time-input {
            height: 38px;
            padding: 0 10px;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--black);
            background: var(--white);
            border: 1.5px solid var(--border-gray);
            border-radius: var(--radius-sm);
            outline: none;
            transition: border-color 0.2s ease;
            width: 100px;
        }

        .hours-row__time-input:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

        .hours-row__sep {
            font-size: 0.8rem;
            color: var(--mid-gray);
            font-weight: 600;
        }

        .hours-row__closed-label {
            font-size: 0.82rem;
            color: var(--mid-gray);
            font-style: italic;
            display: none;
        }

        .hours-row--closed .hours-row__closed-label {
            display: block;
        }

        .hours-preset {
            display: flex;
            gap: 8px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .hours-preset__btn {
            height: 32px;
            padding: 0 14px;
            font-family: var(--font-body);
            font-size: 0.76rem;
            font-weight: 600;
            color: var(--mid-gray);
            background: var(--white);
            border: 1.5px solid var(--border-gray);
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .hours-preset__btn:hover {
            color: var(--orange);
            border-color: var(--orange);
            background: rgba(251, 90, 18, 0.04);
        }

        .hours-error {
            display: none;
            font-size: 0.74rem;
            font-weight: 500;
            color: var(--error);
            margin-top: 10px;
            padding-left: 2px;
        }

        .hours-error--visible {
            display: block;
            animation: shake 0.3s ease;
        }

        /* Subsection labels */
        .subsection-label {
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.86rem;
            color: var(--black);
            margin-bottom: 12px;
        }

        .subsection-hint {
            font-size: 0.74rem;
            color: var(--mid-gray);
            margin-top: -8px;
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .product-tools {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin: 0 0 12px;
        }

        .product-tools__btn {
            height: 32px;
            padding: 0 12px;
            border: 1.5px solid var(--border-gray);
            border-radius: 999px;
            background: var(--white);
            font-family: var(--font-body);
            font-size: 0.74rem;
            font-weight: 600;
            color: var(--dark-gray);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .product-tools__btn:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(251, 90, 18, 0.06);
        }

        .product-tools__btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            border-style: solid;
        }

        .product-tools__search {
            flex: 1;
            min-width: 220px;
            height: 34px;
            padding: 0 12px;
            border: 1.5px solid var(--border-gray);
            border-radius: 10px;
            font-family: var(--font-body);
            font-size: 0.78rem;
            color: var(--black);
            background: var(--white);
            outline: none;
            transition: all 0.2s ease;
        }

        .product-tools__search:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

        .product-tools__search:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: var(--light-gray);
        }

        .checkbox-card--hidden {
            display: none;
        }

        /* ============================================
           POSTCODE LOOKUP
           ============================================ */
        .lookup-row {
            display: flex;
            gap: 12px;
            align-items: flex-end;
        }

        .lookup-row .field {
            flex: 1;
        }

        .btn-lookup {
            height: 54px;
            padding: 0 20px;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--orange);
            background: var(--orange-glow);
            border: 2px solid rgba(251, 90, 18, 0.15);
            border-radius: var(--radius-md);
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .btn-lookup:hover {
            background: rgba(251, 90, 18, 0.15);
            border-color: rgba(251, 90, 18, 0.25);
        }

        .btn-lookup:active {
            transform: scale(0.97);
        }

        .btn-lookup:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .btn-lookup__spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(251, 90, 18, 0.2);
            border-top-color: var(--orange);
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        .btn-lookup--loading .btn-lookup__spinner {
            display: block;
        }

        .btn-lookup--loading .btn-lookup__icon {
            display: none;
        }

        .lookup-success {
            display: none;
            align-items: center;
            gap: 6px;
            font-size: 0.76rem;
            font-weight: 500;
            color: var(--success);
            margin-top: 8px;
            padding: 8px 12px;
            background: var(--success-bg);
            border-radius: var(--radius-sm);
        }

        .lookup-success--visible {
            display: flex;
            animation: fadeUp 0.3s ease;
        }

        .lookup-error {
            display: none;
            align-items: center;
            gap: 6px;
            font-size: 0.76rem;
            font-weight: 500;
            color: var(--error);
            margin-top: 8px;
            padding: 8px 12px;
            background: var(--error-bg);
            border-radius: var(--radius-sm);
        }

        .lookup-error--visible {
            display: flex;
            animation: fadeUp 0.3s ease;
        }

        .coords-note {
            font-size: 0.76rem;
            color: var(--mid-gray);
            line-height: 1.5;
            margin-bottom: 18px;
            padding: 12px 14px;
            background: var(--light-gray);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--orange);
        }

        /* ============================================
           SUBMIT SECTION
           ============================================ */
        .form-submit {
            padding: 32px clamp(24px, 5vw, 44px) 40px;
            border-top: 1px solid var(--border-gray);
            background: var(--off-white);
        }

        .btn-submit {
            width: 100%;
            height: 58px;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            color: var(--white);
            background: var(--orange);
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .btn-submit:hover {
            background: var(--orange-hover);
            box-shadow: var(--shadow-orange);
            transform: translateY(-1px);
        }

        .btn-submit:hover::before {
            opacity: 1;
        }

        .btn-submit:active {
            transform: translateY(0);
            background: var(--orange-active);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-submit__spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2.5px solid rgba(255,255,255,0.3);
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        .btn-submit--loading .btn-submit__text { display: none; }
        .btn-submit--loading .btn-submit__spinner { display: block; }

        .form-disclaimer {
            margin-top: 16px;
            font-size: 0.72rem;
            color: var(--mid-gray);
            text-align: center;
            line-height: 1.5;
        }

        /* ============================================
           SUCCESS OVERLAY
           ============================================ */
        .success-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(12, 10, 8, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .success-overlay--visible {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .success-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 52px 44px;
            max-width: 440px;
            width: 100%;
            text-align: center;
            box-shadow: var(--shadow-lg);
            animation: scaleIn 0.4s ease;
        }

        .success-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            background: var(--success-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .success-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--success);
            stroke-width: 2.5;
            fill: none;
            stroke-dasharray: 50;
            stroke-dashoffset: 50;
            animation: drawCheck 0.5s ease forwards 0.3s;
        }

        .success-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--black);
            margin-bottom: 10px;
        }

        .success-text {
            font-size: 0.92rem;
            color: var(--mid-gray);
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .btn-success-close {
            height: 48px;
            padding: 0 36px;
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--white);
            background: var(--orange);
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-success-close:hover {
            background: var(--orange-hover);
            box-shadow: var(--shadow-orange);
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: 32px clamp(24px, 5vw, 60px);
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer__text {
            font-size: 0.76rem;
            color: rgba(255,255,255,0.3);
        }

        .footer__link {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            font-weight: 500;
            color: rgba(255,255,255,0.25);
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
        }

        .footer__link:hover {
            color: var(--orange);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

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

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

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

        @keyframes drawCheck {
            to { stroke-dashoffset: 0; }
        }

        @keyframes pulse-ring {
            0%   { transform: scale(1); opacity: 0.4; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Field fill animation */
        .field__input--autofilled {
            animation: fieldGlow 0.6s ease;
        }

        .field__input--spotlight {
            animation: fieldSpotlight 0.9s ease;
        }

        @keyframes fieldGlow {
            0%   { box-shadow: 0 0 0 4px rgba(48, 164, 108, 0.2); background: rgba(48, 164, 108, 0.06); }
            100% { box-shadow: 0 0 0 4px transparent; background: var(--light-gray); }
        }

        @keyframes fieldSpotlight {
            0%   { box-shadow: 0 0 0 0 rgba(251, 90, 18, 0.25); }
            45%  { box-shadow: 0 0 0 8px rgba(251, 90, 18, 0.18); }
            100% { box-shadow: 0 0 0 0 rgba(251, 90, 18, 0); }
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1080px) {
            .hero {
                padding: 106px clamp(20px, 4vw, 34px) 44px;
                min-height: 220px;
            }

            .hero__title {
                font-size: clamp(1.9rem, 5.4vw, 2.6rem);
            }

            .form-wrapper {
                grid-template-columns: 1fr;
                gap: 14px;
                max-width: 860px;
                margin: -10px auto 56px;
            }

            .form-card {
                order: 1;
            }

            .experience-panel {
                order: 2;
                position: static;
                top: auto;
                padding: 14px;
            }

            .experience-panel__top {
                grid-template-columns: auto 1fr auto;
                gap: 10px;
                align-items: center;
            }

            .experience-actions {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

            .experience-btn {
                width: auto;
                height: 34px;
                padding: 0 12px;
            }

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

            .experience-sections {
                border-left: none;
                padding-left: 0;
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
            }

            .experience-chip {
                min-height: 30px;
                border-radius: 999px;
                padding: 0 10px;
                border: 1px solid rgba(255,255,255,0.16);
                white-space: nowrap;
            }

            .experience-chip::before {
                display: none;
            }
        }

        @media (max-width: 579px) {
            .hero {
                padding: 96px 20px 34px;
                min-height: 206px;
            }

            .hero__stripes {
                display: none;
            }

            .hero__title {
                font-size: 1.82rem;
                max-width: 100%;
            }

            .hero__subtitle {
                font-size: 0.92rem;
                line-height: 1.5;
            }

            .hero__angle {
                height: 24px;
            }

            .form-wrapper {
                margin: -6px auto 46px;
                padding: 0 12px;
            }

            .experience-panel__top {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .experience-progress {
                order: 3;
            }

            .experience-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }

            .experience-btn {
                width: 100%;
                justify-content: center;
            }

            .draft-status {
                text-align: left;
            }

            .experience-sections {
                display: none;
            }

            .form-section {
                padding: 28px 20px;
            }

            .form-submit {
                padding: 28px 20px 32px;
            }

            .lookup-row {
                flex-direction: column;
            }

            .btn-lookup {
                width: 100%;
                justify-content: center;
            }

            .success-card {
                padding: 40px 28px;
            }

            .section-badge {
                display: none;
            }

            .toggle-row {
                padding: 14px 16px;
            }

            .conditional-field {
                padding-left: 16px;
                padding-right: 16px;
            }

            .conditional-field--visible {
                padding: 0 16px 14px;
            }

            .checkbox-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hours-row {
                flex-wrap: wrap;
                padding: 12px 16px;
                gap: 10px;
            }

            .hours-row__times {
                width: 100%;
                padding-left: 56px;
            }

            .hours-row__time-input {
                flex: 1;
                min-width: 0;
            }

            .hours-preset__btn {
                font-size: 0.72rem;
                height: 30px;
                padding: 0 12px;
            }
        }
