/*
 * Teliyadu Technology marketing surface.
 *
 * This is the visual authority for Technology pages. It intentionally uses
 * the established warm black/gold/teal language and is never loaded for the
 * Academy surface.
 */

.surface-tech {
    --tech-ink: #111212;
    --tech-text: #141414;
    --tech-text-soft: #343434;
    --tech-text-muted: #686965;
    --tech-gold: #a98338;
    --tech-gold-soft: #eadcc1;
    --tech-teal: #315f6b;
    --tech-surface: #fff;
    --tech-surface-soft: #fbfaf7;
    --tech-border: rgba(20, 20, 20, .11);
    --tech-border-strong: rgba(20, 20, 20, .18);
    --tech-danger: #b91c1c;
    --tech-success: #2f4a40;
    --tech-radius: 8px;
    --tech-shadow: 0 24px 70px rgba(28, 24, 18, .12);
    --tech-shadow-soft: 0 14px 36px rgba(28, 24, 18, .08);
    --tech-motion: .2s ease;

    /* Compatibility aliases used by the established home stylesheet. */
    --td-ink: var(--tech-text);
    --td-ink-soft: var(--tech-text-soft);
    --td-muted: var(--tech-text-muted);
    --td-bg: var(--tech-surface);
    --td-surface: var(--tech-surface);
    --td-surface-strong: var(--tech-surface);
    --td-line: var(--tech-border);
    --td-line-strong: var(--tech-border-strong);
    --td-gold: var(--tech-gold);
    --td-gold-soft: var(--tech-gold-soft);
    --td-blue: var(--tech-teal);
    --td-dark: var(--tech-ink);
    --td-radius: var(--tech-radius);
    --td-shadow: var(--tech-shadow);
    --td-shadow-soft: var(--tech-shadow-soft);

    background: var(--tech-surface);
    color: var(--tech-text);
    color-scheme: light;
    font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

.surface-tech *,
.surface-tech *::before,
.surface-tech *::after {
    box-sizing: border-box;
}

.surface-tech #main-content {
    background: var(--tech-surface);
    color: var(--tech-text);
    display: block;
    min-width: 0;
}

.surface-tech #main-content :is(h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, select) {
    font-family: inherit;
}

.surface-tech #main-content :is(h1, h2, h3, h4, h5, h6) {
    letter-spacing: -.025em;
}

.surface-tech #main-content h1 {
    font-size: clamp(38px, 4.5vw, 54px);
    font-weight: 600;
    line-height: 1.04;
}

.surface-tech #main-content :is(.headerPic h1, .mainSlider h1, .mainSlider h2) {
    font-size: clamp(40px, 5.2vw, 64px);
    font-weight: 500;
    line-height: .98;
}

.surface-tech #main-content :is(.h3, h2.h3, .techSectionTitle) {
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 600;
    line-height: 1.04;
}

.surface-tech #main-content :is(.serviceCardTitle, .careerBlockTitle, .techCardTitle) {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.18;
}

.surface-tech #main-content :is(p, li, .medium, .bigger) {
    line-height: 1.62;
}

.surface-tech #main-content :is(.lead, .h4.light) {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.62;
}

.surface-tech #main-content :is(
    .headerPic,
    .darkGradientBg,
    .ctaBlockInner,
    .careerApplyCard,
    .mainSlider .card__text,
    .homeInfoStatsSection,
    .testimonalsHeader,
    .industries .iContent
) :is(h1, h2, h3, h4, h5, h6) {
    color: #fff;
}

.surface-tech #main-content a {
    transition: color var(--tech-motion), background-color var(--tech-motion), border-color var(--tech-motion), box-shadow var(--tech-motion), transform var(--tech-motion);
}

.surface-tech #main-content :is(a, button, input, textarea, select, [tabindex]):focus-visible {
    outline: 2px solid var(--tech-teal);
    outline-offset: 3px;
}

.surface-tech .techVisuallyHidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.surface-tech #main-content :is(.boxSliderArrow, .industrySliderArrow, .testimonalsArrow) {
    align-items: center;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    min-width: 44px;
}

.surface-tech .container,
.surface-tech .container-fluid {
    --bs-gutter-x: 32px;
}

/* Buttons */
.surface-tech #main-content .btn,
.surface-tech #main-content .techButton {
    align-items: center;
    border-radius: var(--tech-radius);
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    line-height: 1.1;
    min-height: 48px;
    padding: 0 22px;
    text-decoration: none;
    transition: background-color var(--tech-motion), border-color var(--tech-motion), color var(--tech-motion), box-shadow var(--tech-motion), transform var(--tech-motion), opacity var(--tech-motion);
}

.surface-tech #main-content :is(.btn-primary, .techButton--primary) {
    background: var(--tech-ink);
    border: 1px solid var(--tech-ink);
    box-shadow: 0 10px 24px rgba(20, 20, 20, .14);
    color: #fff;
}

.surface-tech #main-content :is(.btn-primary, .techButton--primary):hover {
    background: var(--tech-teal);
    border-color: var(--tech-teal);
    color: #fff;
    transform: translateY(-1px);
}

.surface-tech #main-content :is(.btn-secondary, .btn-outline, .btn-outline-dark, .techButton--secondary) {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border-strong);
    box-shadow: none;
    color: var(--tech-ink);
}

.surface-tech #main-content :is(.btn-secondary, .btn-outline, .btn-outline-dark, .techButton--secondary):hover {
    background: var(--tech-surface-soft);
    border-color: var(--tech-gold);
    color: var(--tech-ink);
}

.surface-tech #main-content :is(.btn-link, .techButton--ghost) {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: var(--tech-teal);
}

.surface-tech #main-content :is(.btn-danger, .techButton--danger) {
    background: var(--tech-danger);
    border-color: var(--tech-danger);
    color: #fff;
}

.surface-tech #main-content :is(.btn, .techButton):disabled,
.surface-tech #main-content :is(.btn, .techButton).disabled,
.surface-tech #main-content :is(.btn, .techButton)[aria-disabled="true"] {
    box-shadow: none;
    cursor: not-allowed;
    opacity: .55;
    pointer-events: none;
    transform: none;
}

/* Existing Technology section and card geometry */
.surface-tech #main-content .pb-100,
.surface-tech #main-content .py-100 {
    padding-bottom: clamp(72px, 6vw, 96px);
}

.surface-tech #main-content .py-100 {
    padding-top: clamp(72px, 6vw, 96px);
}

.surface-tech #main-content .pb-160 {
    padding-bottom: clamp(80px, 7vw, 96px);
}

.surface-tech #main-content .p-40 {
    padding: clamp(22px, 2.4vw, 30px);
}

.surface-tech #main-content .radius20 {
    border-radius: var(--tech-radius);
}

.surface-tech #main-content :is(
    .gradientBg,
    .borderOnly,
    .serviceCard,
    .insightCard,
    .searchResultItem,
    .careerMainCard,
    .careerContentBlock,
    .legalHeroCard,
    .legalContentCard,
    .techCard
) {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: var(--tech-radius);
    box-shadow: var(--tech-shadow-soft);
}

.surface-tech #main-content :is(.gradientBg, .borderOnly) {
    overflow: hidden;
}

.surface-tech #main-content .darkGradientBg {
    background: var(--tech-ink);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--tech-radius);
    box-shadow: var(--tech-shadow-soft);
}

.surface-tech #main-content :is(.serviceCard, .insightCard, .searchResultItem, .techCard--interactive) {
    transition: border-color var(--tech-motion), box-shadow var(--tech-motion), transform var(--tech-motion);
}

.surface-tech #main-content :is(.serviceCard, .insightCard, .searchResultItem, .techCard--interactive):hover {
    border-color: var(--tech-border-strong);
    box-shadow: var(--tech-shadow-soft);
    transform: translateY(-2px);
}

.surface-tech #main-content :is(.serviceCard, .insightCard, .searchResultItem, .careerContentBlock, .techCard--interactive)::before,
.surface-tech #main-content :is(.serviceCard, .insightCard, .searchResultItem, .careerContentBlock, .techCard--interactive)::after {
    content: none;
}

.surface-tech #main-content .serviceCard {
    color: inherit;
    display: block;
    height: 100%;
    text-decoration: none;
}

.surface-tech #main-content .serviceCardBody {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 26px;
}

.surface-tech #main-content .serviceCardBody p {
    color: var(--tech-text-muted);
    font-size: 15px;
    margin: 0 0 16px;
}

.surface-tech #main-content .serviceCardTags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.surface-tech #main-content .serviceCardTags li {
    background: rgba(49, 95, 107, .07);
    border-radius: 999px;
    color: var(--tech-teal);
    font-size: 12.5px;
    padding: 4px 11px;
}

.surface-tech #main-content .serviceCardLink {
    color: var(--tech-teal);
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
}

.surface-tech #main-content .serviceCardLink i {
    margin-left: 6px;
    transition: transform var(--tech-motion);
}

.surface-tech #main-content .serviceCard:hover .serviceCardLink i {
    transform: translateX(3px);
}

.surface-tech #main-content .serviceCard.isFocused {
    border-color: var(--tech-gold);
    box-shadow: 0 0 0 2px rgba(169, 131, 56, .22);
}

.surface-tech #main-content .industryDirectoryCard {
    color: inherit;
    display: block;
    height: 100%;
    text-decoration: none;
}

.surface-tech #main-content .industryDirectoryCardBody {
    padding: 26px;
}

.surface-tech #main-content .industryDirectoryCard p {
    color: var(--tech-text-muted);
    font-size: 15px;
    margin: 10px 0 0;
}

.surface-tech #main-content .serviceFocusNotice {
    align-items: center;
    background: var(--tech-surface-soft);
    border: 1px solid var(--tech-border);
    border-left: 3px solid var(--tech-gold);
    border-radius: var(--tech-radius);
    color: var(--tech-text-soft);
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    gap: 8px 16px;
    margin-bottom: 28px;
    padding: 12px 18px;
}

.surface-tech #main-content .serviceFocusNotice a {
    color: var(--tech-teal);
    font-weight: 700;
}

.surface-tech #main-content .headerPic {
    border-radius: var(--tech-radius);
    box-shadow: var(--tech-shadow-soft);
    overflow: hidden;
}

.surface-tech #main-content .headerPic > div {
    background: linear-gradient(90deg, rgba(17, 18, 18, .92), rgba(17, 18, 18, .30));
}

.surface-tech #main-content .hasLeftBorder {
    border-left-color: var(--tech-gold);
}

/* Shared Technology breadcrumb */
.surface-tech .techBreadcrumb {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: var(--tech-radius);
    box-shadow: 0 8px 24px rgba(28, 24, 18, .05);
    max-width: 100%;
    overflow-x: auto;
    padding: 12px 16px;
    -webkit-overflow-scrolling: touch;
}

.surface-tech .techBreadcrumbList {
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    gap: 0;
    line-height: 1.2;
    list-style: none;
    margin: 0;
    min-width: max-content;
    padding: 0;
    white-space: nowrap;
}

.surface-tech .techBreadcrumbList li {
    align-items: center;
    color: var(--tech-text-muted);
    display: inline-flex;
}

.surface-tech .techBreadcrumbList li + li::before {
    color: var(--tech-text-muted);
    content: "/";
    margin: 0 8px;
}

.surface-tech .techBreadcrumbList a {
    align-items: center;
    color: var(--tech-text-soft);
    display: inline-flex;
    min-height: 44px;
    text-decoration: none;
}

.surface-tech .techBreadcrumbList a:hover {
    color: var(--tech-teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.surface-tech .techBreadcrumbList i {
    margin-right: 6px;
}

.surface-tech .techBreadcrumbList [aria-current="page"] {
    color: var(--tech-text);
    font-weight: 700;
}

/* Forms */
.surface-tech #main-content :is(.mainContact, .techFormPanel) {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: var(--tech-radius);
    box-shadow: var(--tech-shadow-soft);
    padding: clamp(22px, 3vw, 30px);
}

.surface-tech #main-content :is(.form-control, input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="search"], textarea, select) {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border-strong);
    border-radius: var(--tech-radius);
    box-shadow: none;
    color: var(--tech-text);
    font-size: 16px;
    min-height: 52px;
    transition: background-color var(--tech-motion), border-color var(--tech-motion), box-shadow var(--tech-motion);
}

.surface-tech #main-content textarea.form-control,
.surface-tech #main-content textarea {
    min-height: 140px;
    resize: vertical;
}

.surface-tech #main-content :is(.form-control, input, textarea, select):focus {
    background: var(--tech-surface);
    border-color: var(--tech-teal);
    box-shadow: 0 0 0 3px rgba(49, 95, 107, .16);
    color: var(--tech-text);
    outline: 0;
}

.surface-tech #main-content :is(.form-control, input, textarea, select):disabled {
    background: rgba(20, 20, 20, .045);
    color: var(--tech-text-muted);
    cursor: not-allowed;
    opacity: .72;
}

.surface-tech #main-content .form-floating > label,
.surface-tech #main-content :is(.floating-select-label, .careerFieldLabel) {
    color: var(--tech-text-soft);
    font-size: 13px;
    font-weight: 700;
}

.surface-tech #main-content .custom-select-wrap {
    position: relative;
}

.surface-tech #main-content .floating-select-label {
    left: 13px;
    pointer-events: none;
    position: absolute;
    top: 8px;
    z-index: 3;
}

.surface-tech #main-content .bootstrap-select {
    width: 100%;
}

.surface-tech #main-content .bootstrap-select > .dropdown-toggle {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border-strong);
    border-radius: var(--tech-radius);
    box-shadow: none;
    color: var(--tech-text);
    font-family: inherit;
    font-size: 16px;
    height: 58px;
    padding: 1.625rem .75rem .625rem;
    width: 100%;
}

.surface-tech #main-content .bootstrap-select > .dropdown-toggle:is(:hover, :focus),
.surface-tech #main-content .bootstrap-select.show > .dropdown-toggle {
    background: var(--tech-surface);
    border-color: var(--tech-teal);
    box-shadow: 0 0 0 3px rgba(49, 95, 107, .16);
    color: var(--tech-text);
}

.surface-tech #main-content .bootstrap-select .dropdown-menu,
.surface-tech .select2-dropdown {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: var(--tech-radius);
    box-shadow: var(--tech-shadow-soft);
    overflow: hidden;
}

.surface-tech #main-content .bootstrap-select .dropdown-menu li a {
    color: var(--tech-text-soft);
    min-height: 44px;
    padding: 11px 14px;
}

.surface-tech #main-content .bootstrap-select .dropdown-menu li a:hover {
    background: rgba(49, 95, 107, .07);
    color: var(--tech-text);
}

.surface-tech #main-content .select2-container {
    width: 100%;
}

.surface-tech #main-content .select2-container .select2-selection--single {
    align-items: center;
    background: var(--tech-surface);
    border: 1px solid var(--tech-border-strong);
    border-radius: var(--tech-radius);
    display: flex;
    min-height: 52px;
    padding: 10px 12px;
}

.surface-tech .select2-search__field {
    border: 1px solid var(--tech-border-strong);
    border-radius: var(--tech-radius);
    color: var(--tech-text);
    min-height: 44px;
    padding: 9px 11px;
}

.surface-tech .select2-results__option {
    color: var(--tech-text-soft);
    min-height: 44px;
    padding: 11px 14px;
}

.surface-tech .select2-results__option--highlighted {
    background: rgba(49, 95, 107, .09);
    color: var(--tech-text);
}

.surface-tech #main-content .form-error,
.surface-tech #main-content .careerFieldError {
    color: var(--tech-danger);
    display: block;
    font-size: 13px;
    line-height: 1.45;
    margin-top: 6px;
}

.surface-tech #main-content :is(.form-control, .careerField, .careerTextarea, .careerFile).is-invalid,
.surface-tech #main-content .bootstrap-select.is-invalid > .dropdown-toggle {
    border-color: var(--tech-danger);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, .12);
}

.surface-tech #main-content .formResponsePromise,
.surface-tech #main-content .careerFieldHint {
    color: var(--tech-text-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 8px 0 0;
}

/* Status, empty, loading and error treatments */
.surface-tech #main-content :is(.techState, .searchEmpty, .form-status-message) {
    background: var(--tech-surface-soft);
    border: 1px solid var(--tech-border);
    border-radius: var(--tech-radius);
    color: var(--tech-text-soft);
    padding: 24px;
}

.surface-tech #main-content :is(.techState, .searchEmpty) :is(h2, h3) {
    color: var(--tech-text);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.surface-tech #main-content :is(.techState, .searchEmpty) p {
    color: var(--tech-text-muted);
    margin: 0;
}

.surface-tech #main-content :is(.techState--success, .form-status-message.is-success) {
    border-left: 3px solid var(--tech-success);
}

.surface-tech #main-content :is(.techState--error, .form-status-message.is-error, .alert-danger) {
    border-left: 3px solid var(--tech-danger);
}

.surface-tech #main-content :is(.techState--loading, [aria-busy="true"]) {
    border-left: 3px solid var(--tech-teal);
}

.surface-tech #main-content .alert {
    border-radius: var(--tech-radius);
    font-size: 14px;
    padding: 14px 18px;
}

.surface-tech #main-content .publicErrorCode {
    color: var(--tech-gold-soft);
}

/* Legal pages retain their shared structure but use Technology-owned visuals. */
.surface-tech #main-content .legalPageBg {
    background: var(--tech-surface-soft);
}

.surface-tech #main-content .legalHeroCard,
.surface-tech #main-content .legalContentCard {
    padding: clamp(22px, 2.5vw, 30px);
}

.surface-tech #main-content .legalLabel {
    background: rgba(234, 220, 193, .34);
    border: 1px solid var(--tech-border);
    border-radius: var(--tech-radius);
    color: var(--tech-text-soft);
    font-size: 13px;
    font-weight: 700;
}

.surface-tech #main-content .legalTitle {
    color: var(--tech-text);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 600;
    line-height: 1.12;
}

.surface-tech #main-content :is(.legalDesc, .legalContent) {
    color: var(--tech-text-soft);
    font-size: 16px;
}

.surface-tech #main-content .legalContent :is(h1, h2, h3, h4, h5, h6) {
    color: var(--tech-text);
}

.surface-tech #main-content .legalUpdated {
    border-top-color: var(--tech-border);
    color: var(--tech-text-muted);
}

/* Career detail and application */
.surface-tech #main-content .careerDetailWrap {
    position: relative;
}

.surface-tech #main-content :is(.careerMainCard, .careerContentBlock) {
    margin-bottom: 22px;
    padding: clamp(22px, 2.5vw, 30px);
}

.surface-tech #main-content .careerSectionEyebrow {
    color: var(--tech-text-muted);
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.surface-tech #main-content .careerSectionEyebrow--inverse {
    color: rgba(255, 255, 255, .72);
}

.surface-tech #main-content .careerMetaGrid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.surface-tech #main-content .careerMetaItem {
    background: rgba(234, 220, 193, .24);
    border: 1px solid var(--tech-border);
    border-radius: var(--tech-radius);
    padding: 16px 18px;
}

.surface-tech #main-content .careerMetaLabel {
    color: var(--tech-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.surface-tech #main-content .careerMetaValue {
    color: var(--tech-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.surface-tech #main-content .careerBlockText,
.surface-tech #main-content .careerBlockText :is(p, li) {
    color: var(--tech-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.surface-tech #main-content .careerApplySticky {
    position: sticky;
    top: 110px;
}

.surface-tech #main-content .careerApplyCard {
    background: var(--tech-ink);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--tech-radius);
    box-shadow: var(--tech-shadow);
    overflow: hidden;
    padding: clamp(22px, 2.5vw, 30px);
}

.surface-tech #main-content .careerApplyHeading {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 10px;
}

.surface-tech #main-content .careerApplyIntro {
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.surface-tech #main-content .careerApplyForm .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.surface-tech #main-content :is(.careerField, .careerTextarea, .careerFile),
.surface-tech #main-content .careerApplyCard .bootstrap-select > .dropdown-toggle {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--tech-radius);
    box-shadow: none;
    color: #fff;
    font-size: 15px;
    min-height: 52px;
    width: 100%;
}

.surface-tech #main-content :is(.careerField, .careerTextarea) {
    padding: 14px 16px;
}

.surface-tech #main-content :is(.careerField, .careerTextarea)::placeholder {
    color: rgba(255, 255, 255, .62);
}

.surface-tech #main-content :is(.careerField, .careerTextarea):focus,
.surface-tech #main-content .careerApplyCard .bootstrap-select > .dropdown-toggle:focus {
    background: rgba(255, 255, 255, .12);
    border-color: var(--tech-gold-soft);
    box-shadow: 0 0 0 3px rgba(234, 220, 193, .15);
    color: #fff;
}

.surface-tech #main-content .careerFieldLabel {
    color: rgba(255, 255, 255, .86);
    display: block;
    margin-bottom: 8px;
}

.surface-tech #main-content .careerFieldHint {
    color: rgba(255, 255, 255, .62);
}

.surface-tech #main-content .careerFieldError {
    color: #fecaca;
    min-height: 18px;
}

.surface-tech #main-content .careerFile {
    color: rgba(255, 255, 255, .78);
    display: block;
    padding: 8px 10px;
}

.surface-tech #main-content .careerFile::file-selector-button {
    background: rgba(255, 255, 255, .14);
    border: 0;
    border-radius: var(--tech-radius);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    margin-right: 10px;
    min-height: 36px;
    padding: 8px 12px;
}

.surface-tech #main-content .careerSubmitBtn {
    background: var(--tech-gold-soft);
    border: 1px solid var(--tech-gold-soft);
    color: var(--tech-ink);
    min-height: 48px;
}

.surface-tech #main-content .careerSubmitBtn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--tech-ink);
    transform: translateY(-1px);
}

/* Technology conversion block */
.surface-tech #main-content .ctaBlock {
    padding: 0 0 clamp(72px, 6vw, 96px);
}

.surface-tech #main-content .ctaBlock--soft {
    padding-bottom: 60px;
}

.surface-tech #main-content .ctaBlockInner {
    align-items: center;
    background: var(--tech-ink);
    border-radius: var(--tech-radius);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    justify-content: space-between;
    padding: 44px 48px;
}

.surface-tech #main-content .ctaBlock--soft .ctaBlockInner {
    background: var(--tech-surface-soft);
    border: 1px solid var(--tech-border);
    color: var(--tech-text);
    padding: 30px;
}

.surface-tech #main-content .ctaBlockCopy {
    flex: 1 1 420px;
}

.surface-tech #main-content .ctaBlockCopy h2 {
    color: inherit;
    font-size: clamp(24px, 2.4vw, 30px);
    line-height: 1.2;
    margin: 0 0 10px;
}

.surface-tech #main-content .ctaBlockCopy p {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    margin: 0;
    max-width: 62ch;
}

.surface-tech #main-content .ctaBlock--soft .ctaBlockCopy p {
    color: var(--tech-text-muted);
}

.surface-tech #main-content .ctaBlockAction {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.surface-tech #main-content .ctaBlockPromise {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.surface-tech #main-content .ctaBlock--soft .ctaBlockPromise {
    color: var(--tech-text-muted);
}

.surface-tech #main-content .ctaBlock:not(.ctaBlock--soft) .btn-primary {
    background: var(--tech-gold-soft);
    border-color: var(--tech-gold-soft);
    color: var(--tech-ink);
}

.surface-tech #main-content .ctaBlock:not(.ctaBlock--soft) .btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--tech-ink);
}

.surface-tech #main-content .whatsapp-link {
    align-items: center;
    color: inherit;
    display: flex;
    gap: 8px;
    min-height: 44px;
    text-decoration: none;
}

.surface-tech #main-content .whatsapp-link:hover {
    color: var(--tech-teal);
}

.surface-tech #main-content .contactFlagIcon {
    border-radius: 2px;
    height: 14px;
    object-fit: cover;
    width: 18px;
}

.surface-tech #main-content .contactFlagOption {
    align-items: center;
    display: flex;
    gap: 8px;
}

.surface-tech #main-content .teamDirectory .diagonalMask img {
    clip-path: none;
}

@media (max-width: 767.98px) {
    .surface-tech .container,
    .surface-tech .container-fluid {
        --bs-gutter-x: 24px;
    }

    .surface-tech #main-content .pb-100,
    .surface-tech #main-content .py-100,
    .surface-tech #main-content .pb-160 {
        padding-bottom: 54px;
    }

    .surface-tech #main-content .py-100 {
        padding-top: 54px;
    }

    .surface-tech #main-content .careerMetaGrid {
        grid-template-columns: 1fr;
    }

    .surface-tech #main-content .careerApplySticky {
        position: static;
    }

    .surface-tech #main-content .careerSubmitBtn,
    .surface-tech #main-content .ctaBlockAction,
    .surface-tech #main-content .ctaBlockAction .btn {
        width: 100%;
    }

    .surface-tech #main-content .ctaBlockInner {
        padding: 30px 24px;
    }
}

@media (max-width: 420px) {
    .surface-tech .container,
    .surface-tech .container-fluid {
        --bs-gutter-x: 20px;
    }

    .surface-tech #main-content h1 {
        font-size: 34px;
    }

    .surface-tech #main-content :is(.headerPic h1, .mainSlider h1, .mainSlider h2) {
        font-size: 36px;
    }

    .surface-tech #main-content :is(.h3, h2.h3, .techSectionTitle) {
        font-size: 32px;
    }

    .surface-tech #main-content .serviceCardBody,
    .surface-tech #main-content :is(.careerMainCard, .careerContentBlock, .careerApplyCard) {
        padding: 22px;
    }

    .surface-tech .techBreadcrumb {
        padding: 8px 12px;
    }

    .surface-tech .techBreadcrumbList {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .surface-tech *,
    .surface-tech *::before,
    .surface-tech *::after {
        animation-duration: .01ms;
        animation-iteration-count: 1;
        scroll-behavior: auto;
        transition-duration: .01ms;
    }

    .surface-tech #main-content :is(.serviceCard, .insightCard, .searchResultItem, .careerContentBlock, .btn):hover {
        transform: none;
    }
}
