/* ============================================
   REGISTRO DE TÉCNICOS - IPER PROTECT
   Paleta: #0A1428 (bg-dark), #2A77A4 (primary),
   #2A77A4 (secondary/green), #F8FAFC (bg-light)
   ============================================ */

html, body {
    overflow-x: clip !important;
}

/* ============================================
   HERO - Full width 420px
   ============================================ */
.tech-hero {
    width: 100%;
    min-height: 540px;
    margin-top: 100px;
    padding-top: 170px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #0A1428 0%, #162745 50%, #0F1D36 100%);
    overflow: hidden;
    position: relative;
}

.tech-hero .container-tech {
    width: 100%;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(42, 119, 164, 0.08);
    pointer-events: none;
}

.tech-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(42, 119, 164, 0.06);
    pointer-events: none;
}

.tech-hero-content {
    position: relative;
    z-index: 1;
    padding: 0;
    text-align: left;
}

.tech-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 210, 1, 0.15);
    color: #FAD201;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.tech-hero-badge i {
    font-size: 16px;
}

.tech-hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #F8FAFC;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tech-hero-content h1 span {
    color: #2A77A4;
    display: inline !important;
}

.tech-hero-content h1 .equipo-highlight {
    color: #FAD201 !important;
    display: inline !important;
}

.tech-hero-content p {
    font-size: 18px;
    color: #94A3B8;
    max-width: 480px;
    line-height: 1.7;
}

/* ============================================
   FORM HEADER - Section centered
   ============================================ */
.tech-form-header {
    padding: 60px 0 32px;
    background: #F8FAFC;
    text-align: center;
}

.tech-form-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0A1428;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.tech-form-header h1 span {
    color: #2A77A4;
}

.tech-form-header p {
    font-size: 17px;
    color: #64748B;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   LAYOUT 2 COLUMNAS
   ============================================ */
.tech-form-section {
    padding: 0 0 80px;
    background: #F8FAFC;
}

.tech-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.82) 0%, rgba(10, 20, 40, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.container-tech {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    overflow: visible;
}

/* ============================================
   FORM CARDS
   ============================================ */
.tech-form-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.tech-form-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F1F5F9;
}

.tech-card-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #2A77A4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.tech-form-card-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0A1428;
    margin: 0;
}

.tech-form-card-header p {
    font-size: 14px;
    color: #64748B;
    margin: 4px 0 0;
    line-height: 1.5;
}

/* ============================================
   FIELDS
   ============================================ */
.tech-field {
    margin-bottom: 20px;
}

.tech-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 6px;
}

.req {
    color: #DC2626;
}

.tech-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.tech-input-wrap > i {
    position: absolute;
    left: 14px;
    font-size: 18px;
    color: #94A3B8;
    pointer-events: none;
    z-index: 1;
}

.tech-input {
    width: 100%;
    padding: 13px 14px 13px 44px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0F172A;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}

.tech-input::placeholder {
    color: #767676;
}

select.tech-input {
    color: #909090;
}

.tech-input:focus {
    border-color: #2A77A4;
    box-shadow: 0 0 0 3px rgba(42, 119, 164, 0.1);
}

.tech-input.error {
    border-color: #DC2626;
}

.tech-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394A3B8' viewBox='0 0 256 256'%3E%3Cpath d='M128,184l-80-80h160Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.tech-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tech-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.tech-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.tech-textarea-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}

.tech-char-count {
    font-size: 12px;
    color: #94A3B8;
    margin-left: auto;
}

.tech-err {
    display: block;
    font-size: 12px;
    color: #DC2626;
    margin-top: 4px;
    min-height: 16px;
}

/* ============================================
   MULTISELECT DROPDOWN
   ============================================ */
.tech-multiselect {
    position: relative;
}

.tech-multiselect-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    min-height: 48px;
    flex-wrap: wrap;
    transition: border-color 0.2s;
}

.tech-multiselect-trigger:hover,
.tech-multiselect-trigger.open {
    border-color: #2A77A4;
}

.tech-multiselect-trigger.open {
    box-shadow: 0 0 0 3px rgba(42, 119, 164, 0.1);
}

.tech-multiselect-trigger > i {
    margin-left: auto;
    font-size: 14px;
    color: #94A3B8;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.tech-multiselect-trigger.open > i {
    transform: rotate(180deg);
}

.tech-multiselect-placeholder {
    font-size: 14px;
    color: #94A3B8;
}

.tech-multiselect-placeholder.hidden {
    display: none;
}

.tech-multiselect-selected {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tech-multiselect-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(42, 119, 164, 0.1);
    color: #2A77A4;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.tech-multiselect-tag button {
    background: none;
    border: none;
    color: #2A77A4;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    opacity: 0.6;
}

.tech-multiselect-tag button:hover {
    opacity: 1;
}

.tech-multiselect-dropdown {
    display: none !important;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
    max-height: 320px;
    overflow: hidden;
    pointer-events: none;
}

.tech-multiselect-dropdown.open {
    display: block !important;
    pointer-events: auto;
}

.tech-multiselect-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid #F1F5F9;
}

.tech-multiselect-search i {
    color: #94A3B8;
    font-size: 14px;
    flex-shrink: 0;
}

.tech-multiselect-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    color: #0F172A;
    background: transparent;
}

.tech-multiselect-options {
    overflow-y: auto;
    max-height: 260px;
    padding: 6px;
}

.tech-multiselect-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #334155;
    transition: background 0.15s;
}

.tech-multiselect-opt:hover {
    background: #F8FAFC;
}

.tech-multiselect-opt input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2A77A4;
    cursor: pointer;
    flex-shrink: 0;
}

.tech-multiselect-opt i {
    font-size: 16px;
    color: #94A3B8;
    flex-shrink: 0;
}

.tech-multiselect-opt input:checked ~ i {
    color: #2A77A4;
}

.tech-multiselect-opt input:checked ~ span {
    color: #2A77A4;
    font-weight: 600;
}

/* ============================================
   ZONES
   ============================================ */
.tech-zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.tech-zone {
    cursor: pointer;
}

.tech-zone input { display: none; }

.tech-zone-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    background: #fff;
    transition: all 0.2s;
}

.tech-zone-box i {
    font-size: 20px;
    color: #94A3B8;
    flex-shrink: 0;
    transition: color 0.2s;
}

.tech-zone-box span {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
    transition: color 0.2s;
}

.tech-zone:hover .tech-zone-box {
    border-color: #2A77A4;
    background: #E0EDF5;
}

.tech-zone input:checked + .tech-zone-box {
    border-color: #2A77A4;
    background: #E0EDF5;
    box-shadow: 0 0 0 3px rgba(42, 119, 164, 0.12);
}

.tech-zone input:checked + .tech-zone-box i,
.tech-zone input:checked + .tech-zone-box span {
    color: #2A77A4;
}

/* ============================================
   RADIO CARDS
   ============================================ */
.tech-radio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.tech-radio-card {
    cursor: pointer;
}

.tech-radio-card input { display: none; }

.tech-radio-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s;
}

.tech-radio-box i {
    font-size: 22px;
    color: #94A3B8;
    margin-top: 2px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.tech-radio-box strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 2px;
}

.tech-radio-box span {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

.tech-radio-card:hover .tech-radio-box {
    border-color: #2A77A4;
    background: #E0EDF5;
}

.tech-radio-card input:checked + .tech-radio-box {
    border-color: #2A77A4;
    background: #E0EDF5;
    box-shadow: 0 0 0 3px rgba(42, 119, 164, 0.12);
}

.tech-radio-card input:checked + .tech-radio-box i {
    color: #2A77A4;
}

/* ============================================
   DROPZONE
   ============================================ */
.tech-dropzone {
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    padding: 36px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    background: #FAFBFC;
}

.tech-dropzone:hover,
.tech-dropzone.dragover {
    border-color: #2A77A4;
    background: #E0EDF5;
}

.tech-dropzone i {
    font-size: 36px;
    color: #2A77A4;
    margin-bottom: 10px;
    display: block;
}

.tech-dz-title {
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 2px;
}

.tech-dz-or {
    font-size: 13px;
    color: #94A3B8;
    display: block;
    margin-bottom: 10px;
}

.tech-dz-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #2A77A4;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tech-dz-btn:hover {
    background: #1b68db;
}

.tech-dz-hint {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 10px;
}

.tech-file-list {
    margin-top: 10px;
}

.tech-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 6px;
    font-size: 13px;
}

.tech-file-item i {
    font-size: 20px;
    color: #2A77A4;
    flex-shrink: 0;
}

.tech-file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0F172A;
}

.tech-file-size {
    color: #94A3B8;
    font-size: 12px;
    flex-shrink: 0;
}

.tech-file-remove {
    background: none;
    border: none;
    color: #DC2626;
    cursor: pointer;
    font-size: 16px;
    padding: 2px;
}

/* ============================================
   FILE UPLOAD (individual)
   ============================================ */
.tech-file-upload {
    margin-bottom: 4px;
}

.tech-file-upload-box {
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    background: #FAFBFC;
}

.tech-file-upload-box:hover {
    border-color: #2A77A4;
    background: #E0EDF5;
}

.tech-file-upload-box i {
    font-size: 32px;
    color: #2A77A4;
    margin-bottom: 8px;
    display: block;
}

.tech-file-upload-box p {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 4px;
}

.tech-file-upload-box span {
    font-size: 12px;
    color: #94A3B8;
}

.tech-file-upload-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.tech-file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 8px;
    font-size: 13px;
    color: #166534;
}

.tech-file-item i {
    color: #22C55E;
    flex-shrink: 0;
}

.tech-file-item-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tech-file-remove {
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
    font-size: 16px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.tech-file-remove:hover {
    color: #DC2626;
}

/* ============================================
   SUBMIT NOTE
   ============================================ */
.tech-submit-note {
    text-align: center;
    font-size: 14px;
    color: #64748B;
    margin-top: 16px;
}

/* ============================================
   VALUES SECTION (below form)
   ============================================ */
.tech-values-section {
    padding: 60px 0 80px;
    background: #fff;
}

.tech-values-header {
    text-align: center;
    margin-bottom: 40px;
}

.tech-values-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.tech-values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.tech-value-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 15px 11px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s;
}

.tech-value-card:hover {
    border-color: #2A77A4;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 119, 164, 0.1);
}

.tech-value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(42, 119, 164, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-value-icon i {
    font-size: 24px;
    color: #2A77A4;
}

.tech-value-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
    margin: 0;
    text-align: center;
}

/* ============================================
   CHECKBOX
   ============================================ */
.tech-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin-top: 8px;
}

.tech-check input { display: none; }

.tech-check-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    margin-top: 1px;
}

.tech-check-box i {
    font-size: 12px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}

.tech-check input:checked + .tech-check-box {
    background: #2A77A4;
    border-color: #2A77A4;
}

.tech-check input:checked + .tech-check-box i {
    opacity: 1;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */
.tech-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: #2A77A4;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 20px;
    text-decoration: none;
}

.tech-submit-btn:hover {
    background: #1b68db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 119, 164, 0.3);
}

/* ============================================
   SIDEBAR
   ============================================ */
.tech-sidebar {
    position: sticky;
    top: 160px;
}

.tech-side-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.tech-sidebar .tech-side-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2A77A4;
    margin-bottom: 14px;
}

.tech-benefits-list {
    list-style: none;
}

.tech-benefits-list li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
}

.tech-benefits-list li:last-child {
    border-bottom: none;
}

.tech-bl-icon {
    flex-shrink: 0;
    font-size: 22px;
    color: #2A77A4;
    margin-top: 1px;
}

.tech-benefits-list strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 3px;
}

.tech-benefits-list span {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

.tech-side-important {
    background: #0A1428;
    border-color: #162745;
    text-align: center;
}

.tech-important-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FAD201;
    margin-bottom: 12px;
}

.tech-important-icon {
    font-size: 40px;
    color: #FAD201;
    margin-bottom: 12px;
}

.tech-side-important p {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.6;
}

/* ============================================
   ALERT
   ============================================ */
.tech-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.tech-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.tech-success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.tech-success-box {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.tech-success-modal.active .tech-success-box {
    transform: scale(1);
}

.tech-success-icon {
    font-size: 60px;
    color: #2A77A4;
    margin-bottom: 16px;
}

.tech-success-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0A1428;
    margin-bottom: 10px;
}

.tech-success-box p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .tech-layout {
        grid-template-columns: 1fr;
    }
    .tech-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .tech-side-card {
        margin-bottom: 0;
    }
    .tech-specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-hero {
        min-height: 340px;
        padding-top: 100px;
        padding-bottom: 40px;
        background-position-x: 80% !important;
    }
    .tech-hero-content {
        padding: 0;
        text-align: left;
    }
    .tech-hero-content h1 {
        font-size: 36px;
    }
    .tech-form-header {
        padding: 40px 0 24px;
    }
    .tech-form-header h1 {
        font-size: 26px;
    }
    .tech-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-zones-grid {
        grid-template-columns: 1fr;
    }
    .tech-radio-cards {
        grid-template-columns: 1fr;
    }
    .tech-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-value-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 11px;
    }
    .tech-field-row {
        grid-template-columns: 1fr;
    }
    .tech-form-card {
        padding: 24px;
    }
    .tech-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tech-hero-content h1 {
        font-size: 30px;
    }
    .tech-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-value-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 11px;
    }
    .tech-values-header h2 {
        font-size: 22px;
    }
    .tech-submit-btn {
        font-size: 16px;
    }
}
