﻿:root {
    --tp-primary: #0b2b42;
    --tp-secondary: #2aa84a;
    --tp-accent: #1f7a3a;
    --tp-bg: #f6f4ef;
    --tp-surface: #ffffff;
    --tp-text: #0b2b42;
    --tp-muted: #5b6b7c;
    --tp-line: rgba(11, 43, 66, 0.12);
    --tp-header-h: 92px;
    --tp-font-display: "Clash Display", "Merriweather Sans", sans-serif;
    --tp-font-read: "Source Serif 4", Georgia, "Times New Roman", serif;
}

body.public-site {
    background: var(--tp-surface);
    color: var(--tp-text);
}

body.public-site .about-page__lead,
body.public-site .about-page__story p,
body.public-site .about-page__award p,
body.public-site .home-section-heading__lede,
body.public-site .home-card__excerpt,
body.public-site .about-area--editorial .dreamit-section-title p,
body.public-site .about-content-inner-text p,
body.public-site .home-expertise__lede {
    font-family: var(--tp-font-read);
    font-optical-sizing: auto;
}

body.public-site .why-techpam p,
body.public-site .home-contact-band__copy p,
body.public-site .hero-editorial .hero-description p {
    font-family: var(--tp-font-read);
    font-optical-sizing: auto;
    line-height: 1.8;
}

body.public-site:not(.is-home) {
    padding-top: var(--tp-header-h);
}

body.public-site.nav-open {
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 2000;
    background: var(--tp-secondary);
    color: #fff;
    padding: 10px 16px;
    font-weight: 700;
}

.skip-link:focus {
    top: 12px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.public-site a:focus-visible,
body.public-site button:focus-visible {
    outline: 2px solid var(--tp-secondary);
    outline-offset: 3px;
}

.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-cta--solid {
    background: var(--tp-secondary);
    color: #fff;
}

.site-cta--solid:hover,
.site-cta--solid:focus {
    background: var(--tp-accent);
    color: #fff;
}

.site-cta--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.site-cta--ghost:hover,
.site-cta--ghost:focus {
    background: #fff;
    color: var(--tp-primary);
}

.site-cta--ghost-dark {
    background: transparent;
    color: var(--tp-primary);
    border: 1px solid var(--tp-primary);
}

.site-cta--ghost-dark:hover,
.site-cta--ghost-dark:focus {
    background: var(--tp-primary);
    color: #fff;
}

.site-cta--text {
    min-height: auto;
    padding: 0;
    border: 0;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--tp-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-header {
    display: block !important;
    position: relative;
    z-index: 1300 !important;
    width: 100%;
    transition: padding 0.35s ease, background 0.35s ease;
}

.site-header.dreamit_nav_manu {
    display: block !important;
    border-bottom: 0;
    background: transparent;
    margin-bottom: 0;
}

.site-header.sticky,
.site-header--solid {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 14px 0;
    background: transparent !important;
    box-shadow: none;
    animation: none !important;
}

.site-header--overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 14px 0;
}

.site-header__shell {
    max-width: 1240px;
    margin: 0 auto;
    border: 1px solid transparent;
    border-radius: 22px;
    background: transparent;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.sticky .site-header__shell,
.site-header--solid .site-header__shell {
    background: rgba(11, 43, 66, 0.78);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 18px 40px rgba(7, 20, 32, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header--overlay:not(.sticky) .site-header__shell {
    background: linear-gradient(180deg, rgba(11, 43, 66, 0.28), rgba(11, 43, 66, 0.04));
    border-color: rgba(255, 255, 255, 0.08);
}

.site-header__bar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 16px;
}

.site-header.sticky .site-header__bar,
.site-header--solid .site-header__bar {
    padding: 8px 14px;
}

.site-header__logo {
    flex-shrink: 0;
    max-width: 58%;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 14px;
}

.site-header__logo img {
    display: block;
    max-height: 46px;
    width: auto;
    transition: max-height 0.3s ease;
}

.site-header.sticky .site-header__logo img,
.site-header--solid .site-header__logo img {
    max-height: 40px;
}

.site-header__nav {
    margin-left: auto;
}

.site-header__list {
    display: none;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.site-header__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header__link:hover,
.site-header__item.is-current > .site-header__link {
    color: #fff;
    background: rgba(42, 168, 74, 0.22);
}

.site-header__item.is-current > .site-header__link {
    box-shadow: inset 0 0 0 1px rgba(125, 255, 154, 0.35);
}

.site-header__caret {
    font-size: 9px;
    opacity: 0.7;
}

.site-header__item.has-sub {
    position: relative;
}

.site-header__sub {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 248px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(11, 43, 66, 0.08);
    border-radius: 16px;
    box-shadow: 0 22px 48px rgba(11, 43, 66, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.22s ease;
}

.site-header__item.has-sub:hover .site-header__sub,
.site-header__item.has-sub:focus-within .site-header__sub {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.site-header__sub a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--tp-text);
    font-weight: 600;
    text-decoration: none;
}

.site-header__sub a:hover,
.site-header__sub a:focus {
    background: rgba(42, 168, 74, 0.12);
    color: var(--tp-primary);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.site-header__nav + .site-header__actions {
    margin-left: 0;
}

.site-header__lang {
    position: relative;
}

.site-header__lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.site-header__lang-btn:hover,
.site-header__lang.is-open .site-header__lang-btn {
    border-color: rgba(125, 255, 154, 0.45);
    background: rgba(42, 168, 74, 0.18);
}

.site-header__lang .language-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    min-width: 220px;
    padding: 6px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(11, 43, 66, 0.16);
    list-style: none;
}

.site-header__lang.is-open .language-dropdown {
    display: block;
}

.site-header__lang .language-option-btn,
.site-mobile-nav .language-option-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: 0;
    background: transparent;
    color: var(--tp-text);
    font-weight: 600;
    cursor: pointer;
}

.site-mobile-nav .language-option-btn {
    color: rgba(255, 255, 255, 0.9);
}

.hero-editorial .hero-media img,
.hero-editorial .hero-media video,
body.public-site .hero-section.hero-fullscreen.hero-editorial .hero-media img,
body.public-site .hero-section.hero-fullscreen.hero-editorial .hero-media video {
    filter: none;
    transform: none;
}

.site-cta--hero,
.hero-editorial .hero-main-button a.site-cta--hero {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 18px 40px !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--tp-secondary) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(42, 168, 74, 0.45) !important;
}

.site-cta--hero:hover,
.site-cta--hero:focus,
.hero-editorial .hero-main-button a.site-cta--hero:hover,
.hero-editorial .hero-main-button a.site-cta--hero:focus {
    background: var(--tp-accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.hero-editorial .hero-main-button a.site-cta--hero:before {
    display: none !important;
}

.site-header__cta {
    display: none;
    min-height: 42px;
    padding: 0 20px;
    box-shadow: 0 8px 20px rgba(42, 168, 74, 0.28);
}

.site-header__toggle {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 0;
    border-radius: 14px;
    background: var(--tp-secondary);
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1400;
}

.site-header__toggle span:not(.visually-hidden) {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .site-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-nav {
    position: fixed;
    inset: var(--tp-header-h) 0 0;
    z-index: 1190;
    background: var(--tp-primary);
    padding: 28px 24px 48px;
    overflow: auto;
}

.site-mobile-nav__list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.site-mobile-nav a,
.site-mobile-nav button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #fff;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
}

.site-mobile-nav .has-sub ul,
.site-mobile-nav .nav-item-language > div {
    padding: 8px 0 16px 8px;
}

.site-mobile-nav .has-sub ul a,
.site-mobile-nav .language-option-btn {
    font-size: 16px;
    font-family: inherit;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
}

.site-mobile-nav .language-option-btn {
    background: transparent;
}

.hero-editorial.hero-section {
    height: auto;
    min-height: 88vh;
    padding-top: var(--tp-header-h);
    padding-bottom: 64px;
}

.hero-editorial .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 43, 66, 0.78) 0%, rgba(11, 43, 66, 0.28) 70%, rgba(11, 43, 66, 0.12) 100%) !important;
}

.hero-editorial .hero-content-wrap {
    padding-top: 72px;
    padding-bottom: 28px;
    text-align: left;
}

.hero-editorial .hero-kicker {
    margin: 0 0 12px;
    color: var(--tp-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-editorial .hero-title h1 {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: clamp(42px, 8vw, 92px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
}

.hero-editorial .hero-description p {
    max-width: 34rem;
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero-editorial .hero-button {
    margin-top: 32px;
    justify-content: flex-start;
}

.site-mobile-nav[hidden] {
    display: none !important;
}

body.nav-open .site-mobile-nav {
    display: block !important;
}

.home-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.home-section-heading--split {
    margin-left: 0;
    text-align: left;
}

.home-section-heading__eyebrow,
.home-section-heading__eyebrow a {
    color: var(--tp-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

.home-section-heading h2 {
    margin: 10px 0 0;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--tp-primary);
}

.home-section-heading h2 span {
    color: var(--tp-muted);
    font-weight: 400;
}

.home-section-heading__lede {
    margin: 16px 0 0;
    color: var(--tp-muted);
    font-size: 17px;
}

.home-section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 40px;
}

.home-highlights,
.home-expertise,
.home-journal,
.is-home .about-area,
.is-home .content-density-area {
    padding: 88px 0;
}

.home-highlights,
.home-journal,
.is-home .content-density-area {
    background: var(--tp-surface);
}

.is-home .about-area {
    background: var(--tp-bg);
}

.home-expertise {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(42, 168, 74, 0.32), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(125, 255, 154, 0.16), transparent 30%),
        linear-gradient(155deg, #072032 0%, #0b2b42 46%, #134528 100%);
    color: #fff;
}

.home-expertise__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-expertise__orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.45;
    animation: why-orb 13s ease-in-out infinite;
}

.home-expertise__orbs span:nth-child(1) {
    width: 260px;
    height: 260px;
    left: -70px;
    top: 90px;
    background: #2aa84a;
}

.home-expertise__orbs span:nth-child(2) {
    width: 170px;
    height: 170px;
    right: 12%;
    top: 30px;
    background: #7dff9a;
    animation-delay: -4s;
}

.home-expertise__orbs span:nth-child(3) {
    width: 210px;
    height: 210px;
    right: -40px;
    bottom: 50px;
    background: #1f7a3a;
    animation-delay: -8s;
}

.home-expertise > .container {
    position: relative;
    z-index: 1;
}

.home-expertise__intro {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.home-expertise__intro .home-section-heading__eyebrow {
    color: #7dff9a;
}

.home-expertise__intro h2 {
    margin: 10px 0 14px;
    font-family: var(--tp-font-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
}

.home-expertise__lede {
    margin: 0 auto;
    max-width: 40rem;
    font-family: var(--tp-font-read);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.home-expertise__stage {
    perspective: 1400px;
}

.home-expertise__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    transform-style: preserve-3d;
}

.home-expertise__card {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 28%;
    --lift: 0px;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    min-height: 100%;
    padding: 28px 26px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(125, 255, 154, 0.2);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
    transform-style: preserve-3d;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: why-card-in 0.75s ease both;
    animation-delay: calc(var(--i, 1) * 0.1s);
}

.home-expertise__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(125, 255, 154, 0.28), transparent 46%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.home-expertise__card:hover {
    --lift: -12px;
    border-color: rgba(125, 255, 154, 0.55);
    box-shadow: 0 32px 64px rgba(42, 168, 74, 0.28);
}

.home-expertise__card:hover::after {
    opacity: 1;
}

.home-expertise__card > * {
    position: relative;
    z-index: 1;
}

.home-expertise__index {
    display: block;
    font-family: var(--tp-font-display);
    font-size: 40px;
    line-height: 1;
    color: rgba(125, 255, 154, 0.35);
}

.home-expertise__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #2aa84a, #0b2b42);
    box-shadow: 0 12px 28px rgba(42, 168, 74, 0.45);
    transform: translateZ(28px);
    transition: transform 0.3s ease;
}

.home-expertise__card:hover .home-expertise__icon {
    transform: translateZ(36px) translateY(-4px) rotate(-8deg);
}

.home-expertise__card h3 {
    margin: 4px 0 0;
    font-family: var(--tp-font-display);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 500;
    line-height: 1.15;
}

.home-expertise__card h3 a {
    color: #fff;
    text-decoration: none;
}

.home-expertise__count {
    margin: 0;
    color: #7dff9a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-expertise__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.home-expertise__chips li {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.home-expertise__cta {
    align-self: flex-start;
    margin-top: auto;
    min-height: 44px;
    padding: 0 20px;
    font-size: 12px;
}

.home-highlights {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(680px 320px at 8% 12%, rgba(42, 168, 74, 0.14), transparent 58%),
        radial-gradient(520px 280px at 92% 18%, rgba(11, 43, 66, 0.1), transparent 55%),
        linear-gradient(180deg, #f6f4ef 0%, #ffffff 48%, #f3f7f4 100%);
}

.home-highlights__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-highlights__orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    animation: why-orb 14s ease-in-out infinite;
}

.home-highlights__orbs span:nth-child(1) {
    width: 220px;
    height: 220px;
    left: -60px;
    top: 120px;
    background: #2aa84a;
}

.home-highlights__orbs span:nth-child(2) {
    width: 160px;
    height: 160px;
    right: 10%;
    top: 40px;
    background: #7dff9a;
    animation-delay: -5s;
}

.home-highlights__orbs span:nth-child(3) {
    width: 200px;
    height: 200px;
    right: -50px;
    bottom: 80px;
    background: #0b2b42;
    opacity: 0.18;
    animation-delay: -8s;
}

.home-highlights > .container {
    position: relative;
    z-index: 1;
}

.home-highlights__heading {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
    text-align: center;
}

.home-highlights__heading .home-section-heading__lede {
    margin-left: auto;
    margin-right: auto;
}

.home-highlights__stage {
    perspective: 1400px;
}

.home-highlights__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    transform-style: preserve-3d;
}

.home-highlight-tile {
    box-shadow:
        0 18px 40px rgba(11, 43, 66, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
}

.home-journal__heading {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
    text-align: left;
    margin-bottom: 36px;
}

.home-journal__heading .home-section-heading__lede {
    max-width: 36rem;
}

.home-journal__controls {
    display: flex;
    gap: 10px;
}

.home-journal__arrow {
    width: 52px;
    height: 52px;
    border: 1px solid var(--tp-primary);
    border-radius: 999px;
    background: #fff;
    color: var(--tp-primary);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.home-journal__arrow:hover:not(:disabled),
.home-journal__arrow:focus-visible:not(:disabled) {
    background: var(--tp-secondary);
    border-color: var(--tp-secondary);
    color: #fff;
    transform: translateY(-2px);
}

.home-journal__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.home-journal__viewport {
    overflow: hidden;
    outline: none;
}

.home-journal__track {
    display: flex;
    gap: 28px;
    will-change: transform;
}

.home-journal__track.is-animating {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-journal__slide {
    flex: 0 0 86%;
    min-width: 0;
}

.home-journal__slider.is-ready .home-journal__slide {
    opacity: 0.42;
    transform: scale(0.94) translateY(18px);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-journal__slider.is-ready .home-journal__slide.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.home-journal__slide .home-card__media img {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-journal__slide.is-visible .home-card__media img {
    transform: scale(1.06);
}

.home-journal__progress {
    height: 3px;
    margin-top: 22px;
    background: rgba(11, 43, 66, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.home-journal__progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--tp-secondary);
    transform-origin: left center;
    transform: scaleX(0.33);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    .home-journal__track,
    .home-journal__slide,
    .home-journal__slide .home-card__media img,
    .home-journal__progress-bar {
        transition: none;
    }
}

.home-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--tp-surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(11, 43, 66, 0.08);
}

.home-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--tp-primary);
}

.home-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.home-card:hover .home-card__media img {
    transform: scale(1.07);
}

.home-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 42px;
}

.home-card__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 43, 66, 0.88);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 22px 24px;
}

.home-card__meta,
.home-card__meta a {
    color: var(--tp-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

.home-card__title {
    margin: 0;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 26px;
    line-height: 1.15;
}

.home-card__title a {
    color: var(--tp-primary);
    text-decoration: none;
}

.home-card__excerpt {
    margin: 0;
    color: var(--tp-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-card__link {
    margin-top: auto;
    color: var(--tp-accent);
    font-weight: 700;
    text-decoration: none;
}

.home-contact-band {
    padding: 88px 0;
    background-size: cover;
    background-position: center;
}

.home-contact-band__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}

.home-contact-band__copy h2,
.home-contact-band .call-title h2 {
    margin: 0 0 16px;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    color: #fff;
}

.home-contact-band__copy p,
.home-contact-band__eyebrow {
    color: rgba(255, 255, 255, 0.9);
}

.home-contact-band__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--tp-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-contact-band__copy .site-cta--hero {
    margin-top: 8px;
}

.home-contact-band__panel {
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
    box-shadow: 18px 22px 50px rgba(0, 0, 0, 0.28);
}

.home-contact-band__cube {
    position: absolute;
    top: -18px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2aa84a, #0b2b42);
    transform: rotateX(18deg) rotateY(-28deg) rotateZ(12deg);
    box-shadow: 10px 14px 0 rgba(42, 168, 74, 0.28);
}

.home-contact-band__panel h3 {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 28px;
}

.home-contact-band__panel a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
}

.home-contact-band__panel a span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about-visual {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.about-visual__stage {
    position: relative;
    width: min(100%, 420px);
    height: 420px;
    transform-style: preserve-3d;
    transform: rotateX(12deg) rotateY(-18deg);
}

.about-visual__glow {
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 168, 74, 0.45) 0%, rgba(11, 43, 66, 0.08) 70%);
    filter: blur(8px);
}

.about-visual__cube {
    position: absolute;
    border-radius: 14px;
    background: linear-gradient(145deg, #1a4d2e 0%, #2aa84a 45%, #0b2b42 100%);
    box-shadow: 16px 22px 40px rgba(11, 43, 66, 0.28);
}

.about-visual__cube--lg {
    width: 180px;
    height: 180px;
    left: 90px;
    top: 110px;
    transform: rotateX(18deg) rotateY(-24deg);
    animation: about-float 7s ease-in-out infinite;
}

.about-visual__cube--md {
    width: 92px;
    height: 92px;
    right: 28px;
    top: 48px;
    transform: rotateX(22deg) rotateY(28deg);
    animation: about-float 5.5s ease-in-out infinite reverse;
}

.about-visual__cube--sm {
    width: 56px;
    height: 56px;
    left: 36px;
    bottom: 70px;
    background: linear-gradient(145deg, #0b2b42, #2aa84a);
    animation: about-float 6s ease-in-out infinite;
}

.about-visual__panel {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 210px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(11, 43, 66, 0.16);
    color: var(--tp-primary);
    transform: translateZ(40px);
}

.about-visual__panel i {
    color: var(--tp-secondary);
}

.about-visual__panel strong {
    font-size: 13px;
    line-height: 1.3;
}

.about-visual__panel--one {
    left: 0;
    top: 36px;
}

.about-visual__panel--two {
    right: 0;
    top: 168px;
}

.about-visual__panel--three {
    left: 24px;
    bottom: 24px;
}

@keyframes about-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -12px; }
}

.about-area--editorial .about-content-inner {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.about-area--editorial .about-content-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(42, 168, 74, 0.12);
    color: var(--tp-accent);
}

.about-area--editorial .about-content-inner-text h3 {
    margin: 0 0 4px;
    font-size: 18px;
    color: var(--tp-primary);
}

.is-home .about-area .dreamit-section-title h2 {
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    color: var(--tp-primary);
}

.is-home .about-area .dreamit-section-title h3,
.is-home .about-area .dreamit-section-title h5 {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .about-visual__cube {
        animation: none;
    }
}

.site-footer.footer-area {
    padding-top: 72px;
}

.site-footer .footer-title h2 {
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 22px;
    color: #fff;
}

.site-footer .widget-menu a,
.site-footer .footer-address-desc p,
.site-footer .footer-widget-address p,
.site-footer .recent-post-text h4 a,
.site-footer .coppy-right-text-left a,
.site-footer .footer-bottom-right a {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer .footer-bg-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-area,
.mean-container {
    display: none !important;
}

@media (min-width: 768px) {
    .home-highlights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .home-journal__slide {
        flex-basis: calc(50% - 14px);
    }

    .home-expertise__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .home-expertise__card:nth-child(2n) {
        --lift: -14px;
    }

    .home-expertise__card:nth-child(2n):hover {
        --lift: -22px;
    }

    .site-header__cta {
        display: inline-flex;
    }

    .home-contact-band__grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .site-header,
    .site-header.dreamit_nav_manu,
    #sticky-header.site-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .site-header.sticky {
        position: fixed !important;
        top: 0 !important;
    }

    .site-header__nav {
        display: none !important;
    }

    .site-header__actions {
        margin-left: auto !important;
    }

    .site-header__toggle {
        display: inline-flex !important;
    }

    .site-header__lang .language-switcher-label {
        display: none;
    }

    .site-mobile-nav {
        display: none;
    }

    body.nav-open .site-mobile-nav:not([hidden]) {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .site-header__list {
        display: flex;
    }

    .site-header__toggle,
    .site-mobile-nav {
        display: none !important;
    }

    .site-header__actions {
        margin-left: 12px;
    }

    .home-highlights__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
        align-items: stretch;
    }

    .home-highlight-tile:nth-child(3n+2) {
        --lift: -18px;
        z-index: 2;
    }

    .home-highlight-tile:nth-child(3n+2):hover {
        --lift: -28px;
    }

    .home-expertise__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .home-expertise__card:nth-child(3n+2) {
        --lift: -16px;
    }

    .home-expertise__card:nth-child(3n+2):hover {
        --lift: -26px;
    }

    .home-journal__slide {
        flex-basis: calc(33.333% - 19px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-highlights__orbs span,
    .home-highlight-tile,
    .home-expertise__orbs span,
    .home-expertise__card {
        animation: none;
    }

    .home-highlight-tile,
    .home-highlight-tile:nth-child(3n+2),
    .home-highlight-tile:hover,
    .home-highlight-tile:nth-child(3n+2):hover,
    .home-expertise__card,
    .home-expertise__card:nth-child(2n),
    .home-expertise__card:hover,
    .home-expertise__card:nth-child(2n):hover {
        --lift: 0px;
        transform: none;
    }
}

@media (max-width: 575px) {
    .hero-editorial.hero-section {
        min-height: 78vh;
        padding-bottom: 40px;
    }
}

.why-techpam.content-density-area {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(42, 168, 74, 0.28), transparent 32%),
        radial-gradient(circle at 88% 8%, rgba(42, 168, 74, 0.18), transparent 28%),
        linear-gradient(160deg, #072032 0%, #0b2b42 48%, #123d28 100%);
    color: #fff;
}

.why-techpam.content-density-area::before {
    display: none;
}

.is-home .why-techpam.content-density-area {
    background:
        radial-gradient(circle at 12% 18%, rgba(42, 168, 74, 0.28), transparent 32%),
        radial-gradient(circle at 88% 8%, rgba(42, 168, 74, 0.18), transparent 28%),
        linear-gradient(160deg, #072032 0%, #0b2b42 48%, #123d28 100%);
}

.why-techpam__orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.55;
    animation: why-orb 12s ease-in-out infinite;
}

.why-techpam__orbs span:nth-child(1) {
    width: 280px;
    height: 280px;
    left: -80px;
    top: 80px;
    background: #2aa84a;
}

.why-techpam__orbs span:nth-child(2) {
    width: 180px;
    height: 180px;
    right: 8%;
    top: 40px;
    background: #7dff9a;
    animation-delay: -4s;
}

.why-techpam__orbs span:nth-child(3) {
    width: 220px;
    height: 220px;
    right: -40px;
    bottom: 60px;
    background: #1f7a3a;
    animation-delay: -7s;
}

@keyframes why-orb {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

.why-techpam__intro {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.why-techpam__intro .home-section-heading__eyebrow {
    color: #7dff9a;
}

.why-techpam__intro h2 {
    margin: 10px 0 20px;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
}

.why-techpam__leads p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

.why-techpam__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.why-techpam__card {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 30%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 32px 28px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(125, 255, 154, 0.18);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
    transform-style: preserve-3d;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: why-card-in 0.8s ease both;
    animation-delay: calc(var(--i, 1) * 0.12s);
}

.why-techpam__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(125, 255, 154, 0.22), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.why-techpam__card:hover {
    border-color: rgba(125, 255, 154, 0.55);
    box-shadow: 0 28px 60px rgba(42, 168, 74, 0.28);
}

.why-techpam__card:hover::after {
    opacity: 1;
}

.why-techpam__index {
    display: block;
    margin-bottom: 18px;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 42px;
    line-height: 1;
    color: rgba(125, 255, 154, 0.35);
}

.why-techpam__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #2aa84a, #0b2b42);
    box-shadow: 0 10px 24px rgba(42, 168, 74, 0.4);
}

.why-techpam__card h3 {
    margin: 0 0 12px;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
}

.why-techpam__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.why-techpam__footer {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 48px auto 0;
    text-align: center;
}

.why-techpam__footer p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
}

.why-techpam__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

@keyframes why-card-in {
    from {
        opacity: 0;
        transform: perspective(900px) translateY(28px);
    }
    to {
        opacity: 1;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
    }
}

@media (min-width: 768px) {
    .why-techpam__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .why-techpam__card:nth-child(2) {
        transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-techpam__orbs span,
    .why-techpam__card {
        animation: none;
    }
}

.site-loader.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: 100%;
    height: 100%;
    margin: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(42, 168, 74, 0.22), transparent 34%),
        #0b2b42;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader .loder-section,
.site-loader .loader {
    display: none !important;
}

.site-loader__mark {
    position: relative;
    width: 148px;
    height: 148px;
}

.site-loader__orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-top-color: #2aa84a;
    border-right-color: #7dff9a;
    animation: site-loader-spin 0.9s linear infinite;
}

.site-loader__orbit--inner {
    inset: 28px;
    border-width: 3px;
    border-top-color: #fff;
    border-right-color: rgba(42, 168, 74, 0.35);
    border-bottom-color: #2aa84a;
    animation-duration: 1.35s;
    animation-direction: reverse;
}

.site-loader__core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #7dff9a, #2aa84a 58%, #1f7a3a);
    box-shadow: 0 0 28px rgba(42, 168, 74, 0.85);
    transform: translate(-50%, -50%);
    animation: site-loader-pulse 1.2s ease-in-out infinite;
}

.site-loader__label {
    margin: 0;
    color: #fff;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

body.loaded .site-loader.loader-wrapper {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
}

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

@keyframes site-loader-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.25); opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
    .site-loader__orbit,
    .site-loader__core {
        animation: none;
    }
}

.page-hero {
    position: relative;
    padding: 72px 0 64px;
    background-color: var(--tp-primary);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-hero__crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero__crumbs a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.page-hero__crumbs a:hover,
.page-hero__crumbs a:focus {
    color: #7dff9a;
}

.page-hero h1 {
    margin: 0;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
}

.page-hero__lede {
    max-width: 42rem;
    margin: 18px 0 0;
    font-family: var(--tp-font-read);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.page-hero--services {
    padding: 80px 0 72px;
}

.page-hero--service {
    padding: 48px 0 56px;
    overflow: hidden;
    background:
        radial-gradient(720px 320px at 88% 18%, rgba(42, 168, 74, 0.28), transparent 58%),
        linear-gradient(135deg, #0b2b42 0%, #0e3a4f 52%, #145032 100%);
}

.page-hero--service__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.page-hero--service .page-hero__lede {
    max-width: 38rem;
}

.page-hero--service .home-section-heading__eyebrow {
    color: #7dff9a;
}

.service-hero-media {
    position: relative;
    margin: 0;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.service-hero-media__glow {
    position: absolute;
    inset: auto -24px -28px auto;
    width: 140px;
    height: 140px;
    border-radius: 32px;
    background: linear-gradient(135deg, #2aa84a, #0b2b42);
    transform: rotate(18deg);
    opacity: 0.55;
    z-index: 0;
}

.service-hero-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    background: #f6f4ef;
    border-radius: 20px;
}

.page-hero--knowledge,
.page-hero--faq,
.page-hero--contact {
    padding: 56px 0 40px;
}

.page-hero--knowledge h1,
.page-hero--faq h1,
.page-hero--contact h1 {
    font-size: clamp(34px, 6vw, 58px);
}

.page-hero--knowledge .page-hero__lede,
.page-hero--faq .page-hero__lede,
.page-hero--contact .page-hero__lede {
    max-width: 36rem;
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.knowledge-toolbar {
    position: sticky;
    top: 96px;
    z-index: 20;
    padding: 16px 0;
    background: rgba(246, 244, 239, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tp-line);
}

.knowledge-toolbar__inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.knowledge-search {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 420px;
}

.knowledge-search input {
    flex: 1;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--tp-line);
    border-radius: 999px;
    background: #fff;
    color: var(--tp-primary);
    font-size: 14px;
}

.knowledge-search .site-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
}

.knowledge-grid {
    padding-top: 32px;
}

.knowledge-empty {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    font-family: var(--tp-font-read);
    color: #243746;
}

.knowledge-archive {
    margin: 18px 0 0;
    text-align: center;
}

.knowledge-archive a {
    color: var(--tp-accent);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.knowledge-archive a:hover,
.knowledge-archive a:focus {
    text-decoration: underline;
}

.knowledge-seo {
    max-width: 46rem;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--tp-line);
}

.faq-seo,
.contact-seo {
    padding: 8px 0 64px;
    background: var(--tp-bg);
}

.faq-seo .container,
.contact-seo .container {
    max-width: 46rem;
}

.knowledge-seo p,
.faq-seo p,
.contact-seo p {
    margin: 0 0 14px;
    font-family: var(--tp-font-read);
    font-size: 1rem;
    line-height: 1.75;
    color: #243746;
}

.knowledge-seo p:last-child,
.faq-seo p:last-child,
.contact-seo p:last-child {
    margin-bottom: 0;
}

.faq-seo a,
.contact-seo a {
    color: var(--tp-accent);
    font-weight: 700;
}

.about-page {
    padding: 88px 0;
    background: var(--tp-bg);
}

.about-page__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.about-page__visual {
    position: relative;
    min-height: 420px;
}

.about-page__visual .about-visual {
    min-height: 420px;
}

.about-page__stat {
    position: absolute;
    left: 8px;
    bottom: 18px;
    z-index: 2;
    min-width: 160px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(145deg, #2aa84a, #1f7a3a);
    color: #fff;
    box-shadow: 16px 22px 40px rgba(11, 43, 66, 0.22);
    transform: rotateX(12deg) rotateY(-16deg);
}

.about-page__stat strong {
    display: block;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: 42px;
    line-height: 1;
}

.about-page__stat span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.about-page__intro .home-section-heading__eyebrow {
    margin-bottom: 8px;
}

.about-page__intro h2 {
    margin: 0 0 18px;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--tp-primary);
}

.about-page__lead {
    margin: 0 0 24px;
    font-family: var(--tp-font-read);
    font-size: 1.2rem;
    font-optical-sizing: auto;
    line-height: 1.8;
    color: #243746;
}

.about-page__award {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(11, 43, 66, 0.08);
}

.about-page__award img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.about-page__award h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--tp-primary);
}

.about-page__award p {
    margin: 0;
    color: var(--tp-muted);
}

.about-page__story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 48px;
    margin-bottom: 36px;
}

.about-page__story p {
    margin: 0 0 18px;
    font-family: var(--tp-font-read);
    font-size: 1.125rem;
    font-optical-sizing: auto;
    line-height: 1.9;
    color: #243746;
}

.about-page__story a {
    color: var(--tp-accent);
    font-weight: 700;
}

.about-page__checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.about-page__checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(11, 43, 66, 0.06);
    color: var(--tp-primary);
    font-weight: 600;
}

.about-page__checks i {
    color: var(--tp-secondary);
}

.about-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (min-width: 768px) {
    .about-page__story {
        grid-template-columns: 1fr 1fr;
    }

    .about-page__checks {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .about-page__top {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 56px;
    }
}

.service-category-nav {
    position: sticky;
    top: 96px;
    z-index: 20;
    padding: 16px 0;
    background: rgba(246, 244, 239, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tp-line);
}

.service-category-nav__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-category-nav__label {
    margin: 0;
    color: var(--tp-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-category-nav__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-category-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--tp-line);
    color: var(--tp-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.service-category-chip:hover,
.service-category-chip--active {
    background: var(--tp-secondary);
    border-color: var(--tp-secondary);
    color: #fff;
}

.services-intro {
    padding: 36px 0 8px;
    background: var(--tp-bg);
}

.services-intro p {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
    font-family: var(--tp-font-read);
    font-size: 1.125rem;
    line-height: 1.8;
    color: #243746;
}

.services-intro a {
    color: var(--tp-accent);
    font-weight: 700;
}

.services-intro__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.services-intro__pills span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(42, 168, 74, 0.12);
    color: var(--tp-primary);
    font-size: 13px;
    font-weight: 700;
}

.service-catalog {
    padding: 28px 0 72px;
    background: var(--tp-bg);
}

.service-catalog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.service-tile {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 20%;
    --lift: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(11, 43, 66, 0.06);
    box-shadow: 0 18px 40px rgba(11, 43, 66, 0.08);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: why-card-in 0.7s ease both;
    animation-delay: calc(var(--i, 1) * 0.08s);
}

.service-tile:hover {
    border-color: rgba(42, 168, 74, 0.35);
    box-shadow: 0 28px 60px rgba(11, 43, 66, 0.16);
}

.home-highlights .home-highlight-tile:hover {
    --lift: -10px;
    box-shadow:
        0 34px 70px rgba(11, 43, 66, 0.2),
        0 0 0 1px rgba(42, 168, 74, 0.18);
}

.service-tile__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--tp-primary);
}

.service-tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 43, 66, 0.05) 20%, rgba(11, 43, 66, 0.55) 100%),
        radial-gradient(420px circle at var(--mx) var(--my), rgba(125, 255, 154, 0.28), transparent 46%);
    opacity: 0.85;
    transition: opacity 0.35s ease;
}

.service-tile:hover .service-tile__media::after {
    opacity: 1;
}

.service-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tile:hover .service-tile__media img {
    transform: scale(1.12);
}

.service-tile__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 48px;
}

.service-tile__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    max-width: calc(100% - 88px);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 43, 66, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-tile__icon {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #2aa84a, #0b2b42);
    color: #fff;
    box-shadow: 0 10px 20px rgba(42, 168, 74, 0.35);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-tile:hover .service-tile__icon {
    transform: translateY(-6px) rotate(-8deg);
}

.service-tile__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 22px 24px;
}

.service-tile__cat {
    color: var(--tp-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

.service-tile__body h2,
.service-tile__body h3 {
    margin: 0;
    font-family: var(--tp-font-display);
    font-size: 26px;
    line-height: 1.15;
}

.service-tile__body h2 a,
.service-tile__body h3 a {
    color: var(--tp-primary);
    text-decoration: none;
}

.service-tile__body p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--tp-font-read);
    color: #243746;
    line-height: 1.65;
}

.service-tile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.service-tile__actions .site-cta {
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .service-tile {
        animation: none;
        transform: none;
    }
}

.services-pager {
    margin-top: 36px;
}

.services-pager .pagination {
    justify-content: center;
    gap: 6px;
}

.services-pager .page-link {
    border-radius: 999px;
    color: var(--tp-primary);
    border-color: var(--tp-line);
}

.services-pager .page-item.active .page-link {
    background: var(--tp-secondary);
    border-color: var(--tp-secondary);
}

.services-path {
    padding: 72px 0;
    background: #fff;
}

.services-path h2 {
    margin: 8px 0 32px;
    font-family: var(--tp-font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--tp-primary);
}

.services-path__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.services-path article {
    padding: 28px;
    border-radius: 22px;
    background: var(--tp-bg);
    border: 1px solid var(--tp-line);
}

.services-path article span {
    display: block;
    margin-bottom: 10px;
    font-family: var(--tp-font-display);
    font-size: 28px;
    color: var(--tp-secondary);
}

.services-path article h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--tp-primary);
}

.services-path article p {
    margin: 0;
    font-family: var(--tp-font-read);
    color: #243746;
    line-height: 1.75;
}

.service-faq {
    padding: 80px 0;
    background: var(--tp-bg);
}

.service-faq--page {
    padding: 40px 0 24px;
}

.service-faq__intro {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.service-faq__intro h2 {
    margin: 8px 0 12px;
    font-family: var(--tp-font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--tp-primary);
}

.service-faq__intro p {
    font-family: var(--tp-font-read);
    color: #243746;
}

.service-faq__list {
    max-width: 860px;
    margin: 0 auto;
}

.service-faq details {
    margin-bottom: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--tp-line);
    overflow: hidden;
}

.service-faq summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 22px;
    font-weight: 700;
    color: var(--tp-primary);
}

.service-faq summary::-webkit-details-marker {
    display: none;
}

.service-faq summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tp-secondary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.service-faq details[open] summary::after {
    content: "\2212";
}

.service-faq details p,
.service-faq__answer {
    padding: 0 22px 18px;
    margin: 0;
    font-family: var(--tp-font-read);
    color: #243746;
    line-height: 1.75;
}

.service-faq__cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.service-detail__body {
    padding: 56px 0 72px;
    background: #fff;
}

.service-detail__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.service-detail__image {
    width: 100%;
    max-height: 420px;
    margin-bottom: 28px;
    object-fit: cover;
    border-radius: 22px;
}

.service-prose,
.service-details-body {
    font-family: var(--tp-font-read);
    font-size: 1.125rem;
    line-height: 1.85;
    color: #243746;
}

.service-details-body h2,
.service-details-body h3 {
    font-family: var(--tp-font-display);
    color: var(--tp-primary);
    line-height: 1.2;
}

.service-offer {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    background: var(--tp-primary);
    color: #fff;
    box-shadow: 0 22px 50px rgba(11, 43, 66, 0.22);
}

.service-offer h2 {
    margin: 8px 0 12px;
    font-family: var(--tp-font-display);
    font-size: 28px;
    color: #fff;
}

.service-offer p {
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--tp-font-read);
}

.service-offer .site-cta {
    width: 100%;
    margin: 16px 0 10px;
}

.service-offer__price {
    font-weight: 700;
    color: #7dff9a !important;
}

.service-offer__meta {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 8px;
}

.contact-stage {
    padding: 48px 0 24px;
    background: var(--tp-bg);
}

.contact-stage__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.contact-aside h2,
.contact-form-card h2 {
    margin: 8px 0 12px;
    font-family: var(--tp-font-display);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    color: var(--tp-primary);
}

.contact-aside__lede,
.contact-form-card__hint {
    margin: 0 0 22px;
    font-family: var(--tp-font-read);
    color: #243746;
    line-height: 1.7;
}

.contact-facts {
    display: grid;
    gap: 12px;
}

.contact-fact {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--tp-line);
}

.contact-fact__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #2aa84a, #0b2b42);
}

.contact-fact h3 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tp-accent);
}

.contact-fact p {
    margin: 0;
    color: var(--tp-primary);
    line-height: 1.5;
}

.contact-fact a {
    color: var(--tp-primary);
    font-weight: 700;
    text-decoration: none;
}

.contact-fact a:hover,
.contact-fact a:focus {
    color: var(--tp-accent);
}

.contact-form-card {
    scroll-margin-top: 120px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(11, 43, 66, 0.06);
    box-shadow: 0 22px 50px rgba(11, 43, 66, 0.1);
}

.contact-form-card__status {
    margin: 0 0 18px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(42, 168, 74, 0.12);
    color: var(--tp-accent);
    font-weight: 700;
}

.contact-form {
    position: relative;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-form__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tp-primary);
}

.contact-form__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--tp-line);
    border-radius: 14px;
    background: var(--tp-bg);
    color: var(--tp-primary);
    font-family: inherit;
    font-size: 15px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: 2px solid var(--tp-secondary);
    outline-offset: 1px;
    background: #fff;
}

.contact-form__field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form__error {
    margin: 6px 0 0;
    color: #b42318;
    font-size: 13px;
}

.contact-form .site-cta {
    width: 100%;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .service-catalog__grid,
    .services-path__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-form__field--full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .service-catalog__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-path__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-detail__layout {
        grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
        gap: 40px;
    }

    .page-hero--service__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
        gap: 48px;
    }

    .service-offer {
        position: sticky;
        top: 108px;
    }

    .contact-stage__layout {
        grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
        gap: 40px;
    }

    .contact-form-card {
        position: sticky;
        top: 108px;
    }

    .knowledge-toolbar__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .knowledge-search {
        flex: 0 0 320px;
    }
}

/* SEO homepage sections — reuse previous dark glass / 3D expertise style */
.seo-home-section {
    --seo-ink: #fff;
    --seo-accent: #7dff9a;
    --seo-muted: rgba(255, 255, 255, 0.82);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.seo-home-section.home-expertise > .container,
.seo-home-section.why-techpam > .container {
    position: relative;
    z-index: 1;
}

.seo-home-reveal,
.seo-tilt-card,
.seo-home-trust .why-techpam__card {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-home-reveal.is-visible,
.seo-tilt-card.is-visible,
.seo-home-trust .why-techpam__card.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.seo-tilt-card {
    --rx: 0deg;
    --ry: 0deg;
    --lift: 0px;
    --mx: 50%;
    --my: 30%;
    transform-style: preserve-3d;
    will-change: transform;
}

.seo-tilt-card.is-visible {
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
    transition:
        opacity 0.7s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.seo-home-section .home-section-heading {
    max-width: 46rem;
    margin: 0 auto 44px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.seo-home-section .home-section-heading__eyebrow {
    color: #7dff9a;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 650;
    margin: 0 0 0.55rem;
}

.seo-home-section .home-section-heading h2 {
    color: #fff;
    font-family: "Clash Display", "Merriweather Sans", sans-serif;
    font-weight: 500;
    line-height: 1.05;
    margin: 10px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
}

.seo-home-pillar__lede,
.seo-home-section .home-section-heading > p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 40rem;
}

.seo-home-pillar--tone-b {
    background:
        radial-gradient(circle at 86% 16%, rgba(125, 255, 154, 0.18), transparent 32%),
        radial-gradient(circle at 12% 84%, rgba(42, 168, 74, 0.28), transparent 34%),
        linear-gradient(165deg, #061824 0%, #0b2b42 48%, #0f3a2a 100%);
}

.seo-home-pillar__glow {
    display: none;
}

.seo-home-pillar__grid {
    display: grid;
    gap: 22px;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.seo-home-pillar__panel.home-expertise__card {
    gap: 0;
}

.seo-home-pillar__panel-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(125, 255, 154, 0.28), transparent 46%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.seo-home-pillar__panel:hover .seo-home-pillar__panel-shine,
.seo-home-pillar__panel:focus-within .seo-home-pillar__panel-shine {
    opacity: 1;
}

.seo-home-pillar__panel h3,
.seo-home-pillar__panel ul {
    position: relative;
    z-index: 1;
}

.seo-home-pillar__panel h3 {
    color: #7dff9a;
    font-size: 1.05rem;
    font-weight: 650;
    margin: 0 0 0.95rem;
}

.seo-home-pillar__panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.seo-home-pillar__panel li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
}

.seo-home-pillar__panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #7dff9a;
}

.seo-home-pillar__panel--accent {
    background: rgba(125, 255, 154, 0.1);
    border-color: rgba(125, 255, 154, 0.35);
}

.seo-home-pillar__cta {
    margin-top: 1.85rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.seo-home-pillar__cta .site-cta--ghost {
    background: transparent;
    border: 1px solid rgba(125, 255, 154, 0.45);
    color: #fff;
}

.seo-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-home-trust.why-techpam.content-density-area {
    color: #fff;
}

.seo-home-trust .why-techpam__card.is-visible {
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift, 0px));
}

.seo-industries-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.seo-industry-card.home-expertise__card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-height: 0;
}

.seo-industry-card__label {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
}

.seo-industries-list__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2aa84a, #0b2b42);
    color: #fff;
    box-shadow: 0 10px 24px rgba(42, 168, 74, 0.4);
    flex: 0 0 auto;
}

.seo-testimonials-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
    perspective: 1400px;
}

.seo-testimonial-card.home-expertise__card {
    min-height: 0;
}

.seo-testimonial-card blockquote {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.seo-testimonial-card blockquote p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.seo-testimonial-card footer {
    display: grid;
    gap: 0.15rem;
}

.seo-testimonial-card cite {
    font-style: normal;
    font-weight: 650;
    color: #7dff9a;
}

.seo-testimonial-card footer span {
    color: rgba(255, 255, 255, 0.7);
}

.seo-home-testimonials__empty {
    color: rgba(255, 255, 255, 0.78);
    padding: 1.25rem 1.4rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(125, 255, 154, 0.28);
    text-align: center;
}

.seo-faq-list {
    display: grid;
    gap: 16px;
    perspective: 1400px;
}

.seo-faq-item.home-expertise__card {
    min-height: 0;
    padding: 0.15rem 1.15rem;
    gap: 0;
}

.seo-faq-item[open] {
    border-color: rgba(125, 255, 154, 0.55);
    box-shadow: 0 32px 64px rgba(42, 168, 74, 0.28);
}

.seo-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.seo-faq-item summary::-webkit-details-marker {
    display: none;
}

.seo-faq-item summary h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 620;
}

.seo-faq-item__chevron {
    width: 0.65rem;
    height: 0.65rem;
    border-right: 2px solid #7dff9a;
    border-bottom: 2px solid #7dff9a;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex: 0 0 auto;
}

.seo-faq-item[open] .seo-faq-item__chevron {
    transform: rotate(225deg);
}

.seo-faq-item__body {
    padding: 0 0 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.seo-home-contact {
    background:
        radial-gradient(circle at 14% 20%, rgba(42, 168, 74, 0.32), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(125, 255, 154, 0.16), transparent 30%),
        linear-gradient(155deg, #072032 0%, #0b2b42 46%, #134528 100%);
    color: #F6F4EF;
}

.seo-home-contact__glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    left: -80px;
    top: -60px;
    background: radial-gradient(circle, rgba(42, 168, 74, 0.35), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}

.seo-home-contact__panel {
    position: relative;
    z-index: 1;
    max-width: 44rem;
    margin: 0 auto;
    padding: 2rem 1.75rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(125, 255, 154, 0.2);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.seo-home-contact .home-section-heading {
    margin-bottom: 1.5rem;
    text-align: left;
}

.seo-home-contact .home-section-heading h2,
.seo-home-contact .home-section-heading p,
.seo-home-contact__details,
.seo-home-contact__details a {
    color: #F6F4EF;
}

.seo-home-contact__details {
    font-style: normal;
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.seo-home-contact__row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
}

.seo-home-contact__icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(125, 255, 154, 0.14);
    border: 1px solid rgba(125, 255, 154, 0.28);
    color: #7dff9a;
    font-size: 0.95rem;
}

.seo-home-contact__value {
    font-family: var(--tp-font-read);
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.45;
    color: #F6F4EF;
    text-decoration: none;
}

a.seo-home-contact__value:hover,
a.seo-home-contact__value:focus-visible {
    color: #7dff9a;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.seo-home-contact .site-cta,
.seo-home-pillar__cta .site-cta:not(.site-cta--ghost) {
    background: #2AA84A;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 900px) {
    .seo-home-pillar__grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
        gap: 22px;
        align-items: stretch;
    }

    .seo-home-pillar__panel--accent.is-visible {
        transform: perspective(900px) rotateX(var(--rx)) rotateY(calc(var(--ry) - 3deg)) translateY(calc(var(--lift) + 10px));
    }

    .seo-industries-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .seo-home-reveal,
    .seo-tilt-card,
    .seo-home-trust .why-techpam__card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: none;
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: #0b2b42;
    border: 1px solid rgba(42, 168, 74, 0.35);
    box-shadow: 0 18px 40px rgba(11, 43, 66, 0.35);
    color: #f6f4ef;
}

.cookie-consent__copy {
    flex: 1 1 18rem;
    min-width: 0;
}

.cookie-consent__note {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #f6f4ef;
}

.cookie-consent__link {
    color: #7dff9a;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.875rem;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus-visible {
    color: #ffffff;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex: 0 0 auto;
}

.cookie-consent__accept {
    min-width: 7.5rem;
}

.cookie-consent__reject {
    appearance: none;
    border: 1px solid rgba(246, 244, 239, 0.45);
    background: transparent;
    color: #f6f4ef;
    border-radius: 999px;
    padding: 0.7rem 1.15rem;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-consent__reject:hover,
.cookie-consent__reject:focus-visible {
    background: rgba(246, 244, 239, 0.1);
    border-color: #f6f4ef;
    color: #ffffff;
}

@media (max-width: 640px) {
    .cookie-consent {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .cookie-consent__inner {
        padding: 0.9rem 1rem;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__accept,
    .cookie-consent__reject {
        width: 100%;
    }
}

.comment-closed-notice {
    margin: 0;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(11, 43, 66, 0.12);
    border-radius: 12px;
    background: rgba(11, 43, 66, 0.04);
    color: #0b2b42;
    font-family: var(--tp-font-read, Georgia, "Times New Roman", serif);
    font-size: 1.05rem;
    line-height: 1.6;
}
