* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@keyframes tcFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tcFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -16px, 0);
    }
}

@keyframes tcHeroDrift {
    0%,
    100% {
        background-position: center top;
    }

    50% {
        background-position: center 10px;
    }
}

@keyframes tcPulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(24, 126, 255, 0);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 28px rgba(24, 126, 255, 0.34);
        transform: scale(1.04);
    }
}

@keyframes tcLineFlow {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 28px 0;
    }
}

body.home-page {
    margin: 0;
    background: #03070d;
    color: #0b1220;
    font-size: 16px;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

a {
    text-decoration: none;
}

.tc-home {
    overflow: hidden;
    background: #f7f9fd;
}

.tc-wrap {
    width: min(100% - 96px, 1320px);
    margin: 0 auto;
}

.tc-hero {
    position: relative;
    min-height: 770px;
    padding: 0 0 42px;
    background-color: #030509;
    background-image: url("/images/homepage/hero-banner-recreated.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    animation: tcHeroDrift 14s ease-in-out infinite;
}

.tc-hero .tc-wrap {
    position: relative;
    z-index: 1;
}

.tc-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 130px;
    align-items: center;
    gap: 28px;
    padding: 22px max(48px, calc((100vw - 1320px) / 2)) 15px;
    background: #030509;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.tc-logo img,
.tc-footer img {
    display: block;
    width: 200px;
}

.tc-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 33px;
}

.tc-menu-toggle,
.tc-menu-cta {
    display: none;
}

.tc-menu a {
    position: relative;
    padding: 10px 0 17px;
    color: #f7fbff;
    font-size: 15px;
    font-weight: 700;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.tc-menu a:hover {
    color: #2b9cff;
    transform: translateY(-2px);
}

.tc-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #e7f6ff;
}

.tc-btn,
.tc-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 48px;
    padding: 0 23px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        box-shadow 0.22s ease,
        transform 0.22s ease,
        border-color 0.22s ease;
}

.tc-btn:hover,
.tc-btn-outline:hover,
.tc-text-link:hover,
.tc-service-card a:hover {
    transform: translateY(-2px);
}

.tc-btn {
    background: linear-gradient(135deg, #3155ff 0%, #049dff 100%);
    box-shadow: 0 14px 30px rgba(21, 92, 255, 0.34);
}

.tc-btn:hover {
    box-shadow: 0 18px 40px rgba(21, 92, 255, 0.48);
}

.tc-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.tc-btn-outline:hover {
    border-color: rgba(39, 144, 255, 0.9);
}

.tc-btn-small {
    min-height: 40px;
    border-radius: 8px;
}

.tc-hero-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 42px;
    align-items: center;
    padding-top: 132px;
}

.tc-pill,
.tc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1687ff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.tc-pill {
    min-height: 22px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(18, 115, 208, 0.18);
    color: #45a7ff;
    text-transform: none;
    animation: tcFadeUp 0.7s ease both;
}

.tc-pill::before,
.tc-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #197dff;
}

.tc-hero-copy h1 {
    margin: 18px 0 0;
    font-size: 74px;
    line-height: 0.98;
    letter-spacing: 0;
    font-weight: 900;
    animation: tcFadeUp 0.8s ease both 0.08s;
}

.tc-hero-copy h1 strong {
    display: block;
    color: #168dff;
    font-weight: 900;
}

.tc-hero-copy p {
    width: 430px;
    margin: 23px 0 0;
    color: rgba(236, 242, 250, 0.86);
    font-size: 17px;
    line-height: 1.72;
    animation: tcFadeUp 0.8s ease both 0.18s;
}

.tc-hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 29px;
    animation: tcFadeUp 0.8s ease both 0.28s;
}

.tc-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 65px;
    animation: tcFadeUp 0.8s ease both 0.38s;
}

.tc-hero-stats div {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    align-items: center;
}

.tc-hero-stats i {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
}

.tc-hero-stats strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.tc-hero-stats span {
    color: rgba(235, 241, 249, 0.78);
    font-size: 13px;
    line-height: 1.1;
}

.tc-hero-visual {
    position: relative;
    min-height: 578px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-hero-art {
    display: block;
    width: min(118%, 960px);
    max-width: none;
    height: auto;
    margin-top: -29px;
    margin-left: -90px;
    opacity: 0;
    pointer-events: none;
}

.tc-brands {
    padding: 25px 0 29px;
    background: #fff;
}

.tc-brands p {
    margin: 0 0 19px;
    color: #7d8796;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.tc-brand-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

.tc-brand {
    display: grid;
    grid-template-columns: 28px auto;
    align-items: center;
    justify-content: start;
    gap: 9px;
    min-height: 42px;
    color: #424b5a;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.tc-brand:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.tc-brand img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tc-brand strong,
.tc-brand span {
    display: block;
}

.tc-brand strong {
    color: #414a58;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.tc-brand span {
    margin-top: 3px;
    color: #7b8493;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.tc-brand:nth-child(2) strong {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tc-brand:nth-child(5) strong {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tc-brand:nth-child(6) strong {
    letter-spacing: 0.01em;
}

.tc-services,
.tc-process,
.tc-impact,
.tc-blog {
    background: #f7f9fd;
}

.tc-services {
    padding: 45px 0 51px;
}

.tc-services-grid {
    display: grid;
    grid-template-columns: 284px repeat(4, 1fr);
    gap: 17px;
}

.tc-section-intro h2,
.tc-center-title h2,
.tc-blog-head h2,
.tc-cta h2 {
    margin: 12px 0 0;
    color: #070b12;
    font-size: 37px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.tc-section-intro p {
    margin: 21px 0 0;
    color: #4d5868;
    font-size: 16px;
    line-height: 1.7;
}

.tc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #006fff;
    font-size: 15px;
    font-weight: 800;
}

.tc-service-card,
.tc-project-card,
.tc-article,
.tc-testimonial {
    border-radius: 8px;
    background: #fff;
}

.tc-service-card {
    min-height: 244px;
    padding: 28px 27px 24px;
    box-shadow: 0 16px 45px rgba(29, 44, 77, 0.08);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.tc-service-card:hover,
.tc-article:hover,
.tc-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(24, 46, 86, 0.14);
}

.tc-service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-service-icon img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.tc-service-card h3 {
    margin: 25px 0 0;
    color: #111827;
    font-size: 20px;
    font-weight: 900;
}

.tc-service-card p {
    margin: 13px 0 0;
    color: #4c5562;
    font-size: 14px;
    line-height: 1.7;
}

.tc-service-card a {
    display: inline-flex;
    gap: 8px;
    margin-top: 22px;
    color: #0877ff;
    font-size: 14px;
    font-weight: 800;
}

.tc-work,
.tc-tech,
.tc-cta,
.tc-footer {
    background: #03070d;
    color: #fff;
}

.tc-work {
    padding: 40px 0 48px;
}

.tc-work-grid {
    display: grid;
    grid-template-columns: 276px repeat(3, 1fr);
    gap: 15px;
}

.tc-section-intro.dark h2,
.tc-section-intro.dark p {
    color: #fff;
}

.tc-project-card {
    position: relative;
    overflow: hidden;
    min-height: 343px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: #07101a;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.tc-project-card:hover {
    border-color: rgba(23, 132, 255, 0.75);
    box-shadow: 0 24px 70px rgba(0, 104, 255, 0.18);
    transform: translateY(-8px);
}

.tc-project-card img {
    display: block;
    width: 100%;
    height: 158px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tc-project-card:hover img,
.tc-article:hover img {
    transform: scale(1.04);
}

.tc-project-card div {
    padding: 17px 18px 18px;
}

.tc-project-card span,
.tc-article span {
    color: #0789ff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.tc-project-card h3,
.tc-article h3 {
    margin: 9px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.tc-project-card p {
    margin: 9px 0 0;
    color: rgba(242, 246, 252, 0.76);
    font-size: 14px;
    line-height: 1.55;
}

.tc-tags {
    display: flex;
    gap: 7px;
    padding: 0 !important;
    margin-top: 17px;
}

.tc-tags em {
    padding: 6px 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-style: normal;
}

.tc-project-card > a {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #136fff;
    font-weight: 900;
}

.tc-process {
    padding: 35px 0 43px;
}

.tc-center-title {
    text-align: center;
}

.tc-center-title span {
    color: #728093;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.tc-center-title h2 {
    margin-top: 6px;
    font-size: 32px;
}

.tc-center-title p {
    margin: 7px 0 0;
    color: #687487;
    font-size: 14px;
}

.tc-process-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.tc-process-row::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 7%;
    right: 7%;
    height: 2px;
    border: 0;
    background-image: linear-gradient(
        90deg,
        #258cff 0 45%,
        transparent 45% 100%
    );
    background-size: 28px 2px;
    opacity: 0.7;
    animation: tcLineFlow 1.2s linear infinite;
}

.tc-process-row article {
    position: relative;
    text-align: center;
}

.tc-process-row article > div {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 1px solid #b8d3ff;
    background: #fff;
    color: #177bff;
    font-size: 22px;
    animation: tcPulse 3s ease-in-out infinite;
    transition: transform 0.25s ease;
}

.tc-process-row article:hover > div {
    transform: translateY(-6px);
}

.tc-process-row span {
    color: #7a8494;
    font-size: 13px;
}

.tc-process-row h3 {
    margin: 6px 0 0;
    color: #09111e;
    font-size: 16px;
    font-weight: 900;
}

.tc-process-row p {
    max-width: 130px;
    margin: 8px auto 0;
    color: #586475;
    font-size: 14px;
    line-height: 1.35;
}

.tc-tech {
    padding: 35px 0;
}

.tc-tech-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: center;
}

.tc-tech .tc-section-intro h2 {
    color: #fff;
    font-size: 32px;
}

.tc-tech-list {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 9px;
}

.tc-tech-list div {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.05);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.tc-tech-list div:hover {
    border-color: rgba(30, 142, 255, 0.82);
    background: rgba(18, 107, 215, 0.16);
    transform: translateY(-8px);
}

.tc-tech-list img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.tc-tech-list span {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.tc-impact {
    padding: 42px 0 43px;
}

.tc-impact-grid {
    /* display: grid; */
    grid-template-columns: 1fr 540px;
    gap: 58px;
    align-items: start;
}

.tc-impact-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.tc-impact-row article {
    min-height: 85px;
    border-right: 1px solid #d8dee8;
}

.tc-impact-row strong {
    display: block;
    color: #020814;
    font-size: 44px;
    line-height: 1;
}

.tc-impact-row span {
    display: block;
    margin-top: 10px;
    max-width: 86px;
    color: #485467;
    font-size: 14px;
    line-height: 1.35;
}

.tc-testimonial {
    padding: 24px 30px;
    box-shadow: 0 18px 55px rgba(32, 49, 83, 0.08);
}

.tc-testimonial > div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 25px;
    align-items: center;
    margin-top: 18px;
}

.tc-testimonial img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
}

.tc-stars {
    color: #f9b620;
    letter-spacing: 3px;
    font-size: 15px;
}

.tc-testimonial p {
    margin: 9px 0 0;
    color: #3f4a5b;
    font-size: 15px;
    line-height: 1.55;
}

.tc-testimonial strong,
.tc-testimonial span {
    display: block;
}

.tc-testimonial strong {
    margin-top: 10px;
    color: #111827;
    font-size: 16px;
}

.tc-testimonial span {
    color: #647083;
    font-size: 14px;
}

.tc-blog {
    padding: 38px 0 50px;
    background: #eef3f9;
}

.tc-blog-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tc-blog-head h2 {
    font-size: 30px;
}

.tc-article-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.tc-article {
    overflow: hidden;
    border: 1px solid #dfe7f1;
    box-shadow: 0 18px 48px rgba(23, 39, 68, 0.13);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.tc-article img {
    display: block;
    width: 100%;
    height: 111px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tc-article div {
    padding: 17px 20px 20px;
}

.tc-article h3 {
    color: #101827;
    font-size: 20px;
    line-height: 1.22;
}

.tc-article p {
    margin: 15px 0 0;
    color: #677284;
    font-size: 14px;
}

.tc-cta {
    padding: 31px 0;
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(0, 106, 255, 0.4),
            transparent 22%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(0, 106, 255, 0.4),
            transparent 22%
        ),
        #03070d;
}

.tc-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.tc-cta h2 {
    color: #fff;
    font-size: 35px;
}

.tc-cta p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
}

.tc-cta-grid > div:last-child {
    display: flex;
    gap: 21px;
}

.tc-about-cta {
    padding: 0 0 31px;
    background: #f7f9fd;
}

.tc-about-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
    padding: 30px 47px;
    border-radius: 8px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(0, 106, 255, 0.4),
            transparent 23%
        ),
        #03070d;
    color: #fff;
    animation: tcFadeUp 0.72s ease both;
}

.tc-about-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 900;
}

.tc-about-cta p {
    margin: 11px 0 0;
    max-width: 575px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.5;
}

.tc-about-cta-grid > div:last-child {
    display: flex;
    gap: 20px;
}

.tc-footer {
    padding: 24px 0 19px;
}

.tc-footer-grid {
    display: grid;
    grid-template-columns: 285px repeat(4, 1fr);
    gap: 34px;
}

.tc-footer p,
.tc-footer a {
    color: rgba(236, 242, 250, 0.68);
    font-size: 14px;
    line-height: 1.6;
}

.tc-footer p {
    margin: 17px 0 0;
}

.tc-footer h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 15px;
}

.tc-footer nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.tc-footer nav a {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.tc-footer nav a i {
    width: 15px;
    padding-top: 4px;
    color: #168dff;
    text-align: center;
}

.tc-footer-address p {
    margin-top: 8px;
}

.tc-footer-address strong {
    color: rgba(255, 255, 255, 0.9);
}

.tc-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tc-socials a {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.tc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-footer-bottom p {
    margin: 0;
}

.tc-footer-bottom div {
    display: flex;
    gap: 24px;
}

@supports (animation-timeline: view()) {
    .tc-services-grid > *,
    .tc-work-grid > *,
    .tc-process-row article,
    .tc-tech-grid > * {
        animation: tcFadeUp linear both;
        animation-timeline: view();
        animation-range: entry 4% cover 24%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1180px) {
    .tc-wrap {
        width: min(100% - 40px, 1320px);
    }

    .tc-hero-grid,
    .tc-services-grid,
    .tc-work-grid,
    .tc-tech-grid,
    .tc-impact-grid,
    .tc-footer-grid,
    .tc-about-cta-grid {
        grid-template-columns: 1fr;
    }

    .tc-nav {
        grid-template-columns: 220px minmax(0, 1fr) 124px;
        gap: 20px;
        padding: 18px 20px 13px;
    }

    .tc-menu,
    .tc-brand-row,
    .tc-tech-list,
    .tc-process-row,
    .tc-article-row {
        grid-template-columns: repeat(2, 1fr);
        flex-wrap: wrap;
    }

    .tc-menu {
        justify-content: center;
        gap: 20px;
    }

    .tc-hero-visual {
        min-height: 520px;
    }

    .tc-hero-art {
        width: min(118vw, 920px);
        margin-left: 0;
    }

    .tc-services-grid,
    .tc-work-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tc-section-intro {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .tc-wrap {
        width: min(100% - 28px, 1320px);
    }

    .tc-nav {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        padding: 12px 14px 11px;
    }

    .tc-logo img {
        width: 158px;
    }

    .tc-logo {
        width: auto;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .tc-nav .tc-btn-small {
        display: none;
    }

    .tc-menu-toggle {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: 44px;
        height: 40px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        cursor: pointer;
        transition:
            background 0.22s ease,
            border-color 0.22s ease,
            box-shadow 0.22s ease;
    }

    .tc-menu-toggle span {
        width: 20px;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: currentColor;
        transition:
            transform 0.22s ease,
            opacity 0.22s ease;
    }

    .tc-menu-toggle:hover,
    .tc-nav.is-open .tc-menu-toggle {
        border-color: rgba(39, 144, 255, 0.9);
        background: rgba(20, 126, 255, 0.16);
        box-shadow: 0 14px 30px rgba(4, 66, 156, 0.2);
    }

    .tc-nav.is-open .tc-menu-toggle span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .tc-nav.is-open .tc-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .tc-nav.is-open .tc-menu-toggle span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .tc-menu {
        grid-column: 1 / -1;
        grid-row: 2;
        position: absolute;
        top: calc(100% + 10px);
        right: 14px;
        left: 14px;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        justify-content: stretch;
        justify-items: stretch;
        align-items: stretch;
        overflow: hidden;
        flex-wrap: nowrap;
        gap: 6px;
        max-height: 0;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 8px;
        background: rgba(3, 6, 12, 0.98);
        box-shadow: 0 24px 55px rgba(0, 0, 0, 0.36);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            max-height 0.28s ease,
            opacity 0.22s ease,
            transform 0.22s ease,
            padding 0.22s ease,
            border-color 0.22s ease;
    }

    .tc-nav.is-open .tc-menu {
        max-height: 420px;
        padding: 10px;
        border-color: rgba(255, 255, 255, 0.12);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .tc-menu a {
        width: 100%;
        min-height: 39px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 6px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent;
        color: rgba(247, 251, 255, 0.88);
        font-size: 14px;
        line-height: 1;
    }

    .tc-menu a.active,
    .tc-menu a:hover {
        background: transparent;
        color: #fff;
        transform: none;
    }

    .tc-menu a.active::after {
        display: none;
    }

    .tc-menu-cta {
        display: flex !important;
        justify-content: center !important;
        min-height: 44px !important;
        margin-top: 8px;
        padding: 0 18px !important;
        border: 0 !important;
        border-radius: 8px !important;
        background: linear-gradient(
            135deg,
            #3155ff 0%,
            #049dff 100%
        ) !important;
        color: #fff !important;
        font-weight: 900;
        box-shadow: 0 14px 30px rgba(21, 92, 255, 0.28);
    }

    .tc-hero {
        min-height: auto;
        padding-bottom: 38px;
        background-position: 63% top;
    }

    .tc-hero-grid {
        padding-top: 108px;
        gap: 12px;
    }

    .tc-hero-copy h1 {
        font-size: 43px;
        line-height: 1.03;
    }

    .tc-hero-copy p,
    .tc-hero-copy {
        width: 100%;
    }

    .tc-hero-actions,
    .tc-cta-grid > div:last-child,
    .tc-about-cta-grid > div:last-child,
    .tc-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .tc-about-cta-grid {
        padding: 26px 24px;
    }

    .tc-hero-stats,
    .tc-brand-row,
    .tc-services-grid,
    .tc-work-grid,
    .tc-process-row,
    .tc-tech-list,
    .tc-impact-row,
    .tc-article-row {
        grid-template-columns: 1fr;
    }

    .tc-impact-row article {
        border-right: 0;
        text-align: center;
    }

    .tc-impact-row span {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .tc-hero-visual {
        min-height: 260px;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
    }

    .tc-hero-art {
        width: min(138vw, 620px);
        margin: -8px 0 0 -58px;
    }
}

/* Technologies component (shared across pages) */
.tc-services-tech {
    padding: 58px 0 54px;
    background: #fff;
    text-align: center;
}

.tc-services-tech h2 {
    margin: 14px 0 0;
    color: #070b12;
    font-size: 36px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}

.tc-services-tech-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: center;
    text-align: left;
    animation: tcFadeUp 0.72s ease both;
}

.tc-services-tech-grid a {
    float: right;
}

.tc-services-tech-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.tc-services-tech-list article {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid #e2e8f2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 15px 34px rgba(35, 52, 82, 0.08);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
    animation: tcFadeUp 0.72s ease both;
}

.tc-services-tech-list article:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(35, 52, 82, 0.13);
}

.tc-services-tech-list img {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.tc-services-tech-list strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #075dff;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.tc-services-tech-list span {
    color: #172033;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .tc-services-tech-grid {
        grid-template-columns: 1fr;
    }

    .tc-services-tech-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .tc-services-tech {
        padding-top: 42px;
        padding-bottom: 40px;
    }

    .tc-services-tech h2 {
        font-size: 30px;
    }

    .tc-services-tech-list {
        grid-template-columns: 1fr;
    }
}
