:root {
    --techno-bg: #ffffff;
    --techno-bg-soft: #f3f7ff;
    --techno-bg-accent: #eef3ff;
    --techno-text: #0f172a;
    --techno-text-soft: #546179;
    --techno-line: rgba(15, 23, 42, 0.1);
    --techno-primary: #2f5bea;
    --techno-primary-dark: #1537a8;
    --techno-accent: #ff7d2f;
    --techno-shadow: 0 24px 70px rgba(47, 91, 234, 0.16);
    --techno-radius-lg: 32px;
    --techno-radius-md: 22px;
    --techno-radius-sm: 16px;
    --techno-container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    color: var(--techno-text);
    background: var(--techno-bg);
}

.techno-motion-layer {
    will-change: transform;
}

.techno-container {
    width: min(calc(100% - 32px), var(--techno-container));
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.techno-page-shell {
    min-height: 60vh;
    padding-top: 72px;
}

.techno-header__main-inner,
.techno-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.techno-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.techno-header.is-scrolled {
    border-color: var(--techno-line);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.techno-header__main-inner {
    min-height: 72px;
}

.techno-logo {
    display: inline-flex;
    align-items: center;
}

.techno-logo img {
    width: auto;
    height: 58px;
}

.techno-nav,
.techno-header__actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.techno-header__utility {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 18px;
}

.techno-header__auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.techno-header__auth a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--techno-radius-md, 8px);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    color: var(--techno-text);
}

.techno-header__auth a:first-child {
    background: transparent;
    border: 1px solid var(--techno-border);
}

.techno-header__auth a:first-child:hover {
    background: var(--techno-bg-soft);
    border-color: var(--techno-text-soft);
}

.techno-header__auth a:last-child {
    background: var(--techno-accent, #5b5bf3);
    color: #fff;
    border: 1px solid transparent;
}

.techno-header__auth a:last-child:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(91, 91, 243, 0.3);
}

.techno-header__auth .auth-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--techno-text);
}

.techno-header__auth .auth-link-btn {
    padding: 6px 14px;
    border-radius: var(--techno-radius-md, 8px);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: var(--techno-bg-soft);
    color: var(--techno-text);
    transition: background 0.3s ease;
}

.techno-header__auth .auth-link-btn:hover {
    background: var(--techno-border);
}

.techno-nav {
    position: relative;
    margin-left: auto;
}

.techno-nav__list {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.techno-nav__item {
    position: relative;
}

.techno-nav__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px;
}

.techno-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 28px 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.0375em;
    text-decoration: none;
    text-transform: capitalize;
    color: #000000;
}

.techno-nav__chevron {
    color: #717b90;
    font-size: 10px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.techno-nav__popover {
    position: absolute;
    left: -22px;
    top: 100%;
    z-index: 5;
    display: grid;
    min-width: 244px;
    padding: 16px 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 14px, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.techno-site-shell a {
    text-decoration: none;
}

.techno-nav__popover::before {
    content: "";
    position: absolute;
    left: 34px;
    top: -7px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
}

.techno-nav__popover a {
    display: block;
    padding: 10px 22px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #000000;
    white-space: nowrap;
}

.techno-nav__item:hover>.techno-nav__popover,
.techno-nav__item:focus-within>.techno-nav__popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.techno-nav__item:hover>.techno-nav__link,
.techno-nav__item:focus-within>.techno-nav__link {
    color: var(--techno-primary);
}

.techno-nav__item:hover .techno-nav__chevron,
.techno-nav__item:focus-within .techno-nav__chevron {
    color: var(--techno-primary);
    transform: rotate(180deg);
}

.techno-icon-button,
.techno-cart-link {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #1c233d;
    font-size: 21px;
}

.techno-cart-dot {
    position: absolute;
    top: -2px;
    right: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5e43;
}

.techno-nav__link:hover,
.techno-nav__popover a:hover,
.techno-link:hover,
.techno-icon-button:hover,
.techno-cart-link:hover,
.techno-footer a:hover {
    color: var(--techno-primary);
}

.techno-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--techno-primary), #4f79ff);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(47, 91, 234, 0.2);
}

.techno-button:hover {
    background: linear-gradient(135deg, var(--techno-primary-dark), var(--techno-primary));
}

.techno-button--sm {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.techno-button--hero {
    min-height: 52px;
    padding: 0 34px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ff6648, #ff4c2d);
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 700;
    box-shadow: none;
}

.techno-button--hero:hover {
    background: linear-gradient(135deg, #ff5534, #ff3f23);
}

.techno-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--techno-primary);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.techno-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--techno-line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.techno-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--techno-text);
}

.techno-menu-toggle span:first-child {
    margin-top: auto;
}

.techno-menu-toggle span:last-child {
    margin-bottom: auto;
}

.techno-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    background: rgba(7, 11, 28, 0.65);
}

.techno-mobile-menu.is-open {
    display: block;
}

.techno-mobile-menu__panel {
    width: min(92vw, 360px);
    height: 100%;
    margin-left: auto;
    padding: 24px;
    background: #ffffff;
    box-shadow: -24px 0 60px rgba(15, 23, 42, 0.18);
}

.techno-mobile-menu__head,
.techno-hero__actions,
.techno-section__heading--split,
.techno-footer__form,
.techno-comments-shell__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.techno-mobile-menu__nav {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.techno-mobile-menu__nav a {
    font-size: 18px;
    font-weight: 700;
}

.techno-mobile-menu__auth {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--techno-border);
}

.techno-mobile-menu__auth a {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    border-radius: var(--techno-radius-md, 8px);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.techno-mobile-menu__auth a:first-child {
    background: transparent;
    border: 1px solid var(--techno-border);
    color: var(--techno-text);
}

.techno-mobile-menu__auth a:last-child {
    background: var(--techno-accent, #5b5bf3);
    color: #fff;
}

.techno-mobile-menu__auth .auth-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--techno-text);
}

.techno-mobile-menu__auth .auth-link-btn {
    padding: 10px 16px;
    border-radius: var(--techno-radius-md, 8px);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: var(--techno-bg-soft);
    color: var(--techno-text);
}

.techno-mobile-menu__close,
.techno-scroll-top {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--techno-primary);
    color: #ffffff;
    cursor: pointer;
}

.techno-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.techno-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.techno-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--techno-accent);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.techno-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.techno-hero,
.techno-page-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(47, 91, 234, 0.12), transparent 38%), linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.techno-hero {
    padding: 84px 0 78px;
}

.techno-hero__grid,
.techno-two-column,
.techno-discussion,
.techno-cta,
.techno-footer__grid,
.techno-service-grid,
.techno-case-grid,
.techno-news-grid {
    display: grid;
    gap: 28px;
}

.techno-hero__grid,
.techno-cta {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
}

.techno-two-column {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    align-items: start;
}

.techno-hero h1,
.techno-page-hero h1,
.techno-section__heading h2,
.techno-discussion__copy h2,
.techno-cta__copy h2,
.techno-article h2,
.techno-comments-shell h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    line-height: 1.08;
}

.techno-hero h1 {
    max-width: 11ch;
    font-size: clamp(44px, 6vw, 74px);
}

.techno-page-hero {
    padding: 38px 0 28px;
}

.techno-page-hero h1 {
    max-width: 20ch;
    font-size: clamp(24px, 3vw, 36px);
}

.techno-page-hero--article {
    padding: 32px 0 22px;
}

.techno-page-hero--article h1 {
    font-size: clamp(22px, 2.5vw, 32px);
}

.techno-page-hero__lead {
    max-width: 660px;
    margin: 10px 0 0;
    color: var(--techno-text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.techno-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-top: 12px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(47, 91, 234, 0.1);
    color: var(--techno-primary);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.techno-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--techno-text-soft);
    font-size: 14px;
}

.techno-hero p,
.techno-section__heading p,
.techno-cta__copy p,
.techno-service-card p,
.techno-news-card p,
.techno-blog-card p,
.techno-sidebar-card p,
.techno-footer p,
.techno-comments-shell p,
.techno-prose,
.techno-article__meta,
.techno-blog-card__meta,
.techno-news-card__meta,
.techno-footer a,
.techno-topbar a,
.techno-topbar__copy,
.techno-mini-post small {
    color: var(--techno-text-soft);
}

.techno-hero__contact {
    display: grid;
    gap: 4px;
    margin-top: -4px;
    animation: none;
}

.techno-hero__contact span,
.techno-hero__contact a {
    color: var(--techno-primary);
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

.techno-hero__contact span {
    font-size: 16px;
}

.techno-hero__contact a {
    font-size: 16px;
    text-decoration: none;
}

.techno-hero__contact small {
    color: var(--techno-text-soft);
    font-size: 13px;
    font-weight: 700;
}

.techno-hero__visual {
    position: relative;
    min-height: 640px;
    isolation: isolate;
}

.techno-hero__main-image {
    position: absolute;
    top: -135px;
    right: -82px;
    bottom: auto;
    width: min(121%, 790px);
}

.techno-hero__asset {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center;
}

.techno-hero__asset--main {
    animation: technoHeroMainFloat 6s ease-in-out infinite;
}

.techno-hero__floating-card {
    position: absolute;
    left: calc(-50vw);
    top: -105px;
    z-index: 1;
    width: min(52%, 356px);
    filter: none;
}

.techno-hero__asset--card {
    animation: technoHeroCardDrift 5.1s ease-in-out infinite;
}

.techno-hero__shape {
    position: absolute;
}

.techno-hero__shape--one {
    left: calc(-49vw);
    top: 26px;
    width: 92px;
    z-index: 4;
}

.techno-hero__shape--two {
    top: 96px;
    right: 26%;
    width: 12px;
}

.techno-hero__shape--three {
    top: 262px;
    right: 18%;
    width: 10px;
}

.techno-hero__asset--shape-one {
    animation: technoHeroShapeLift 5.4s ease-in-out infinite;
}

.techno-hero__asset--shape-two {
    animation: technoHeroPulseDot 3.3s ease-in-out infinite;
}

.techno-hero__asset--shape-three {
    animation: technoHeroPulseDot 4.1s ease-in-out infinite reverse;
}

.techno-section {
    padding: 92px 0;
}

.techno-section--services {
    position: relative;
    background: #ffffff;
    padding-top: 18px;
    padding-bottom: 46px;
}

.techno-section--services::before {
    content: "";
    position: absolute;
    left: -340px;
    top: 44px;
    width: 920px;
    height: 940px;
    border-radius: 50%;
    background: rgba(237, 244, 255, 0.9);
    pointer-events: none;
}


.techno-hero {
    padding: 68px 0 14px;
    background: linear-gradient(90deg, #edf4ff 0%, #ffffff 34%, #ffffff 100%);
}

.techno-hero__corner {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 146px;
    height: 152px;
    border-radius: 0 0 42px 0;
    background: linear-gradient(135deg, #2954d8, #1f46bd);
}

.techno-hero::after {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -280px;
    width: 760px;
    height: 420px;
    border-radius: 50%;
    background: rgba(237, 244, 255, 0.95);
}

.techno-hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 4px;
}

.techno-hero__copy {
    position: relative;
    z-index: 1;
}

.techno-hero .techno-eyebrow {
    margin-bottom: 24px;
    color: #2753d8 !important;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.techno-hero .techno-eyebrow::before {
    display: none !important;
}

.techno-hero h1 {
    max-width: 16ch;
    color: #07090f;
    font-size: clamp(48px, 4.2vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.techno-hero__type-shell {
    display: inline-grid;
}

.techno-hero__type-placeholder,
.techno-hero__type-output {
    grid-area: 1 / 1;
}

.techno-hero__type-placeholder {
    visibility: hidden;
}

.techno-hero__type-output {
    min-height: 1em;
    padding-right: 0.12em;
    border-right: 0.08em solid transparent;
}

.techno-hero__type-shell.is-typing .techno-hero__type-output {
    animation: technoTypeCursor 0.82s steps(1) infinite;
}

.techno-hero__type-shell.is-complete .techno-hero__type-output {
    border-right-color: transparent;
}

.techno-hero p {
    font-size: 16px;
    line-height: 1.8;
}

.techno-hero__actions {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
}

.techno-section--services .techno-eyebrow {
    color: #2753d8 !important;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.techno-section--services .techno-eyebrow::before {
    display: none !important;
}

.techno-section--discussion {
    padding-top: 30px;
    padding-bottom: 92px;
    background: #ffffff;
}

.techno-section--stats {
    padding-top: 0;
    padding-bottom: 74px;
    background: #ffffff;
}

.techno-section--solutions {
    padding-top: 8px;
    padding-bottom: 108px;
    background: #ffffff;
}

.techno-section--cases,
.techno-section--blog-list,
.techno-section--blog-read {
    background: var(--techno-bg-soft);
    padding: 48px 0;
}

.techno-section--cta {
    padding-top: 0;
    padding-bottom: 94px;
    background: #ffffff;
}

.techno-section--cases .techno-section__heading {
    max-width: 570px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.techno-section--cases .techno-section__heading .techno-eyebrow {
    justify-content: flex-start;
}

.techno-section__heading {
    max-width: 640px;
    margin-bottom: 42px;
}

.techno-section__heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.techno-section__heading--center .techno-eyebrow,
.techno-page-hero .techno-eyebrow {
    justify-content: center;
}

.techno-section__heading h2,
.techno-discussion__copy h2,
.techno-cta__copy h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.techno-discussion {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    align-items: center;
    gap: 54px;
}

.techno-discussion__image {
    width: 100%;
}

.techno-stats-banner {
    position: relative;
    min-height: 189px;
    padding: 58px 0 49px;
    background: url("../images/hero/ban21.webp") center / cover no-repeat;
    overflow: hidden;
}

.techno-stats-banner::before,
.techno-stats-banner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.techno-stats-banner::before {
    left: 50%;
    top: 12px;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border: 2px solid rgba(111, 244, 255, 0.8);
    background: transparent;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.techno-stats-banner::after {
    left: calc(50% - 336px);
    bottom: 10px;
    width: 12px;
    height: 12px;
    border: 3px solid rgba(255, 131, 45, 0.85);
    background: transparent;
}

.techno-discussion__visual {
    position: relative;
    min-height: 640px;
    isolation: isolate;
}

.techno-discussion__image {
    position: absolute;
    inset: 0;
    width: min(100%, 670px);
    margin: auto 0;
}

.techno-discussion__badge {
    position: absolute;
    top: 88px;
    right: 18px;
    width: min(34%, 243px);
}

.techno-discussion__copy {
    display: grid;
    gap: 20px;
    max-width: 560px;
}

.techno-discussion__copy h2,
.techno-discussion__copy p {
    margin: 0;
}

.techno-section--discussion .techno-eyebrow {
    color: #2753d8 !important;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.techno-section--discussion .techno-eyebrow::before {
    display: none !important;
}

.techno-discussion__copy p {
    color: #696969;
}

.techno-discussion__features {
    display: grid;
    max-width: 509px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

.techno-discussion__feature {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.techno-discussion__feature-icon {
    display: block;
    width: 15px;
    height: 15px;
    margin-top: 8px;
}

.techno-discussion__feature-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.techno-discussion__feature h3,
.techno-discussion__feature p {
    margin: 0;
}

.techno-discussion__feature h3 {
    margin-bottom: 10px;
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.techno-discussion__feature p {
    color: #696969;
    font-size: 16px;
    line-height: 1.75;
}

.techno-discussion__cta {
    margin-top: -2px;
}

.techno-discussion__cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 11px 33px;
    border-radius: 4px;
    background: #ff7d2f;
    color: #ffffff;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
    text-decoration: none;
}

.techno-discussion__points,
.techno-cta__channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.techno-discussion__point,
.techno-cta__channel {
    padding: 18px 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--techno-shadow);
}

.techno-discussion__point {
    position: relative;
    padding-left: 52px;
    color: var(--techno-text);
    font-weight: 700;
    line-height: 1.6;
    min-height: 108px;
}

.techno-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.techno-stat-card {
    padding: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    box-shadow: none;
}

.techno-stat-card__value {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 69px;
    font-weight: 600;
    line-height: 1;
}

.techno-stat-card__suffix {
    margin-left: 4px;
    font-size: 48px;
    line-height: 1;
}

.techno-stat-card__label {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.techno-solutions__heading {
    max-width: 820px;
    margin-bottom: 62px;
}

.techno-section--solutions .techno-eyebrow {
    color: #104cba !important;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.techno-section--solutions .techno-eyebrow::before {
    display: none !important;
}

.techno-solutions__heading h2 {
    color: #000000;
    font-size: 36px;
}

.techno-solutions__heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #696969;
    line-height: 1.75;
}

.techno-solutions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 524px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.techno-solutions__column {
    display: grid;
    gap: 74px;
}

.techno-solutions__column--left {
    margin-right: -18px;
}

.techno-solutions__column--right {
    margin-left: -18px;
}

.techno-solution-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 118px;
    padding: 16px 26px 18px 22px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(42, 22, 139, 0.08);
}

.techno-solution-card__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(47, 91, 234, 0.06);
    font-size: 22px;
    color: #4d6fff;
}

.techno-solution-card:nth-child(2) .techno-solution-card__icon {
    color: #ff7d2f;
}

.techno-solution-card:nth-child(3) .techno-solution-card__icon {
    color: #00c18c;
}

.techno-solutions__column--right .techno-solution-card:nth-child(1) .techno-solution-card__icon {
    color: #6a4dff;
}

.techno-solutions__column--right .techno-solution-card:nth-child(2) .techno-solution-card__icon {
    color: #ff4d7e;
}

.techno-solutions__column--right .techno-solution-card:nth-child(3) .techno-solution-card__icon {
    color: #00a6d6;
}

.techno-solution-card__content {
    display: grid;
    gap: 10px;
}

.techno-solution-card__content h3,
.techno-solution-card__content p {
    margin: 0;
}

.techno-solution-card__content h3 {
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.techno-solution-card__content p {
    color: #696969;
    font-size: 16px;
    line-height: 1.7;
}

.techno-solutions__center {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 495px;
}

.techno-solutions__center img {
    position: relative;
    z-index: 1;
    width: min(100%, 524px);
}

.techno-solutions__dot {
    position: absolute;
    z-index: 0;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 4px solid currentColor;
    background: transparent;
}

.techno-solutions__dot--one {
    top: 142px;
    left: 78px;
    color: #65dbc7;
}

.techno-solutions__dot--two {
    top: 116px;
    right: 70px;
    color: #ff4d7e;
}

.techno-discussion__point::before {
    content: "\f058";
    position: absolute;
    left: 20px;
    top: 19px;
    color: var(--techno-primary);
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    font-weight: 900;
}

.techno-service-grid {
    position: relative;
    z-index: 1;
    max-width: 1136px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.techno-service-card,
.techno-case-card,
.techno-news-card,
.techno-blog-card,
.techno-sidebar-card,
.techno-article,
.techno-comments-shell {
    border-radius: var(--techno-radius-md);
    background: #ffffff;
    box-shadow: var(--techno-shadow);
}

.techno-service-card {
    display: flex;
    align-items: flex-start;
    min-height: 159px;
    padding: 30px 48px 30px 40px;
    border-radius: 4px;
    box-shadow: 0 7px 20px rgba(42, 22, 139, 0.08);
}

.techno-service-card__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-right: 30px;
}

.techno-service-card__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.techno-service-card__content {
    display: grid;
    gap: 10px;
}

.techno-service-card h3,
.techno-case-card h3,
.techno-news-card h3,
.techno-blog-card h2,
.techno-sidebar-card h3,
.techno-mini-post strong {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
}

.techno-service-card h3 {
    margin: 0;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.techno-service-card p {
    margin: 0;
    color: #696969;
    font-size: 16px;
    line-height: 1.75;
}

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

.techno-case-carousel {
    overflow: hidden;
    padding-bottom: 54px;
}

.techno-case-carousel .swiper-wrapper {
    align-items: stretch;
}

.techno-case-carousel .swiper-slide {
    height: auto;
}

.techno-case-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--techno-radius-md);
}

.techno-case-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 18%, rgba(15, 23, 42, 0.82) 100%);
    pointer-events: none;
}

.techno-case-card img {
    aspect-ratio: 359 / 371;
    width: 100%;
    object-fit: cover;
}

.techno-case-card__body,
.techno-news-card__body,
.techno-blog-card__body,
.techno-article,
.techno-comments-shell,
.techno-sidebar-card {
    padding: 20px;
}

.techno-blog-card h2 {
    font-size: 20px;
    line-height: 1.35;
}

.techno-blog-card h2 a {
    color: var(--techno-text);
}

.techno-blog-card h2 a:hover {
    color: var(--techno-primary);
}

.techno-blog-card p {
    font-size: 14px;
    line-height: 1.7;
}

.techno-cta-band {
    min-height: 238px;
    padding: 72px 0 70px;
    background: url("../images/hero/ban19.webp") center / cover no-repeat;
}

.techno-cta-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
}

.techno-cta-band__copy {
    max-width: 875px;
}

.techno-cta-band__copy h2,
.techno-cta-band__copy p {
    margin: 0;
    color: #ffffff;
}

.techno-cta-band__copy h2 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.techno-cta-band__copy p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.75;
}

.techno-cta-band__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 11px 33px;
    border-radius: 4px;
    background: #ffffff;
    color: #ff7d2f;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
    text-decoration: none;
}

.techno-cta__channels {
    margin-top: 28px;
}

.techno-cta__channel {
    display: grid;
    gap: 6px;
}

.techno-cta__channel span {
    color: var(--techno-text-soft);
    font-size: 14px;
}

.techno-cta__channel strong {
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

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

.techno-news__heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.techno-section--news .techno-eyebrow {
    color: #104cba !important;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.techno-section--news .techno-eyebrow::before {
    display: none !important;
}

.techno-news-showcase,
.techno-news-stack {
    display: grid;
    gap: 28px;
}

.techno-news-showcase {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
}

.techno-case-card__body {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px);
}

.techno-case-card__body h3 {
    margin: 0;
    color: #ffffff;
}

.techno-case-pagination {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.techno-case-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    background: rgba(47, 91, 234, 0.22);
    opacity: 1;
}

.techno-case-pagination .swiper-pagination-bullet-active {
    background: var(--techno-primary);
}

.techno-news-card,
.techno-blog-card {
    overflow: hidden;
}

.techno-news-card__image img,
.techno-blog-card__image img,
.techno-article__image img,
.techno-mini-post img,
.techno-sidebar-card--author img {
    width: 100%;
    object-fit: cover;
}

.techno-news-card__image img,
.techno-blog-card__image img {
    aspect-ratio: 768 / 446;
}

.techno-news-card--featured .techno-news-card__image img {
    aspect-ratio: 820 / 560;
}

.techno-news-card--compact {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: stretch;
}

.techno-news-card--compact .techno-news-card__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

.techno-news-card--compact .techno-news-card__body {
    padding: 18px 22px;
}

.techno-news-card--compact h3 {
    margin-bottom: 0;
}

.techno-news-card__meta,
.techno-blog-card__meta,
.techno-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.techno-blog-card__taxonomy,
.techno-pill-list a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(47, 91, 234, 0.08);
    color: var(--techno-primary);
    font-size: 13px;
    font-weight: 700;
}

.techno-blog-card__taxonomy a {
    color: inherit;
}

.techno-main-column {
    display: grid;
    gap: 24px;
}

.techno-sidebar {
    display: grid;
    gap: 20px;
}

.techno-sidebar-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.techno-sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--techno-bg-soft);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.techno-sidebar-list strong {
    color: var(--techno-primary);
}

.techno-sidebar-card--author {
    text-align: center;
}

.techno-sidebar-card--author img {
    aspect-ratio: 1;
    max-width: 160px;
    margin: 0 auto 14px;
    border-radius: 50%;
}

.techno-sidebar-card__socials,
.techno-footer__socials,
.techno-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.techno-sidebar-card__socials a,
.techno-footer__socials a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(47, 91, 234, 0.08);
    color: var(--techno-primary);
}

.techno-mini-posts {
    display: grid;
    gap: 16px;
}

.techno-mini-post {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.techno-mini-post:nth-child(n + 5) {
    display: none;
}

.techno-mini-post img {
    aspect-ratio: 1;
    border-radius: 16px;
}

.techno-sidebar-card__form,
.techno-footer__form,
.techno-comments-shell__form {
    display: grid;
    gap: 14px;
}

.techno-pill-list--counts a {
    gap: 10px;
}

.techno-pill-list__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(47, 91, 234, 0.12);
    font-size: 12px;
    line-height: 1;
}

.techno-footer__form,
.techno-comments-shell__grid {
    grid-template-columns: minmax(0, 1fr) auto;
}

.techno-footer__form input,
.techno-sidebar-card__form input,
.techno-comments-shell__form input,
.techno-comments-shell__form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--techno-line);
    border-radius: 14px;
    background: #ffffff;
    font-size: 14px;
}

.techno-comments-shell__form textarea {
    min-height: 140px;
    resize: vertical;
}

.techno-comments-shell__grid {
    gap: 14px;
}

.techno-comments-shell__grid input {
    min-width: 0;
}

.techno-form-alert {
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 700;
}

.techno-form-alert--success {
    background: rgba(21, 128, 61, 0.12);
    color: #166534;
}

.techno-form-alert--error {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
}

.techno-article__image img {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
}

.techno-article__intro {
    padding: 14px 18px;
    border-left: 4px solid var(--techno-primary);
    border-radius: 16px;
    background: var(--techno-bg-soft);
}

.techno-article__intro p,
.techno-article__tags strong {
    margin: 0;
}

.techno-article__tags {
    display: grid;
    gap: 14px;
}

.techno-article__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.techno-article-nav-card {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 22px;
    background: var(--techno-bg-soft);
}

.techno-article-nav-card small,
.techno-article-nav-card span {
    color: var(--techno-text-soft);
}

.techno-article-nav-card strong {
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
}

.techno-article-nav-card--next {
    text-align: right;
}

.techno-prose {
    line-height: 1.8;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.techno-prose * {
    min-width: 0;
    max-width: 100%;
}

.techno-prose a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.techno-prose pre {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.techno-prose code {
    white-space: break-spaces;
    word-break: break-word;
}

.techno-prose pre code {
    white-space: pre;
    word-break: normal;
}

.techno-prose table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.techno-prose iframe,
.techno-prose video,
.techno-prose embed,
.techno-prose object {
    width: 100%;
    max-width: 100%;
}

.techno-comments-shell--thread {
    display: grid;
    gap: 22px;
}

.techno-comments-shell__header {
    display: grid;
    gap: 8px;
}

.techno-comments-shell__header h2 {
    margin: 0;
}

.techno-comments-shell__list {
    display: grid;
    gap: 18px;
}

.techno-comment {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: var(--techno-bg-soft);
}

.techno-comment__avatar {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--techno-primary), #4f79ff);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
}

.techno-comment__body p {
    margin: 0;
}

.techno-comment__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.techno-comment__meta span {
    color: var(--techno-text-soft);
}

.techno-no-posts {
    display: grid;
    gap: 14px;
    padding: 32px;
    border-radius: var(--techno-radius-md);
    background: #ffffff;
    box-shadow: var(--techno-shadow);
}

.techno-no-posts h2,
.techno-no-posts p {
    margin: 0;
}

.techno-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 8px;
}

.techno-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(42, 22, 139, 0.06);
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.techno-pagination__link:hover {
    background: var(--techno-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(47, 91, 234, 0.2);
}

.techno-pagination__link--active {
    background: var(--techno-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(47, 91, 234, 0.2);
}

.techno-pagination__link--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.techno-pagination__link--prev,
.techno-pagination__link--next {
    padding: 0 16px;
    font-size: 13px;
}

.techno-prose h1,
.techno-prose h2,
.techno-prose h3,
.techno-prose h4,
.techno-prose h5,
.techno-prose h6 {
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
}

.techno-prose p,
.techno-prose li,
.techno-prose blockquote {
    margin-top: 0;
    color: var(--techno-text-soft);
}

.techno-prose img {
    border-radius: 20px;
}

.techno-footer {
    position: relative;
    padding-top: 176px;
    background: radial-gradient(circle at 14% 28%, rgba(89, 143, 255, 0.26), transparent 34%),
        radial-gradient(circle at 78% 22%, rgba(118, 247, 255, 0.18), transparent 30%),
        linear-gradient(90deg, #331085 0%, #195dcb 100%);
    color: #ffffff;
    overflow: hidden;
}

.techno-footer::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -4%;
    width: 108%;
    height: 190px;
    background: #ffffff;
    border-bottom-left-radius: 48% 100%;
    border-bottom-right-radius: 48% 100%;
}

.techno-footer::after {
    content: "";
    position: absolute;
    top: 146px;
    right: 31%;
    width: 18px;
    height: 18px;
    border: 4px solid rgba(79, 245, 242, 0.82);
    border-radius: 999px;
}

.techno-footer__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 1.28fr 0.78fr 0.95fr 1.12fr;
    padding: 0 0 48px;
}

.techno-footer h3 {
    margin: 0 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
}

.techno-footer__brand p,
.techno-footer__contact p,
.techno-footer__subscribe p,
.techno-footer__links a,
.techno-footer__contact a,
.techno-footer__bottom {
    color: rgba(255, 255, 255, 0.9);
}

.techno-footer__brand p {
    max-width: 260px;
    line-height: 1.7;
}

.techno-footer__links,
.techno-footer__contact,
.techno-footer__subscribe {
    display: grid;
    gap: 12px;
}

.techno-footer__socials a {
    width: 38px;
    height: 38px;
    color: #ffffff;
}

.techno-footer__socials a:nth-child(1) {
    background: rgba(255, 255, 255, 0.18);
}

.techno-footer__socials a:nth-child(2) {
    background: #2ea7ff;
}

.techno-footer__socials a:nth-child(3) {
    background: #3da8ff;
}

.techno-footer__socials a:nth-child(4) {
    background: #ff4d4d;
}

.techno-footer__form {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 0;
    max-width: 214px;
}

.techno-footer__form input {
    min-height: 52px;
    padding: 14px 18px;
    border: 0;
    border-radius: 4px 0 0 4px;
    background: #f9f9f9;
    color: #111111;
}

.techno-footer__submit {
    display: inline-grid;
    place-items: center;
    width: 46px;
    min-height: 52px;
    border: 0;
    border-radius: 0 4px 4px 0;
    background: #ff7d2f;
    color: #ffffff;
    font-size: 18px;
}

.techno-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

.techno-footer__bottom-inner {
    justify-content: center;
}

@media (max-width: 1100px) {

    .techno-nav,
    .techno-header__utility {
        display: none;
    }

    .techno-menu-toggle {
        display: inline-block;
    }

    .techno-header__actions {
        margin-left: auto;
    }

    .techno-service-grid,
    .techno-case-grid,
    .techno-news-grid,
    .techno-footer__grid,
    .techno-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .techno-hero__grid,
    .techno-discussion,
    .techno-news-showcase,
    .techno-cta,
    .techno-two-column {
        grid-template-columns: 1fr;
    }

    .techno-hero__main-image {
        right: 0;
        width: min(100%, 760px);
    }

    .techno-hero__floating-card {
        left: 20px;
        width: min(58%, 360px);
    }

    .techno-article__nav {
        grid-template-columns: 1fr;
    }

    .techno-hero__visual,
    .techno-discussion__visual,
    .techno-cta__visual {
        min-height: 500px;
    }
}

@media (max-width: 720px) {

    .techno-page-shell {
        padding-top: 78px;
    }

    .techno-section,
    .techno-hero,
    .techno-page-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .techno-footer__bottom-inner,
    .techno-hero__actions,
    .techno-section__heading--split,
    .techno-footer__form,
    .techno-comments-shell__grid {
        flex-direction: column;
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .techno-header__main-inner {
        min-height: 78px;
        justify-content: space-between;
        gap: 12px;
    }

    .techno-header__actions {
        margin-left: auto;
        gap: 0;
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    .techno-menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .techno-logo img {
        height: 44px;
    }

    .techno-hero {
        padding-top: 34px;
    }

    .techno-hero__corner {
        width: 104px;
        height: 112px;
    }

    .techno-hero::after {
        left: -230px;
        bottom: -230px;
        width: 540px;
        height: 310px;
    }

    .techno-hero h1 {
        max-width: 11.6ch;
        font-size: clamp(44px, 13vw, 58px);
    }

    .techno-hero__actions {
        align-items: flex-start;
    }

    .techno-service-grid,
    .techno-case-grid,
    .techno-news-grid,
    .techno-footer__grid,
    .techno-stats-grid {
        grid-template-columns: 1fr;
    }

    .techno-discussion__points,
    .techno-cta__channels,
    .techno-news-card--compact {
        grid-template-columns: 1fr;
    }

    .techno-comment {
        grid-template-columns: 1fr;
    }

    .techno-hero__visual,
    .techno-discussion__visual,
    .techno-cta__visual {
        min-height: 360px;
    }

    .techno-hero__main-image,
    .techno-cta__primary {
        width: 100%;
    }

    .techno-hero__floating-card {
        left: 10px;
        top: 42px;
        width: min(58%, 220px);
    }

    .techno-hero__shape--one {
        left: -12px;
        top: 0;
        width: 102px;
    }

    .techno-hero__shape--two {
        top: 62px;
        left: auto;
        right: 18%;
    }

    .techno-hero__shape--three {
        top: 152px;
        left: auto;
        right: 9%;
    }

    .techno-discussion__image {
        position: relative;
        width: 100%;
    }

    .techno-discussion__badge,
    .techno-cta__tertiary {
        width: 120px;
    }

    .techno-mini-post {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .techno-footer__form {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .techno-menu-toggle {
        padding: 10px;
    }
}

/* ================================================================
   GLOBAL OVERFLOW GUARD
   ================================================================ */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    overscroll-behavior-x: none;
}

/* ================================================================
   TABLET  (max 1100 px) – extend existing breakpoint additions
   ================================================================ */
@media (max-width: 1100px) {
    .techno-solutions {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .techno-solutions__column--left,
    .techno-solutions__column--right {
        margin-right: 0;
        margin-left: 0;
    }

    .techno-solutions__center {
        display: none;
    }

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

/* ================================================================
   MOBILE  (max 720 px) – comprehensive overrides
   ================================================================ */
@media (max-width: 720px) {

    /* ---- global / body ---- */
    * {
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* ---- container ---- */
    .techno-container {
        width: calc(100% - 32px);
        padding-left: 0;
        padding-right: 0;
    }

    /* ---- header ---- */
    .techno-header__main-inner {
        padding: 0;
    }

    /* ---- HERO ---- */
    .techno-hero {
        overflow: hidden;
    }

    .techno-hero__corner {
        display: none;
    }

    .techno-hero__grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .techno-hero__copy {
        order: 1;
        padding-top: 16px;
    }

    .techno-hero__visual {
        order: 2;
        min-height: 280px;
        width: 100%;
        position: relative;
    }

    .techno-hero__main-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: auto;
        top: auto;
        border-radius: 12px;
    }

    .techno-hero__floating-card,
    .techno-hero__asset--card {
        display: none;
    }

    .techno-hero h1 {
        font-size: clamp(32px, 9.5vw, 46px);
    }

    .techno-hero__contact {
        margin-top: 20px;
    }

    /* ---- SERVICES ---- */
    .techno-service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .techno-service-card {
        flex-direction: column;
        gap: 12px;
        padding: 20px 18px;
    }

    /* ---- DISCUSSION ---- */
    .techno-discussion {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .techno-discussion__visual {
        min-height: auto;
        order: 2;
        width: 100%;
    }

    .techno-discussion__copy {
        order: 1;
        max-width: 100%;
    }

    .techno-discussion__copy h2 {
        font-size: clamp(28px, 7.5vw, 40px);
    }

    .techno-discussion__image {
        position: relative;
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }

    .techno-discussion__badge {
        display: none;
    }

    .techno-discussion__features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* ---- STATS BANNER ---- */
    .techno-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .techno-stat-card__value {
        font-size: 44px;
    }

    .techno-stat-card__suffix {
        font-size: 32px;
    }

    .techno-stat-card__label {
        font-size: 14px;
    }

    /* ---- SOLUTIONS ---- */
    .techno-solutions {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .techno-solutions__column {
        gap: 16px;
    }

    .techno-solutions__column--left,
    .techno-solutions__column--right {
        margin-right: 0;
        margin-left: 0;
    }

    .techno-solutions__center {
        display: none;
    }

    .techno-solution-card {
        min-height: auto;
        gap: 14px;
        padding: 16px;
    }

    .techno-solution-card__content h3 {
        font-size: 17px;
    }

    .techno-solutions__heading h2 {
        font-size: clamp(26px, 7vw, 34px);
    }

    /* ---- CASES ---- */
    .techno-section--cases {
        overflow: hidden;
    }

    .techno-case-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .swiper-wrapper {
        padding-bottom: 8px;
    }

    .swiper-slide {
        width: calc(100vw - 56px) !important;
        max-width: 360px;
    }

    /* ---- CTA BAND ---- */
    .techno-cta-band__inner {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 8px 0;
    }

    .techno-cta-band__copy h2 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .techno-cta-band__action {
        justify-content: center;
    }

    /* ---- NEWS ---- */
    .techno-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .techno-news-showcase {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .techno-news-stack {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .techno-news-card--compact {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
    }

    .techno-news-card--compact .techno-news-card__image {
        height: auto;
    }

    .techno-section__heading h2 {
        font-size: clamp(26px, 7.5vw, 36px);
    }

    /* ---- FOOTER ---- */
    .techno-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .techno-footer__brand {
        max-width: 100%;
    }

    .techno-footer__subscribe {
        max-width: 100%;
    }

    .techno-footer__form {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        width: 100%;
    }

    .techno-footer__form input {
        width: 100%;
        border-radius: 4px;
    }

    .techno-footer__form button {
        width: 100%;
        border-radius: 4px;
    }

    .techno-footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

/* ===== Hero Keyframe Animations ===== */

@keyframes technoHeroMainFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes technoHeroCardDrift {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(0.8deg);
    }

    66% {
        transform: translateY(-4px) rotate(-0.5deg);
    }
}

@keyframes technoHeroShapeLift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes technoHeroPulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

@keyframes technoTypeCursor {

    0%,
    50% {
        border-right-color: var(--techno-primary, #2f5bea);
    }

    51%,
    100% {
        border-right-color: transparent;
    }
}

/* ===== Scroll-Triggered Reveal Animations ===== */

[data-techno-reveal] {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 0.72s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--techno-reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-techno-reveal="up"] {
    transform: translateY(36px);
}

[data-techno-reveal="down"] {
    transform: translateY(-36px);
}

[data-techno-reveal="left"] {
    transform: translateX(-36px);
}

[data-techno-reveal="right"] {
    transform: translateX(36px);
}

[data-techno-reveal="fade"] {
    transform: scale(0.96);
    filter: blur(3px);
}

.techno-motion-ready [data-techno-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-techno-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* ===== Staggered Service Boxes ===== */

.techno-section--stagger-services {
    padding-top: 0;
    padding-bottom: 92px;
}

.techno-stagger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1136px;
    margin: 0 auto;
}

.techno-stagger-grid .techno-stagger-card:nth-child(2) {
    transform: translateY(36px);
}

[data-techno-reveal].is-visible+.techno-stagger-card,
.techno-stagger-grid .techno-stagger-card:nth-child(2)[data-techno-reveal="up"] {
    transform: translateY(36px);
}

.techno-stagger-grid .techno-stagger-card:nth-child(2).is-visible {
    transform: translateY(36px);
}

.techno-stagger-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 42px 32px;
    background: var(--techno-bg);
    border-radius: var(--techno-radius-md);
    box-shadow: 0 16px 40px rgba(42, 22, 139, 0.08);
    transition: box-shadow 0.36s ease, transform 0.36s ease;
}

.techno-stagger-card:hover {
    box-shadow: 0 24px 56px rgba(42, 22, 139, 0.14);
    transform: translateY(-4px);
}

.techno-stagger-grid .techno-stagger-card:nth-child(2):hover {
    transform: translateY(32px);
}

.techno-stagger-card__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(47, 91, 234, 0.1), rgba(47, 91, 234, 0.04));
    color: var(--techno-primary);
    font-size: 28px;
    margin-bottom: 22px;
    transition: background 0.36s ease, color 0.36s ease;
}

.techno-stagger-card:hover .techno-stagger-card__icon {
    background: linear-gradient(135deg, var(--techno-primary), var(--techno-primary-dark));
    color: #fff;
}

.techno-stagger-card__content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--techno-text);
    margin-bottom: 10px;
}

.techno-stagger-card__content p {
    color: var(--techno-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Team Cards ===== */

.techno-section--team {
    background: var(--techno-bg-soft);
}

.techno-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.techno-team-card {
    background: var(--techno-bg);
    border-radius: var(--techno-radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(42, 22, 139, 0.08);
    transition: box-shadow 0.36s ease, transform 0.36s ease;
}

.techno-team-card:hover {
    box-shadow: 0 24px 56px rgba(42, 22, 139, 0.14);
    transform: translateY(-6px);
}

.techno-team-card__photo {
    position: relative;
    aspect-ratio: 258 / 280;
    background: linear-gradient(135deg, rgba(47, 91, 234, 0.08), rgba(255, 125, 47, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--techno-primary);
    overflow: hidden;
}

.techno-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.techno-team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.2));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 14px;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.36s ease;
}

.techno-team-card:hover .techno-team-card__overlay {
    opacity: 1;
}

.techno-team-card__overlay a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 14px;
    transition: background 0.24s ease, transform 0.24s ease;
}

.techno-team-card__overlay a:hover {
    background: var(--techno-primary);
    transform: translateY(-2px);
}

.techno-team-card__info {
    padding: 22px 20px;
    text-align: center;
}

.techno-team-card__info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--techno-text);
    margin-bottom: 4px;
}

.techno-team-card__info p {
    color: var(--techno-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
}

/* ===== FAQ Accordion ===== */

.techno-section--faq {
    background: var(--techno-bg);
}

.techno-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.techno-faq-item {
    background: var(--techno-bg);
    border: 1px solid var(--techno-line);
    border-radius: var(--techno-radius-sm);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.techno-faq-item[open] {
    border-color: rgba(47, 91, 234, 0.25);
    box-shadow: 0 8px 28px rgba(47, 91, 234, 0.08);
}

.techno-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--techno-text);
    list-style: none;
    user-select: none;
    transition: color 0.3s ease;
}

.techno-faq-item__question::-webkit-details-marker {
    display: none;
}

.techno-faq-item__question::marker {
    display: none;
    content: '';
}

.techno-faq-item[open] .techno-faq-item__question {
    color: var(--techno-primary);
}

.techno-faq-item__question i {
    font-size: 14px;
    color: var(--techno-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.techno-faq-item[open] .techno-faq-item__question i {
    transform: rotate(45deg);
}

.techno-faq-item__answer {
    padding: 0 28px 22px;
    color: var(--techno-text-soft);
    line-height: 1.75;
    font-size: 15px;
}

/* ===== Responsive: New About Components ===== */

@media (max-width: 1100px) {
    .techno-stagger-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .techno-stagger-grid .techno-stagger-card:nth-child(2) {
        transform: none;
    }

    .techno-stagger-grid .techno-stagger-card:nth-child(2):hover {
        transform: translateY(-4px);
    }

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

@media (max-width: 720px) {
    .techno-stagger-grid {
        grid-template-columns: 1fr;
    }

    .techno-team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .techno-faq-list {
        max-width: 100%;
    }
}

/* ===== Softek About Page — Inner Banner ===== */

.techno-inner-banner {
    position: relative;
    background-color: #f6f6f6;
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.techno-inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 1, 20, 0.72) 0%, rgba(30, 20, 80, 0.55) 100%);
    pointer-events: none;
}

.techno-inner-banner .techno-container {
    position: relative;
    z-index: 1;
    padding-top: 172px;
    padding-bottom: 23px;
}

.techno-inner-banner__title {
    margin: 0 0 4px;
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 68px;
    color: #ffffff;
    text-transform: capitalize;
}

.techno-inner-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 92px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
    text-transform: capitalize;
}

.techno-inner-banner__breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.techno-inner-banner__breadcrumb a:hover {
    text-decoration: underline;
}

.techno-inner-banner__sep {
    opacity: 0.6;
}

/* ===== Softek About Page — Intro Section ===== */

.techno-about-intro {
    padding-top: 100px;
    padding-bottom: 40px;
}

.techno-about-intro__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.techno-about-intro__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.techno-about-intro__illustration {
    max-width: 100%;
    height: auto;
}

.techno-about-intro__body {
    display: grid;
    gap: 20px;
}

.techno-about-intro__body .techno-eyebrow {
    color: #ff583c !important;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.techno-about-intro__body .techno-eyebrow::before {
    display: none !important;
}

.techno-about-intro__body h2 {
    margin: 0;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}

.techno-about-intro__body>p {
    margin: 0;
    color: #696969;
    font-size: 16px;
    line-height: 28px;
}

.techno-about-intro__features {
    display: grid;
    gap: 24px;
    margin-top: 8px;
}

.techno-about-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
}

.techno-about-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.techno-about-feature__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.techno-about-feature--circle .techno-about-feature__icon {
    color: #ff583c;
    font-size: 28px;
}

.techno-about-feature__text h3 {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
}

.techno-about-feature__text p {
    margin: 0;
    color: #696969;
    font-size: 16px;
    line-height: 1.75;
}

.techno-about-intro__bottom-visual {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    margin-bottom: 20px;
}

.techno-about-intro__bottom-visual img {
    max-width: 420px;
    height: auto;
}

/* ===== Softek About Page — History Section ===== */

.techno-about-history {
    padding-top: 40px;
    padding-bottom: 100px;
}

.techno-about-history__row {
    max-width: 800px;
}

.techno-about-history__body {
    display: grid;
    gap: 20px;
}

.techno-about-history__body .techno-eyebrow {
    color: #ff583c !important;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.techno-about-history__body .techno-eyebrow::before {
    display: none !important;
}

.techno-about-history__body h2 {
    margin: 0;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}

.techno-about-history__body>p {
    margin: 0;
    color: #696969;
    font-size: 16px;
    line-height: 28px;
}

.techno-about-history__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 12px;
}

/* ===== Softek About Page — Float Animation ===== */

@keyframes technoAboutFloatLR {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(16px);
    }
}

.techno-about-float {
    animation: technoAboutFloatLR 3.5s ease-in-out infinite;
}

/* ===== Softek About Page — Stats Particles ===== */

.techno-stats-particle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.techno-stats-particle img {
    display: block;
    width: 100%;
    height: auto;
}

.techno-stats-particle--triangle {
    top: 20px;
    right: 18%;
    width: 24px;
    animation: technoParticleFloat 4s ease-in-out infinite;
}

.techno-stats-particle--circle {
    bottom: 24px;
    left: 14%;
    width: 27px;
    animation: technoParticleFloat 5s ease-in-out infinite 1s;
}

@keyframes technoParticleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(12deg);
    }
}

/* ===== Softek About Page — Stagger Card Image Variant ===== */

.techno-stagger-card__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 88, 60, 0.12), rgba(255, 113, 51, 0.06));
    transition: background 0.36s ease;
}

.techno-stagger-card__img img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.techno-stagger-card:hover .techno-stagger-card__img {
    background: linear-gradient(to right, #FF3834, #FF7133);
}

/* ===== Softek About Page — Team Card with Photo ===== */

.techno-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.techno-team-card:hover .techno-team-card__photo img {
    transform: scale(1.08);
}

/* ===== Softek About Page — Stagger Card Override ===== */

.techno-stagger-card {
    border-radius: 4px;
}

.techno-stagger-card__icon {
    background: linear-gradient(135deg, rgba(255, 88, 60, 0.12), rgba(255, 113, 51, 0.06));
    color: #ff583c;
    transition: background 0.36s ease, color 0.36s ease;
}

.techno-stagger-card:hover .techno-stagger-card__icon {
    background: linear-gradient(to right, #FF3834, #FF7133);
    color: #fff;
}

/* ===== Softek About Page — FAQ Accent ===== */

.techno-faq-item[open] {
    border-color: rgba(255, 88, 60, 0.25);
    box-shadow: 0 8px 28px rgba(255, 88, 60, 0.08);
}

.techno-faq-item[open] .techno-faq-item__question {
    color: #ff583c;
}

.techno-faq-item__question i {
    color: #ff583c;
}

/* ===== Softek About Page — Eyebrow Accent ===== */

.techno-section__heading--center .techno-eyebrow {
    color: #ff583c !important;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.techno-section__heading--center .techno-eyebrow::before {
    display: none !important;
}

/* ===== Responsive: Softek About Page ===== */

@media (max-width: 1100px) {
    .techno-about-intro__row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .techno-about-intro__visual {
        order: 2;
        justify-content: center;
    }

    .techno-about-intro__body {
        order: 1;
    }

    .techno-about-intro__bottom-visual {
        justify-content: center;
    }

    .techno-about-intro__bottom-visual img {
        max-width: 320px;
    }

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

@media (max-width: 720px) {
    .techno-inner-banner .techno-container {
        padding-top: 130px;
        padding-bottom: 16px;
    }

    .techno-inner-banner__title {
        font-size: clamp(32px, 8vw, 46px);
        line-height: 1.15;
    }

    .techno-inner-banner__breadcrumb {
        padding-bottom: 60px;
        font-size: 14px;
    }

    .techno-about-intro {
        padding-top: 60px;
    }

    .techno-about-intro__body h2 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.25;
    }

    .techno-about-intro__bottom-visual {
        justify-content: center;
    }

    .techno-about-intro__bottom-visual img {
        max-width: 260px;
    }

    .techno-about-history {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .techno-about-history__body h2 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.25;
    }

    .techno-stats-particle {
        display: none;
    }
}

/* ================================================================
   PORTFOLIO LIST
   ================================================================ */

.techno-section--portfolio {
    padding: 48px 0;
    background: var(--techno-bg);
}

.techno-portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.techno-portfolio-filter {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--techno-bg-soft);
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.techno-portfolio-filter:hover,
.techno-portfolio-filter--active {
    background: var(--techno-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(47, 91, 234, 0.2);
}

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

.techno-portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--techno-radius-md);
    background: #ffffff;
    box-shadow: var(--techno-shadow);
}

.techno-portfolio-card__image {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.techno-portfolio-card__image img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.techno-portfolio-card:hover .techno-portfolio-card__image img {
    transform: scale(1.06);
}

.techno-portfolio-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.78) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.techno-portfolio-card:hover .techno-portfolio-card__overlay {
    opacity: 1;
}

.techno-portfolio-card__category {
    display: inline-block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.techno-portfolio-card__overlay h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.techno-portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
}

/* ================================================================
   PORTFOLIO DETAIL
   ================================================================ */

.techno-section--portfolio-detail {
    padding: 48px 0;
    background: var(--techno-bg-soft);
}

.techno-portfolio-detail__hero {
    margin-bottom: 32px;
    border-radius: var(--techno-radius-md);
    overflow: hidden;
    box-shadow: var(--techno-shadow);
}

.techno-portfolio-detail__hero img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.techno-portfolio-detail__content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.techno-portfolio-detail__main {
    display: grid;
    gap: 24px;
}

.techno-portfolio-detail__intro {
    display: grid;
    gap: 12px;
}

.techno-portfolio-detail__intro h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--techno-text);
}

.techno-portfolio-detail__intro p {
    margin: 0;
    color: var(--techno-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.techno-portfolio-detail__sidebar {
    position: sticky;
    top: 88px;
}

.techno-portfolio-detail__meta-card {
    padding: 24px;
    border-radius: var(--techno-radius-md);
    background: #ffffff;
    box-shadow: var(--techno-shadow);
}

.techno-portfolio-detail__meta-card h3 {
    margin: 0 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--techno-text);
}

.techno-portfolio-detail__meta-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.techno-portfolio-detail__meta-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--techno-line);
}

.techno-portfolio-detail__meta-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.techno-portfolio-detail__meta-list li span {
    color: var(--techno-text-soft);
    font-size: 14px;
    font-weight: 600;
}

.techno-portfolio-detail__meta-list li strong {
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.techno-portfolio-detail__meta-list li strong a {
    color: var(--techno-primary);
    text-decoration: none;
}

.techno-portfolio-detail__share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--techno-line);
}

.techno-portfolio-detail__share>span {
    color: var(--techno-text);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.techno-portfolio-detail__share-links {
    display: flex;
    gap: 10px;
}

.techno-portfolio-detail__share-links a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(47, 91, 234, 0.08);
    color: var(--techno-primary);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.techno-portfolio-detail__share-links a:hover {
    background: var(--techno-primary);
    color: #ffffff;
}

.techno-portfolio-nav {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--techno-border);
}

.techno-portfolio-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.techno-portfolio-nav__item {
    border-radius: var(--techno-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.techno-portfolio-nav__item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.techno-portfolio-nav__item a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--techno-bg-soft);
    border-radius: var(--techno-radius-lg);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.techno-portfolio-nav__item a:hover {
    background: var(--techno-bg-soft-hover, var(--techno-bg-soft));
    transform: translateY(-2px);
}

.techno-portfolio-nav__item.portfolio-nav-next a {
    flex-direction: row-reverse;
    text-align: right;
}

.techno-portfolio-nav__img {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--techno-radius-md);
    overflow: hidden;
}

.techno-portfolio-nav__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.techno-portfolio-nav__item:hover .techno-portfolio-nav__img img {
    transform: scale(1.08);
}

.techno-portfolio-nav__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.techno-portfolio-nav__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--techno-text-soft);
}

.techno-portfolio-nav__title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--techno-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.techno-portfolio-nav__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--techno-bg-white, #fff);
    color: var(--techno-text);
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
    margin-left: auto;
}

.techno-portfolio-nav__item.portfolio-nav-next .techno-portfolio-nav__arrow {
    margin-left: 0;
    margin-right: auto;
}

.techno-portfolio-nav__item a:hover .techno-portfolio-nav__arrow {
    background: var(--techno-accent, #5b5bf3);
    color: #fff;
}

.techno-portfolio-nav__arrow i {
    transition: transform 0.3s ease;
}

.techno-portfolio-nav__item a:hover .techno-portfolio-nav__arrow i {
    transform: translateX(2px);
}

.techno-portfolio-nav__item.portfolio-nav-next a:hover .techno-portfolio-nav__arrow i {
    transform: translateX(-2px);
}

/* ================================================================
   PORTFOLIO RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
    .techno-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .techno-portfolio-detail__content {
        grid-template-columns: 1fr;
    }

    .techno-portfolio-detail__sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .techno-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .techno-portfolio-filters {
        gap: 8px;
    }

    .techno-portfolio-filter {
        min-height: 36px;
        padding: 0 14px;
        font-size: 13px;
    }

    .techno-portfolio-nav__links {
        grid-template-columns: 1fr;
    }

    .techno-portfolio-nav__item a {
        padding: 14px 16px;
    }

    .techno-portfolio-nav__img {
        width: 56px;
        height: 56px;
    }

    .techno-portfolio-detail__intro h2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .techno-portfolio-detail__hero img {
        aspect-ratio: 16 / 10;
    }
}