

        @import url("https://use.typekit.net/epa7piz.css");

        :root {
            --seamx-magenta: #f536f8;
            --seamx-blue: #000080;
            --border-color: #000000 !important;
            --input-height: 26px;
        }


        body {
            font-family: "neue-haas-grotesk-text", sans-serif !important;
            font-weight: 500;
        color: #000 !important;
            background-color: #fff;
            line-height: 1.2;
        }

        .intake-component-wrap {
            max-width: 1240px;
            margin: 0 auto;
            padding: 50px 5px;
            position: relative;
            z-index: 5;
        }

        /* --- HEADER AREA --- */
        .header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .title-block .main-title {
            font-family: "helvetica-neue-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -2px;
            color: #000;
            line-height: 1.1;
        }

        .title-block .context-subtext {
            font-size: 14px;
            font-weight: 500;
            margin-top: 3px;
            line-height: 1.2;
            letter-spacing: -0.30px;
        }

        .seamx-logo-main {
            font-family: "helvetica-neue-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 24px;
            font-weight: 800;
            font-style: italic;
        }

        .seamx-logo-main img {
            width: 120px;
        }
        
        /* --- MAIN FORM GEOMETRY --- */
        .main-form-grid {
            display: grid;
            grid-template-columns: 58% 38%;
            gap: 4%;
            align-items: stretch;
        }

        /* LEFT COLUMN */
        .left-col {
            display: flex;
            flex-direction: column;
            gap: 17px;
        }

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

        .input-group {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .input-label {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .label-magenta { color: var(--seamx-magenta); }

        .form-input {
            border: 2px solid var(--border-color);
            height: var(--input-height);
            padding: 12px 8px;
            font-size: 14px;
            font-family: "neue-haas-grotesk-text", sans-serif;
            border-radius: 0;
            outline: none;
        }

        /* FIXED TEXTAREA RULES MATRIX */
        .form-textarea {
            width: 950px;
            min-height: 125px;
            resize: vertical;
            border: 2px solid var(--border-color);
            padding: 8px;
            z-index: 9999;
            font-size: 14px;
            font-family: "neue-haas-grotesk-text", sans-serif;
            border-radius: 0;
            outline: none;
            background: rgba(255, 255, 255, 0.95);
            letter-spacing: -0.30px;
        }

        /* RIGHT COLUMN */
        .right-col {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        /* --- BIG X WATERMARK TEXT OVERLAY --- */
        .seamx-watermark-overlay-x {
            position: absolute;
            top: -150px;
            font-family: "adobe-kis", "Georgia", serif;
            font-weight: 400;
            font-style: italic;
            font-size: 62em;
            color: #f1f1f1;
            line-height: 0.75;
            pointer-events: none;
            user-select: none;
            z-index: -1;
            transform: rotate(1deg);
        }

        .dropdown-area-label {
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 4px;
            position: relative;
            z-index: 2;
        }

        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .custom-dropdown {
            position: relative;
            width: 100%;
            height: var(--input-height);
        }

        .dropdown-selected {
            border: 2px solid var(--border-color);
            height: 100%;
            padding: 2px 14px 2px 6px;
            font-size: 14px;
            font-weight: 600;
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            letter-spacing: -0.30px;
            pointer-events: auto;
        }

        .dropdown-selected::after {
            content: '▼';
            position: absolute;
            right: 4px;
            font-size: 7px;
        }
        .dropdown-selected.open::after { content: '▲'; }

        .dropdown-options {
            position: absolute;
            top: calc(100% - 1px);
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #000;
            max-height: 180px;
            overflow-y: auto;
            z-index: 100;
            display: none;
        }
        .dropdown-options.show { display: block; }

        .dropdown-option {
            padding: 4px 6px;
            font-size: 14px;
            cursor: pointer;
        }
        .dropdown-option:hover { background: #f0f0f0; }
        .dropdown-option.selected { background: #000; color: #fff; }

        /* TAGS GRID */
        .tags-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            margin-top: auto;
            margin-bottom: 2px;
            position: relative;
            z-index: 2;
        }

        .tags-row {
            display: flex;
            gap: 6px;
            justify-content: flex-end;
        }

        .service-tag {
            border: 2px solid var(--border-color);
            padding: 3px 3px;
            font-size: 20px;
            font-family: "neue-haas-grotesk-text", sans-serif;
            letter-spacing: -0.30px;
            font-weight: 700;
            background: #fff;
            color: #000;
            cursor: pointer;
            letter-spacing: -0.50px;
            pointer-events: auto;
            position: relative;
            z-index: 2;
        }

        .service-tag[data-tag="samples"].active { background: #ff00cc; color: white; border-color:#ff00cc; }
        .service-tag[data-tag="clo3d"].active { background: #0b1e8a; color: white; border-color:#0b1e8a; }
        .service-tag[data-tag="design"].active { background: #fff200; color: black; border-color:#fff200; }
        .service-tag[data-tag="grading"].active { background: #ff7a00; color: white; border-color:#ff7a00; }
        .service-tag[data-tag="material sourcing"].active { background: #00ff2a; color: black; border-color:#00ff2a; }
        .service-tag[data-tag="bulk production"].active { background: #00d9d9; color: black; border-color:#00d9d9; }
        .service-tag[data-tag="blanks"].active { background: #ff0000; color: white; border-color:#ff0000; }

        /* --- BOTTOM AREA --- */
        .bottom-action-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: 5px;
            position: relative;
            z-index: 2;
        }

        .bottom-left-text {
            letter-spacing: -0.40px;
            font-size: 14px;
            color: #999;
            font-weight: 500;
        }

        .bottom-right-cluster {
            display: flex;
            align-items: flex-end;
            gap: 20px;
        }

        .downloads-stack {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 4px;
        }

        .download-link {
            font-size: 14px;
            letter-spacing: -0.35px;
            color: #0000ff;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .download-link::before {
            content: '';
            width: 10px;
            height: 10px;
            background-color: #0000ff;
            border-radius: 50%;
        }

        .whatsapp-contact-wrapper{
            width: 60px; 
            height: 60px;
            line-height: 1;
            text-decoration: none;
            margin-bottom: 6px;
        }

        .buttons-stack {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }

        .submit-row {
            display: flex;
            gap: 4px;
        }

        .btn-subscribe {
            background: var(--seamx-magenta);
            color: #fff;
            border: 2px solid #ccc;
            padding: 3px 10px;
            font-size: 22px;
            font-family:  "neue-haas-grotesk-text", sans-serif;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: -0.30px;
        }

        .btn-send {
            background: #000;
            color: #fff;
            border: 2px solid var(--border-color);
            padding: 3px 2px;
            font-size: 22px;
            font-family:  "neue-haas-grotesk-text", sans-serif;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: -0.30px;
        }

        .btn-attach {
            background: #a9a9a9;
            color: #fff;
            border: 2px solid #a1a1a1;
            padding: 3px 2px;
            font-size: 22px;
            font-family:  "neue-haas-grotesk-text", sans-serif;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: -0.30px;
        }

        .terms-row {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #999;
            margin-top: 2px;
            text-decoration:  underline;
        }

        .status-msg { font-size: 12px; margin-top: 8px; width: 100%; font-weight: 700; }
        .hidden { display: none !important; }

        @media (max-width: 900px) {
            .main-form-grid { grid-template-columns: 1fr; gap: 30px; }
            .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
            .bottom-action-row { flex-direction: column; align-items: flex-start; gap: 20px; }
            .bottom-right-cluster { flex-wrap: wrap; justify-content: flex-end; width: 100%; }
            .tags-wrapper { align-items: flex-start; margin-top: 15px; }
            .tags-row { justify-content: flex-start; flex-wrap: wrap; }
             .intake-component-wrap { padding: 20px; }
            
            /* Hide logo wrapper context on mobile */
            .seamx-logo-main { display: none !important; }
            
            /* Clean responsive corrections to prevent structural layout overflow */
            .form-textarea { width: 100% !important; max-width: 100%; }
            .input-row-split { grid-template-columns: 1fr; gap: 17px; }
            .seamx-watermark-overlay-x { font-size: 50em; top: -80px; height: 100%;}
        }